-
Notifications
You must be signed in to change notification settings - Fork 284
Expand file tree
/
Copy pathCHANGELOG.txt
More file actions
5826 lines (4825 loc) · 188 KB
/
CHANGELOG.txt
File metadata and controls
5826 lines (4825 loc) · 188 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Changelog
=========
v2.5.33.1 (2026-03-03)
----------------------
Changes
~~~~~~~
- Bump version. [Raphaël Vinot]
Fix
~~~
- Bump pyfaup-rs, backward incompatible. [Raphaël Vinot]
v2.5.33 (2026-02-27)
--------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
Other
~~~~~
- Disable http warning only when no verifycert. [rdmmf]
- Fixed argument parameter. [rdmmf]
- Added examples for objects references and relationships. [rdmmf]
v2.5.32.3 (2026-02-16)
----------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Expose MISPObjectException. [Raphaël Vinot]
- Raise proper exception on invalid URL. [Raphaël Vinot]
Fix
~~~
- Expose DataURLObject. [Raphaël Vinot]
- Make sure we never have a \r at the endof a URL. [Raphaël Vinot]
v2.5.32.2 (2026-02-02)
----------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
Fix
~~~
- Incorrect typing for kwargs. [Raphaël Vinot]
- Make mypy happy. [Raphaël Vinot]
v2.5.32.1 (2026-02-02)
----------------------
New
~~~
- Add support for pdb path in PE object. [Raphaël Vinot]
Related https://github.com/MISP/misp-objects/commit/4d8e21d03dbdc315552915a9b2ff6b58a258297d
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump deps, version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- [tests] Checking that validation error messages are populated as
expected. [Christian Studer]
- Bump deps. [Raphaël Vinot]
Fix
~~~
- Avoid AVs to freak out. [Raphaël Vinot]
- [tools] Fixed regex for `pehash` attribute type validation. [Christian
Studer]
- Was still containing a delimiter as in PHP
- [tools] Delegating the potential loading error handling to PyMISP.
[Christian Studer]
- As PyMISP already handles properly the different
possible types of input given to `from_dict`, it
makes more sense here to test whether the type
we're expecting is NOT one of the PyMISP classes
- [tools] Making sure the `edited` flag is not modified during the
validation. [Christian Studer]
- As validation should not be a change per se, we
do not want the `edited` flag to be set when we
set the value field in attributes, or the
`Attribute` field in MISP objects
- This avoids `timestamp` fields to be skipped
when using `.to_json()`
- [tests] Making nosetests happy. [Christian Studer]
- [tests] Typings again... [Christian Studer]
- [tools] Avoiding validation to fail on `datetime` attributes being
already a datetime object. [Christian Studer]
- [tools] Making nosetests happy with typings... [Christian Studer]
- [tools] Avoiding typing warnings. [Christian Studer]
- [tools] Populating validation error messages to make them available
outside of the single cli scope. [Christian Studer]
- [tools] making codefactor happy by removing an `except .. pass`
[Christian Studer]
- [tools] Removed `;` that were copy pasted from php by mistake.
[Christian Studer]
- [tools] Trying to make nosetests happy (?) [Christian Studer]
- [tools] Fixed variable name. [Christian Studer]
- [tools] Fixed validation for `mac-addres`, `mac-eui-64` & `telfhash`
attributes. [Christian Studer]
- [tools] Making sure we multiply integer and not a string... [Christian
Studer]
- [tools] Fixed validation of some composite attributes. [Christian
Studer]
- Avoiding issues with wrong composite attribute
value format
- [tools] Fixed modification for non str values and filename|hash
attributes. [Christian Studer]
- Avoiding issues with non str values that don't
support some str built-in operations
- Avoiding issues with wrong filename|hash value
format
- [tools] Fixed modification for `domain` and validation for `AS` &
`filename|hash` attributes. [Christian Studer]
- Use is kwargs in constructors, improve typing. [Raphaël Vinot]
Fix #1375
Other
~~~~~
- Updated describeTypes to match MISP's latest version. [Andras Iklody]
- Add: [tests] Tests to check the latest methods added to validate
Attributes and Objects. [Christian Studer]
- Add: [tools] Added methods to validate attribute(s) or object(s)
individually. [Christian Studer]
- Add: [tests] Testing the Attribute validation tool. [Christian Studer]
- Add: [tools] Added method to validate Attributes and Object Attributes
in events. [Christian Studer]
- Takes dict or MISPEvent as input
- Prepares the attribute values for validation
- Validates the attribute values
- Returns the validated Event with only valid Attributes
- Logs warning messages with the skipped values
- Add: [tools] Added the refanging feature with the value modification
that happens before validation. [Christian Studer]
- Add: [tools] Validating `uuid` attribute type. [Christian Studer]
- Add: [tools] Attribute value valdation tool. [Christian Studer]
- Behaves like the built-in validation with
`modifyBeforeValidation` and `validate`
- Will include also the tooling to use this
validation on PyMISP objects or JSON format to
validate data that is not coming from MISP
v2.5.32 (2026-01-14)
--------------------
New
~~~
- Add missing workers endpoints. [Raphaël Vinot]
Fix #1372
- Add logo. [Raphaël Vinot]
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump deps, version. [Raphaël Vinot]
- Bump doc. [Raphaël Vinot]
- Remove outdated dep. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- [poetry] Bumped latest lock file with minimum python version >= 3.10.
[Christian Studer]
- Bump changelog, one last time. [Raphaël Vinot]
- Setting new minimum python version to 3.10. [Christian Studer]
Fix
~~~
- Revert bump to sphinx 9. [Raphaël Vinot]
- [actions] Changed python versions to align with the currently
supported ones. [Christian Studer]
Other
~~~~~
- Chg; Bump deps. [Raphaël Vinot]
v2.5.17.3 (2025-11-25)
----------------------
New
~~~
- Improve doc for CSV loader. [Raphaël Vinot]
Changes
~~~~~~~
- Bump changelog, again. [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Use pure-magic-rs. [Raphaël Vinot]
- [describeTypes] updated to the latest version. [Alexandre Dulaunoy]
- Bump deps. [Raphaël Vinot]
- Bump deps, really. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Quick cleanup. [Raphaël Vinot]
- Optionally use faup-rs for URL parsing. [Raphaël Vinot]
Fix
~~~
- Call order & typo in magic call. [Raphaël Vinot]
- [tools:emailobject] Gracefully handle case where getStringStream
cannot find the requested stream. [Sami Mokaddem]
- [tools-emailobject] Circuvent crashes when dealing with ms-tnef
messages. [Sami Mokaddem]
- Properly use pyfaup-rs. [Raphaël Vinot]
Other
~~~~~
- Build(deps): bump actions/checkout from 5 to 6. [dependabot[bot]]
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
...
- Build(deps): bump github/codeql-action from 3 to 4. [dependabot[bot]]
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3 to 4.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/v3...v4)
---
updated-dependencies:
- dependency-name: github/codeql-action
dependency-version: '4'
dependency-type: direct:production
update-type: version-update:semver-major
...
v2.5.17.2 (2025-09-24)
----------------------
Changes
~~~~~~~
- Bump deps, objects. [Raphaël Vinot]
v2.5.17.1 (2025-09-15)
----------------------
Changes
~~~~~~~
- Bump version. [Raphaël Vinot]
- Bump lief, fix code to support new release. [Raphaël Vinot]
Fix #1352
- Bump deps. [Raphaël Vinot]
Fix
~~~
- Properly support lief 0.17. [Raphaël Vinot]
Other
~~~~~
- Build(deps): bump actions/setup-python from 5 to 6. [dependabot[bot]]
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 6.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v5...v6)
---
updated-dependencies:
- dependency-name: actions/setup-python
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
...
- Build(deps): bump actions/checkout from 4 to 5. [dependabot[bot]]
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v5)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '5'
dependency-type: direct:production
update-type: version-update:semver-major
...
v2.5.17 (2025-08-04)
--------------------
Changes
~~~~~~~
- Bump deps, version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Expose missing exception. [Raphaël Vinot]
- Add missing optional value in MISPAttribute. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
Fix
~~~
- Exception when a first/last seen is invalid. [Raphaël Vinot]
Fix #1330
Other
~~~~~
- Revert "chg: Add missing optional value in MISPAttribute" [Raphaël
Vinot]
This reverts commit 0e241b481c74246765f877d665e0064bb5cac99f.
v2.5.12 (2025-05-13)
--------------------
Changes
~~~~~~~
- Bump version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
Fix
~~~
- Incorrect calls in to_feed. [Raphaël Vinot]
Other
~~~~~
- Chg; Bump changelog. [Raphaël Vinot]
- Replace deprecated ExpandedPyMISP with PyMISP. [Jure Sah]
v2.5.10 (2025-04-04)
--------------------
Changes
~~~~~~~
- Bump deps, templates. [Raphaël Vinot]
Fix
~~~
- Missing attribute in object should not be a warning (way too noisy)
[Raphaël Vinot]
v2.5.9 (2025-03-26)
-------------------
Changes
~~~~~~~
- Bump version, changelog. [Raphaël Vinot]
- Make mypy happy. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
Fix
~~~
- [emailobject] Improve parsing of the Received headers. [Sami Tainio]
- Rewrite of the section that deals with the logic handling the Received headers
- Previous version was not picking picking up e.g. Reverse DNS hostnames at all and some of the IPs were not ever handled
- [emailobject] Improve parsing of the Received headers. [Sami Tainio]
- Rewrite of the section that deals with the logic handling the Received headers
- Previous version was not picking picking up e.g. Reverse DNS hostnames at all and some of the IPs were not ever handled
Other
~~~~~
- [chg] Satisfy tests. [Sami Tainio]
- Improve the logging message. [Peter Leitmann]
- Add a check if add_attributes() method truly has values to add. [Peter
Leitmann]
- [chg] Satisfy tests. [Sami Tainio]
v2.5.8.1 (2025-03-18)
---------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
- Bump objects, version. [Raphaël Vinot]
Fix
~~~
- Typo in objects. [Raphaël Vinot]
v2.5.8 (2025-03-18)
-------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump deps, version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
Fix
~~~
- Remove top level files from wheel. [Raphaël Vinot]
As per doc
(https://python-poetry.org/docs/pyproject#exclude-and-include), we
cannot have them in the wheel.
Fix #1319
v2.5.7.1 (2025-02-22)
---------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Remove tests from wheel. [Raphaël Vinot]
- Make mypy happy. [Raphaël Vinot]
- Bump objects. [Raphaël Vinot]
- Move email MSG to PW protected archive to fool bumb AVs. [Raphaël
Vinot]
v2.5.7 (2025-02-20)
-------------------
New
~~~
- Enrich event/attribute endpoints. [Raphaël Vinot]
Related #1318
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump objects. [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
- Bump deps, version. [Raphaël Vinot]
- Update readme. [Raphaël Vinot]
- Bump deps, use poetry 2.0. [Raphaël Vinot]
Fix
~~~
- Allow MD in docs. [Raphaël Vinot]
- Remove ref to recommonmark. [Raphaël Vinot]
- [AnalystData] Added missing properties for Notes and Opinions.
[Christian Studer]
- This is now needed because MISPNote and MISPOpinion
are no longer part of AnalystDataBehaviorMixin and
cannot then get them from there
- [api] Notes, Opinions and Relationships are no longer
AnalystDataBehaviorMixin. [Christian Studer]
v2.5.4 (2024-12-20)
-------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Update objects templates. [Raphaël Vinot]
- Make python 3.9 happy. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- [AnalystData] Flattening analyst data based on the recent changes on
MISP standard format. [Christian Studer]
- Adding a note or an opinion will always add the
new analyst data object to the list of notes or
opinions at the parent data layer level
- `from_dict` on a JSON blob is also able to parse
properly analyst data and generate flat lists
regardless of whether the given data described
in the new flat or previously nested format
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
Fix
~~~
- [tests] Removed typing. [Christian Studer]
- [MISPAnalystData] Added missing typing. [Christian Studer]
- [MISPAnalystData] Reverted the declaration of Analyst data objects
lists back to the mixin parent class. [Christian Studer]
- [MISPAnalystData] Better handling of the different use cases.
[Christian Studer]
- Additional checks for parent to support both
the standalone and attached analyst data objects
- Standalone Analyst data objects with nested
notes or opinions are defined with the nesting
as they have no parent. When they are added to
a parent data layer, the nested objects are then
flattened
- [AnalystData] Typo... [Christian Studer]
- [AnalystData] Avoiding issues with analyst data objects. [Christian
Studer]
Other
~~~~~
- Chg; Bump version. [Raphaël Vinot]
- Revert "fix: [tests] Removed typing" [Christian Studer]
This reverts commit a7cf9dc3f03ffda5ee6c1b614792455fe43d8704.
- Add: [tests] Testing Analyst Data in different scenarios. [Christian
Studer]
- Testing different ways to attach analyst data
- Testing that no matter what object type the
analyst data is attached to, the `object_type`
& `object_uuid` are correct, and the parent
container does contain every analyst data object
in flat lists with no nesting
v2.5.3 (2024-12-16)
-------------------
New
~~~
- Create a sign_blob method to sign events. [Raphaël Vinot]
- [support for signing] added. [iglocska]
- added new class CryptographicKeys
- added functions to to_feed calls to include crypto keys
- added protected boolean field to misp event
- updated feed generator to support signing
- if the new setting is set to True signing will be attempted for protected events
- protected events are now passed to the /cryptographic_keys/serverSign endpoint of misp for signing
- signatures are included as a .asc file in the output directory
- TODO:
- currently the JSON dumping is moved from a streamed dumping to an in memory dump before saving to disk
- add a check for protected events and revert to streamed dumping for non protected events
- alternatively use the already saved files to request signing from MISP
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump release. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
v2.4.199 (2024-11-26)
---------------------
New
~~~
- Publish to PyPi on release. [Raphaël Vinot]
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Skip PyMISP version check. [Raphaël Vinot]
- Bump deps, version. [Raphaël Vinot]
- Bump deps, version. [Raphaël Vinot]
- Bump version, deps, templates. [Raphaël Vinot]
- Bump version, test for GH action release. [Raphaël Vinot]
- Drop python 3.8, add python 3.13. [Raphaël Vinot]
- Bump templates. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Remove fonts from submodules, on-demand download if needed. [Raphaël
Vinot]
Fix
~~~
- Avoid exception on dev releases. [Raphaël Vinot]
- Template versions in tests. [Raphaël Vinot]
- [AnalystData] A quick and simple typing fix. [Christian Studer]
Other
~~~~~
- Build(deps): bump codecov/codecov-action from 4 to 5.
[dependabot[bot]]
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4 to 5.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/codecov/codecov-action/compare/v4...v5)
---
updated-dependencies:
- dependency-name: codecov/codecov-action
dependency-type: direct:production
update-type: version-update:semver-major
...
- Update pytest.yml for python 3.13. [Raphaël Vinot]
v2.5.1 (2024-10-17)
-------------------
New
~~~
- Onion-address type. [Raphaël Vinot]
Changes
~~~~~~~
- Re-bump changelog. [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
- Bump objects. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
Fix
~~~
- Skip trying to install doc in python 3.9. [Raphaël Vinot]
v2.5.0 (2024-10-04)
-------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- [tests] misp_instance_version_master now uses the 2.5 branch.
[iglocska]
Fix
~~~
- Make mypy happy. [Raphaël Vinot]
v2.4.198 (2024-09-13)
---------------------
Changes
~~~~~~~
- Re-Bump changelog. [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
- Bump deps, version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Only include the changelog in the sdist package. [Raphaël Vinot]
Related #1295
- [data] describeTypes.json updated. [Alexandre Dulaunoy]
Other
~~~~~
- Openioc.py is not a script, but had exec bit. [Sebastian Wagner]
the file openioc can only be used as module and as part of a package,
has no instructions for direct execution and is therefor not a script
for direct execution
this removes the executable bit from the file
v2.4.197 (2024-09-02)
---------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump deps, version, templates. [Raphaël Vinot]
- [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
Fix
~~~
- Avoid printing huge log when a request fails. [Raphaël Vinot]
fix #1286
v2.4.196 (2024-08-21)
---------------------
New
~~~
- Add pre-commit file. [Raphaël Vinot]
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
Fix
~~~
- Remove broken config. [Raphaël Vinot]
v2.4.195 (2024-07-27)
---------------------
New
~~~
- Add delete role, test suite for roles. [Raphaël Vinot]
- Test publish & search. [Raphaël Vinot]
- Add delete role, test suite for roles. [Raphaël Vinot]
- Test publish & search. [Raphaël Vinot]
Changes
~~~~~~~
- Bump Changelog. [Raphaël Vinot]
- Bump objects. [Raphaël Vinot]
- Bump Changelog (issue with template) [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- [publish tests] further debugging. [iglocska]
- [publish test] check if the publishing actually worked as intended.
[iglocska]
- [tests] speculative fix for the published search. [iglocska]
- locally it seems to work as intended, curious what is going on here
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- [publish tests] further debugging. [iglocska]
- [publish test] check if the publishing actually worked as intended.
[iglocska]
- [tests] speculative fix for the published search. [iglocska]
- locally it seems to work as intended, curious what is going on here
- Bump deps. [Raphaël Vinot]
Fix
~~~
- Bump objects (invalid template) [Raphaël Vinot]
- Do not let a user pass a full dict as tagname. [Raphaël Vinot]
- [publish tests] fixed invalid setting name for disabling background
processing. [iglocska]
- [publish test] invalid path for the publishing outcome in the
response. [iglocska]
- [publish test] fixed. [iglocska]
- was incorrect as it triggered a background processed publishing, which can take time
- Do not let a user pass a full dict as tagname. [Raphaël Vinot]
- Do not let a user pass a full dict as tagname. [Raphaël Vinot]
- [publish tests] fixed invalid setting name for disabling background
processing. [iglocska]
- [publish test] invalid path for the publishing outcome in the
response. [iglocska]
- [publish test] fixed. [iglocska]
- was incorrect as it triggered a background processed publishing, which can take time
Other
~~~~~
- Re-naming variables to make tests happy. [Tobias Mainka]
- Added support to add or update a MISP role. [Tobias Mainka]
- Update tests. [Raphaël Vinot]
- Build(deps): bump certifi from 2024.6.2 to 2024.7.4. [dependabot[bot]]
Bumps [certifi](https://github.com/certifi/python-certifi) from 2024.6.2 to 2024.7.4.
- [Commits](https://github.com/certifi/python-certifi/compare/2024.06.02...2024.07.04)
---
updated-dependencies:
- dependency-name: certifi
dependency-type: indirect
...
- MANIFEST.in does not seem to have an effect any longer. [Ulrik Haugen]
- Include docs, examples and tests in sdist. [Ulrik Haugen]
- Re-naming variables to make tests happy. [Tobias Mainka]
- Added support to add or update a MISP role. [Tobias Mainka]
- Update tests. [Raphaël Vinot]
- Build(deps): bump certifi from 2024.6.2 to 2024.7.4. [dependabot[bot]]
Bumps [certifi](https://github.com/certifi/python-certifi) from 2024.6.2 to 2024.7.4.
- [Commits](https://github.com/certifi/python-certifi/compare/2024.06.02...2024.07.04)
---
updated-dependencies:
- dependency-name: certifi
dependency-type: indirect
...
- Feat: Adds methods to get attribute by id/uuid. [Sura De Silva]
v2.4.194 (2024-06-21)
---------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
Fix
~~~
- Make a response in the tests a MISPUser obj. [Raphaël Vinot]
- Tests failing du to missing error. [Raphaël Vinot]
v2.4.193 (2024-06-06)
---------------------
New
~~~
- [analyst-data] Added initial support of analyst data concept and
functions - WiP. [Sami Mokaddem]
Changes
~~~~~~~
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- A bit more refactoring. [Raphaël Vinot]
- Use from_dict in the mixin to initialize the objects. [Raphaël Vinot]
- [analyst-data] Added improvements, API endpoints and tests. [Sami
Mokaddem]
- [analyst-data] Make sure to include note_type_name. [Sami Mokaddem]
- Make mypy happy, change inheritance. [Raphaël Vinot]
- Allow orgc context for search_galaxy_clusters. [Jeroen Pinoy]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- [analyst-data] Continued implementation of analyst-data support. [Sami
Mokaddem]
- Allow orgc context for search_galaxy_clusters. [Jeroen Pinoy]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
Fix
~~~
- Get the tests to pass. [Raphaël Vinot]
- Properly load AnalystData from dict. [Raphaël Vinot]
- More changes to get the tests to pass. [Raphaël Vinot]
- [event-report] Make sure to generate an UUID. [Sami Mokaddem]
- Pass kwargs to abstract. [Raphaël Vinot]
Other
~~~~~
- Chg; Bump changelog. [Raphaël Vinot]
- Chg; Bump version. [Raphaël Vinot]
- Add test case. [Vincenzo]
- Add attach galaxy cluster method. [Vincenzo]
v2.4.190 (2024-04-18)
---------------------
Changes
~~~~~~~
- Bump object templates. [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
- Bump version, deps. [Raphaël Vinot]
- Bump deps, require python 3.9+ for doc. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- [data] describeTypes file updated. [Alexandre Dulaunoy]
- Bump deps. [Raphaël Vinot]
Fix
~~~
- [internal] Correct way to convert bytes to string if orjson exists.
[Jakub Onderka]
v2.4.188 (2024-03-22)
---------------------
New
~~~
- Support X-MISP-AUTH Header. [Raphaël Vinot]
Also, improve HTTP headers init
Fix #1179
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
- Bump version, templates. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
Fix
~~~
- Strip API key before setting it. [Raphaël Vinot]
- Python 3.8 support & typing. [Raphaël Vinot]
- Typing for Python < 3.10. [Raphaël Vinot]
- Avoid issue when payload ist a list. [Raphaël Vinot]
v2.4.187 (2024-03-07)
---------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump templates, version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump extract-msg. [Raphaël Vinot]
v2.4.186 (2024-02-27)
---------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump objects. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
Fix
~~~
- Correct FileObject import. [Johannes Bader]
The FileObject import has been moved outside the try-except-block
related to lief, as the import is needed regardless whether lief
is available or not.
- Disable WL when calling the disable method, not toggle. [Raphaël
Vinot]
Fix #1159
Other
~~~~~
- Build(deps): bump urllib3 from 2.2.0 to 2.2.1. [dependabot[bot]]
Bumps [urllib3](https://github.com/urllib3/urllib3) from 2.2.0 to 2.2.1.
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](https://github.com/urllib3/urllib3/compare/2.2.0...2.2.1)
---
updated-dependencies:
- dependency-name: urllib3
dependency-type: direct:production
update-type: version-update:semver-patch
...
v2.4.185 (2024-02-16)
---------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump deps, version. [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Add changelog. [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
- Re-add ExpandedPyMISP, with a warning. [Raphaël Vinot]
Fix
~~~
- Properly get body from message, without headers. [Raphaël Vinot]
- Remove from __all__ entries that shouldn't be there. [Raphaël Vinot]
- Do not throw a warning every time one import pymisp... [Raphaël Vinot]
Other
~~~~~
- Build(deps-dev): bump jupyter-lsp from 2.2.1 to 2.2.2.
[dependabot[bot]]
Bumps [jupyter-lsp](https://github.com/jupyter-lsp/jupyterlab-lsp) from 2.2.1 to 2.2.2.
- [Release notes](https://github.com/jupyter-lsp/jupyterlab-lsp/releases)
- [Changelog](https://github.com/jupyter-lsp/jupyterlab-lsp/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jupyter-lsp/jupyterlab-lsp/commits)
---
updated-dependencies:
- dependency-name: jupyter-lsp
dependency-type: indirect
...
- Build(deps): bump codecov/codecov-action from 3 to 4.
[dependabot[bot]]
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 4.
- [Release notes](https://github.com/codecov/codecov-action/releases)