-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCHANGES
More file actions
3000 lines (1677 loc) · 98.7 KB
/
Copy pathCHANGES
File metadata and controls
3000 lines (1677 loc) · 98.7 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
2.8.0-dev.329 | 2026-07-21 08:44:34 -0700
* Add GitHub CI setup based on the Cirrus configuration (Tim Wojtulewicz, Corelight)
Co-Authored-By: Claude <noreply@anthropic.com>
* internal/json: Do not throw on invalid addresses (Arne Welzel, Corelight)
A WebSocket client sending `{"@data-type": "address", "data": "123ns"}` can
trigger a runtime_error, resulting in process termination.
* Bump CAF for OpenBSD SIGPIPE fix (Dominik Charousset, Corelight)
* Make broker-node rate calculation more accurate (Dominik Charousset, Corelight)
Decouple the message processing from the rate calculation by pushing the
latter to a separate thread. By performing the rate calculation
separately, we get more accurate results and also keep the code more
structured.
* In Python bindings docs, tweak wording regarding alternatives. (Christian Kreibich, Corelight)
* Remove support for WebSocket clients (Dominik Charousset, Corelight)
* doc/web-socket: Add us entry to timespan (Arne Welzel, Corelight)
2.8.0-dev.316 | 2026-05-07 16:57:57 -0700
* CI: drop FreeBSD 13, add FreeBSD 15 (Christian Kreibich, Corelight)
* CI: add macOS Tahoe (Christian Kreibich, Corelight)
* CI: drop Ubuntu 24.10, add 26.04, drop 22.04 (Christian Kreibich, Corelight)
Also reorder Debian jobs for consistency, no other change.
* CI: drop CentOS Stream 9, add CentOS Stream 10 (Christian Kreibich, Corelight)
* CI: drop openSUSE Leap 15.6, move to 16.0 (Christian Kreibich, Corelight)
* CI: Drop Fedora 41/42, add 43/44 (Christian Kreibich, Corelight)
* Updating submodule(s) [nomail] (Tim Wojtulewicz, Corelight)
* Updating submodule(s) [nomail] (Tim Wojtulewicz, Corelight)
2.8.0-dev.307 | 2026-04-01 15:40:43 -0700
* Bump cmake submodule to disable c2y warnings (Tim Wojtulewicz, Corelight)
2.8.0-dev.305 | 2026-02-01 09:06:20 +0100
* Suppress false positives in clang-tidy (Dominik Charousset, Corelight)
* Replace Debian 11 with Debian 13 on CI (Dominik Charousset, Corelight)
* Fix clang-tidy findings and re-enable on CI (Dominik Charousset, Corelight)
2.8.0-dev.301 | 2026-01-21 09:02:48 +0100
* Use C++20 iterator concepts in our format headers (Dominik Charousset, Corelight)
2.8.0-dev.299 | 2026-01-21 07:31:09 +0100
* Apply some clang-tidy-19 suggestions (Dominik Charousset, Corelight)
2.8.0-dev.297 | 2026-01-21 06:53:35 +0100
* Remove stale and obsolete file (Dominik Charousset, Corelight)
2.8.0-dev.294 | 2025-12-08 17:53:07 +0100
* Use ranges versions of all_of, any_of, etc. (Dominik Charousset, Corelight)
2.8.0-dev.292 | 2025-12-08 17:40:58 +0100
* Fix btests on newer Python releases (Dominik Charousset, Corelight)
* Bump FreeBSD cirrus images (Dominik Charousset, Corelight)
2.8.0-dev.288 | 2025-12-01 08:25:13 +0100
* Prefer `polymorphic_allocator` over a custom class (Dominik Charousset, Corelight)
* Get rid of `monotonic_buffer_resource` (Dominik Charousset, Corelight)
Seems like the STL version is now widely available. Hence, we no longer
need our own backport version.
2.8.0-dev.285 | 2025-09-15 09:00:44 -0700
* Replace SFINAE traits with concepts (Dominik Charousset, Corelight)
2.8.0-dev.283 | 2025-09-15 08:59:40 -0700
* Commit sqlite3 files separate from zeek-3rdparty submodule (Tim Wojtulewicz, Corelight)
* Remove zeek-3rdparty submodule (Tim Wojtulewicz, Corelight)
2.8.0-dev.280 | 2025-07-25 17:46:37 +0200
* Remove dead code (Dominik Charousset, Corelight)
2.8.0-dev.278 | 2025-07-25 17:45:59 +0200
* Remove stale files from the repository (Dominik Charousset, Corelight)
These files have been excluded from CMake for a couple years now. Making
the code compile again is not trivial and would require restructuring
anyways. We can always rely on Git if we want to have the old
implementation as a reference point, so no reason to have dead code
rotting in the source tree.
2.8.0-dev.276 | 2025-07-25 17:45:20 +0200
* Remove obsolete macro utilities (Dominik Charousset, Corelight)
BROKER_TRY is no longer used in Broker. Neither are the macro utilities
that it relies on.
* Fix build on Clang 20 (Dominik Charousset, Corelight)
2.8.0-dev.273 | 2025-07-23 16:51:19 +0200
* Remove building with -flto from python bindings (Tim Wojtulewicz, Corelight)
2.8.0-dev.271 | 2025-07-21 15:47:49 -0700
* Use the new WebSocket frame API (Dominik Charousset, Corelight)
CAF 1.0 emits WebSocket frame objects when using the WebSocket API. This
step prepares Broker for the migration.
2.8.0-dev.269 | 2025-07-21 15:34:34 -0700
* Fix various clang-tidy findings in C++20 mode (Dominik Charousset, Corelight)
Major changes:
- replace `enable_if` with `requires` clauses
- use designated initializer list for aggregate types
- use `starts_with` instead of `compare` on string views
- use new `std::cmp_*` functions when comparing different integer types
Furthermore, disable the modernize check for range-based iterators. We
may want to re-visit that at some point but the suggested clang-tidy
fixes result in broken code. We also disable the exception escape
warnings for now. Some complaints from this change are legit but there
are also weird cases where we pass callbacks as lambda expressions and
clang-tidy insists that they should be `noexcept` for no apparent
reason. We might want to re-visit that check eventually as well.
Minor tweaks for silencing clang-tidy complaints:
- fixed unchecked optional access in `clone_actor.cc`
- use `remove_if` in `clone_actor.cc` since clang-tidy complains that
sorting pointers is nondeterministic when using `partition`, which it
is right to point out but we don't care in this use case
- fix switch statement with identical branches in `flare_actor.cc`
- fix 'dead store' in `sqlite_backend.cc` when compiling with
`BROKER_ASSERT` disabled
- avoid `std::endl` with `std::cout` (use '\n' instead)
- change some parameters from value to const reference
2.8.0-dev.267 | 2025-07-21 19:39:59 +0200
* variant: Allow reference access to shared_envelope (Arne Welzel, Corelight)
@bbannier pointed out that `shared_envelope()` always increments the
atomic ref count due to auto declaration. Switch the API to const auto& to
allow access without incrementing the ref count.
2.8.0-dev.265 | 2025-07-12 14:14:51 +0200
* Read timestamps as UTC by default (Dominik Charousset, Corelight)
2.8.0-dev.263 | 2025-07-10 14:06:17 -0700
* Use <version> header instead of deprecated <ciso646> (Tim Wojtulewicz, Corelight)
* Add flag to disable building extra tools (Tim Wojtulewicz, Corelight)
The extra tools cause linker errors on the Windows CI builds by causing
the build processes to run out of memory. They're not necessary for the
few tests we run for Windows there, so disable them for CI builds.
* CI: Make Windows environment consistent with how Zeek does it (Tim Wojtulewicz, Corelight)
* Require C++20 for builds (Tim Wojtulewicz, Corelight)
2.8.0-dev.258 | 2025-06-30 10:18:01 -0700
* Fix CAF-side warnings in C++20 mode (Dominik Charousset, Corelight)
2.8.0-dev.256 | 2025-06-25 10:29:42 -0700
* Fix build on Fedora 42 with C++20 enabled (Dominik Charousset, Corelight)
* Fix build issue in C++20 mode (Dominik Charousset, Corelight)
(cherry picked from commit 67f7e7da7457a08d3fe0658959da826039c2d0e3)
2.8.0-dev.253 | 2025-06-25 10:29:24 -0700
* Make some lambda captures more concise in what they're capturing (Tim Wojtulewicz, Corelight)
This fixes some warnings in C++ 20 builds as well. Lambda captures
using just [=] are deprecated in that version.
2.8.0-dev.251 | 2025-06-25 16:27:01 +0200
* Emit chunks from peer connections (Dominik Charousset, Corelight)
CAF 1.0 emit chunks when running a length-prefix framing protocol. This
step prepares Broker for the migration.
2.8.0-dev.249 | 2025-06-24 10:30:01 -0700
* Update baseline for WebSocket test (Dominik Charousset, Corelight)
* Integrate CAF patch for WS unicode escaping (Dominik Charousset, Corelight)
2.8.0-dev.246 | 2025-06-24 10:22:13 -0700
* Remove GCC 8 workaround for std::less (Tim Wojtulewicz, Corelight)
2.8.0-dev.244 | 2025-06-24 10:21:46 -0700
* Add pre-commit for cmake-format, using Zeek config (Tim Wojtulewicz, Corelight)
2.8.0-dev.242 | 2025-05-30 07:20:17 -0700
* Update pybind11 to v2.13.6 (Tim Wojtulewicz, Corelight)
* CI: Drop Fedora 40, add Fedora 42 (Arne Welzel, Corelight)
2.8.0-dev.238 | 2025-05-06 15:44:15 +0200
* Remove stale CI files (Dominik Charousset, Corelight)
2.8.0-dev.234 | 2025-04-23 08:29:32 -0700
* CI: No more Ubuntu 20.04 [skip ci] (Arne Welzel, Corelight)
2.8.0-dev.232 | 2025-04-23 14:25:31 +0200
* Add a NEWS entry for hub (Arne Welzel, Corelight)
* Fix documentation wording (Dominik Charousset, Corelight)
* Add cleanup code for removing obsolete hub state (Dominik Charousset, Corelight)
* Simplify filter logic for hubs in the core actor (Dominik Charousset, Corelight)
* Add missing wait() statement in the subscribers (Dominik Charousset, Corelight)
* Remove force-closing hubs on shutdown (Dominik Charousset, Corelight)
* Allow subscribers to receive messages from hubs (Dominik Charousset, Corelight)
* Fix memory leak when using hubs (Dominik Charousset, Corelight)
* Fix shutdown delay with the new hubs (Dominik Charousset, Corelight)
* Integrate review feedback (Dominik Charousset, Corelight)
* Drop obsolete type alias (Dominik Charousset, Corelight)
* Allow publishing `data_message` directly on a hub (Dominik Charousset, Corelight)
* Re-implement publishers and subscribers using hubs (Dominik Charousset, Corelight)
* Implement new hub API (new pub/sub primitive) (Dominik Charousset, Corelight)
2.8.0-dev.217 | 2025-04-22 11:37:52 -0700
* Add new store::proxy::valid function (Dominik Charousset, Corelight)
2.8.0-dev.215 | 2025-04-21 16:57:03 -0700
* Extend the event observer for client connections/buffering (Christian Kreibich, Corelight)
* Extend the event observer for peering/buffering (Dominik Charousset, Corelight)
* Remove obsolete metric for buffered messages (Dominik Charousset, Corelight)
Since we have started using the backpressure operator, the buffered metric
("broker_buffered_messages") will always display 0 as buffering takes places
elsewhere and is per-peering.
2.8.0-dev.211 | 2025-04-19 16:33:45 +0200
* Remove obsolete CMake/configure options (Dominik Charousset, Corelight)
2.8.0-dev.209 | 2025-04-18 12:34:40 -0700
* Suppress warnings from CAF on GCC and Clang (Dominik Charousset, Corelight)
* Promote some info log events to warnings (Dominik Charousset, Corelight)
* Fix leftover legacy log statements (Dominik Charousset, Corelight)
* Fix string conversion for internal_command (Dominik Charousset)
* Avoid throwing exceptions on format string errors (Dominik Charousset)
* Minor fixes for the new logger plus filter option (Dominik Charousset, Corelight)
* Merge internal into public logger.hh, add verbose (Dominik Charousset, Corelight)
* Port remaining log statements, remove log macros (Dominik Charousset, Corelight)
* Port logging in the store obj to the new API (Dominik Charousset, Corelight)
* Port more store logging to the new API (Dominik Charousset, Corelight)
* Merge master and clone store log components (Dominik Charousset, Corelight)
The distinction between clones and masters at the log level component
has proven to be too fine-grained and makes it difficult to log events
outside of the master and clone actors, e.g., the store (base) actor or
the channels.
* Remove BROKER_TRACE from the code base (Dominik Charousset, Corelight)
The new logging backend no longer offers trace logging. Since it is more
geared towards high-level description of events rather than leaving a
paper trail what lines of code ran.
* Convert logging for core and endpoint components (Dominik Charousset, Corelight)
* Use the new logging functions (Dominik Charousset, Corelight)
* Add new API for tapping into Broker logs (Dominik Charousset, Corelight)
The new event API in Broker enables users to install custom event
observers (loggers) in order to embed Broker logs into a wider context.
2.8.0-dev.185 | 2025-03-31 14:38:05 +0200
* Drop caf dependencies from example (Benjamin Bannier, Corelight)
We do not expose caf as a Broker dependency anymore so this is not
required.
* Require C++17 when compiling example (Benjamin Bannier, Corelight)
We have required C++17 since some time now, and this would have not
compiled since then.
2.8.0-dev.182 | 2025-03-31 14:37:48 +0200
* Bump pre-commit hooks (Benjamin Bannier, Corelight)
* Populate data_envelope with topic in json::decode() (Arne Welzel, Corelight)
This allows users access to the topic via variant::shared_envelope()
2.8.0-dev.178 | 2025-02-20 13:17:43 +0100
* Remove space in UDL definition (Tim Wojtulewicz, Corelight)
2.8.0-dev.176 | 2025-02-15 10:14:39 +0100
* Fix typo in configuration option name (Dominik Charousset, Corelight)
2.8.0-dev.174 | 2025-02-07 17:45:35 -0800
* CI: bump FreeBSD 14 to 14.2, which came out in Dec'24 (Christian Kreibich, Corelight)
* CI: remove OpenSuSE Leap 15.5, EOL. (Christian Kreibich, Corelight)
2.8.0-dev.171 | 2025-01-27 07:37:10 -0700
* Add sphinx configuration key for readthedocs (Tim Wojtulewicz, Corelight)
2.8.0-dev.169 | 2024-12-13 12:02:08 -0700
* CI: Add '=' to ENV commands to silence 'docker build' warnings (Tim Wojtulewicz, Corelight)
* CI: Add python3-distuils to ubuntu 20 image (Tim Wojtulewicz)
* CI: Require newer gcc and python on opensuse-leap builds (Tim Wojtulewicz, Corelight)
2.8.0-dev.163 | 2024-12-10 17:27:21 -0700
* Fix ruff F findings (Tim Wojtulewicz, Corelight)
* Fix ruff UP findings (Tim Wojtulewicz, Corelight)
* Fix ruff C4 findings (Tim Wojtulewicz, Corelight)
* Add ruff linting for python, fix I/ISC issues (Tim Wojtulewicz, Corelight)
* Add pre-commit run ruff-format, fix findings (Tim Wojtulewicz, Corelight)
* Remove long-obsolete travis.yml file (Tim Wojtulewicz, Corelight)
* CI: Install python3.9-dev on ubuntu 20 (Tim Wojtulewicz, Corelight)
* Require Python 3.9 in CMakeLists.txt (Tim Wojtulewicz, Corelight)
2.8.0-dev.154 | 2024-12-06 15:14:02 -0800
* Fix potential connector infinite loop in read_result::stop scenarios (Christian Kreibich, Corelight)
* Add reason strings to a peering's force_disconnect() (Christian Kreibich, Corelight)
* Revert part of 4d9aa3bd that currently breaks Zeek build (Christian Kreibich, Corelight)
2.8.0-dev.150 | 2024-12-06 00:02:47 -0800
* CI: add Ubuntu 24.10 (Christian Kreibich, Corelight)
* CI: bump FreeBSD to 14.1 and 13.4, respectively (Christian Kreibich, Corelight)
* CI: drop Fedora 39, add 41 (Christian Kreibich, Corelight)
2.8.0-dev.146 | 2024-12-04 14:36:30 -0700
* CI: Require python 3.9 on ubuntu 20 (Tim Wojtulewicz, Corelight)
2.8.0-dev.144 | 2024-12-02 23:59:25 -0800
* Fix log statement when disconnecting stalled peers (Dominik Charousset)
* Disconnect slow peers and WS clients by default (Dominik Charousset)
* Pick up backport for on_backpressure_buffer (Dominik Charousset)
2.8.0-dev.140 | 2024-11-25 19:00:28 +0100
* Fix invalid range clang-tidy findings (Dominik Charousset, Corelight)
Fix occurrences of "The value '0' provided to the cast expression is not
in the valid range of values for 'p2p_message_type'."
* Fix clang-tidy performance warnings (Dominik Charousset, Corelight)
Addressed warnings:
- parameter is copied for each invocation but only used as a const
reference
- do not use 'std::endl' with streams; use '\\n' instead
Furthermore, `performance-enum-size` warnings have been disabled. Broker
uses several enum types in types that are exchanged over the network.
Changing the enum types would be a breaking change on the wire format.
2.8.0-dev.137 | 2024-11-07 19:06:35 +0100
* Update `clang-format` on CI (Dominik Charousset)
2.8.0-dev.135 | 2024-11-07 16:48:29 +0100
* Bump dockerfiles for Fedora 39 and 40 (Dominik Charousset)
2.8.0-dev.133 | 2024-10-18 17:42:01 -0700
* Remove obsolete operators.hh utility (Dominik Charousset)
2.8.0-dev.131 | 2024-10-18 16:57:55 -0700
* Integrate review feedback (Dominik Charousset)
* Fix regression in the new decoding logic (Dominik Charousset)
* Fix build on FreeBSD (Dominik Charousset, Corelight)
* Replace CAF deserializers with Broker decoders (Dominik Charousset, Corelight)
* Implement a decoder with inspect API support (Dominik Charousset, Corelight)
* Use Broker's own serialization over CAF serializer (Dominik Charousset, Corelight)
* Use the new binary decoder for Broker's variant (Dominik Charousset, Corelight)
* Iterate on the new decoding API (Dominik Charousset, Corelight)
* Implement new decoding logic for the binary format (Dominik Charousset, Corelight)
2.8.0-dev.121 | 2024-10-18 10:12:55 -0700
* Fix bugprone and modernize clang-tidy findings (Dominik Charousset)
* Pin prometheus to 1.2.4 (Arne Welzel, Corelight)
2.8.0-dev.117 | 2024-09-14 15:58:08 +0200
* Fix type 3 messages in broker-throughput (Dominik Charousset)
Tables and set must have unique keys. When using a builder, the calling
code must make sure to not violate that assumption.
2.8.0-dev.115 | 2024-07-22 14:57:32 -0700
* Pick up an upstream CAF fix (Dominik Charousset, Corelight)
2.8.0-dev.113 | 2024-07-16 16:45:13 +0200
* Remove obsolete test scaffolding (Dominik Charousset, Corelight)
2.8.0-dev.111 | 2024-07-16 16:38:44 +0200
* Switch to clang-format 18 in CI (Dominik Charousset, Corelight)
2.8.0-dev.109 | 2024-07-14 11:04:26 +0200
* Enforce TLS version 1.2 as minimum when using SSL (Dominik Charousset, Corelight)
2.8.0-dev.107 | 2024-07-14 08:39:15 +0200
* Add more btests to replace "unit" tests (Dominik Charousset, Corelight)
2.8.0-dev.97 | 2024-07-12 15:04:40 -0700
* CI: Only use Sonoma for macOS (Tim Wojtulewicz, Corelight)
* CI: Set FETCH_CONTENT_FULLY_DISCONNECTED flag for configure (Tim Wojtulewicz, Corelight)
2.8.0-dev.93 | 2024-07-11 12:11:26 -0700
* Add safety checks for accessing registry pointers (Dominik Charousset, Corelight)
* Fix build on Windows (Dominik Charousset, Corelight)
* Remove obsolete tests (Dominik Charousset, Corelight)
* Use bundling approach for building prometheus-cpp (Dominik Charousset and Christian Kreibich, Corelight)
* Drop legacy telemetry API (Dominik Charousset, Corelight)
2.8.0-dev.84 | 2024-06-24 15:38:31 +0200
* Remove unused master_resolver from the code base (Dominik Charousset, Corelight)
* Fix/suppress clang-tidy findings (Dominik Charousset, Corelight)
2.8.0-dev.80 | 2024-05-31 09:10:03 +0200
* Add JSON schema for the WebSocket output format (Dominik Charousset, Corelight)
2.8.0-dev.78 | 2024-05-31 09:09:10 +0200
* Remove workaround for unsupported CMake versions (Dominik Charousset, Corelight)
Since we have bumped the minimum CMake version to 3.15, we no longer
need to worry about older CMake version.
2.8.0-dev.76 | 2024-05-31 09:08:22 +0200
* Add missing dependency to serialization benchmark (Dominik Charousset, Corelight)
2.8.0-dev.74 | 2024-05-25 14:51:52 +0200
* Add missing include (Dominik Charousset, Corelight)
* CI: bump FreeBSD 13 to 13.3 (Christian Kreibich, Corelight)
* CI: add Opensuse Leap 15.6 (Christian Kreibich, Corelight)
* CI: remove CentOS Stream 8 (Christian Kreibich, Corelight)
* CI: add Fedora 40, drop 38 (Christian Kreibich, Corelight)
2.8.0-dev.68 | 2024-05-16 20:51:52 +0200
* Restore the serialization benchmark program (Dominik Charousset, Corelight)
2.8.0-dev.66 | 2024-05-12 13:49:48 +0200
* CI: Replace Ubuntu 23.10 with Ubuntu 24.04 (Tim Wojtulewicz, Corelight)
2.8.0-dev.64 | 2024-05-09 14:11:32 +0200
* Implement new decode functions for the JSON format (Dominik Charousset, Corelight)
2.8.0-dev.61 | 2024-05-06 14:26:27 -0700
* Properly install config.hh header (again) (Dominik Charousset, Corelight)
* Disable tools when building Broker as sub-project (Dominik Charousset, Corelight)
Projects that build Broker only as a dependency (like Zeek) have no use
for the benchmark tools. Hence, those targets should be excluded from
the build to avoid building superfluous binaries but also since they
might cause build issues in some scenarios.
2.8.0-dev.56 | 2024-03-19 15:54:34 -0700
* Fix update-changes config due to version.hh moving (Tim Wojtulewicz, Corelight)
2.8.0-dev.55 | 2024-03-19 15:30:46 -0700
* Restore the routing-table benchmark program (Dominik Charousset, Corelight)
2.8.0-dev.53 | 2024-03-19 15:30:10 -0700
* Restore python-ssl test (Dominik Charousset, Corelight)
2.8.0-dev.51 | 2024-03-19 15:28:32 -0700
* docs/python: Point users at WebSocket (Arne Welzel, Corelight)
Users on Slack somewhat regularly ask questions around how to use the Python
bindings and finding quirks with it. Just for us to tell them they
should be using WebSockets instead. These might not be perfect, but at
least we're open to hear feedback and improve them, which isn't
necessarily our stance for the Python bindings.
Put up a big banner to redirect users into the future. Seems "warning" is
warranted given our reluctance and future ideas around deprecation for
the bindings.
2.8.0-dev.49 | 2024-03-15 22:18:06 +0100
* CI: Remove CentOS 7 and Debian 10 builds (Christian Kreibich, Corelight)
2.8.0-dev.47 | 2024-03-14 20:56:38 +0100
* Fix CTest setup for the unit tests (Dominik Charousset, Corelight)
2.8.0-dev.45 | 2024-03-14 19:23:38 +0100
* Use the Canonical Project Structure for Broker (Dominik Charousset, Corelight)
For the Canonical Project Structure, see
https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p1204r0.html.
2.8.0-dev.41 | 2024-02-20 09:15:14 -0700
* Remove obsolete code (Dominik Charousset, Corelight)
* CI: Use a python venv in test.sh to avoid pip errors on newer platforms (Tim Wojtulewicz, Corelight)
* CI: Pin Windows openssl to 3.1.1 (Tim Wojtulewicz, Corelight)
* CI: Fix building of alpine image with regards to python packages (Tim Wojtulewicz, Corelight)
* Implement new variant type and builder API (Dominik Charousset, Corelight)
- The new `broker::variant` is similar to `broker::data` in so far that
it can represent similar types. However, once constructed, the new
`broker::variant` is a read-only type. Internally, the variant stores
the binary representation of the represented value. This makes
serializing into the binary format essentially a no-op. When
deserializing a value from the wire, we also keep the original byte
representation around. For the actual data structure on top of the
buffer, `broker::variant` uses a monotonic buffer resource in order to
efficiently allocate the data structure representing the value.
- For building a `broker::variant`, Broker now ships a new builder API.
A builder must be filled with the entire data set for a
`broker::variant` before constructing the final object.
- The new `broker::variant` also comes with a matching "envelope" type.
An envelope is basically the raw data plus meta data (such as topic).
The envelopes represent the old message types such as `data_message`.
2.8.0-dev.35 | 2024-01-30 18:31:39 +0100
* Implement JSON encoding for broker::data (Dominik Charousset, Corelight)
The new header `broker/format/json.hh` implements the `encode`-API for
`broker::variant`, akin to `broker/format/txt.hh`. The generated JSON
format is tailored to the WebSocket interface.
The format itself is documented in `web-socket.rst`.
2.8.0-dev.24 | 2024-01-30 17:28:02 +0100
* Fix build with Python >= 3.12 (Dominik Charousset, Corelight)
The distutils package has been removed in Python 3.12. Hence, we need a
different approach for finding the site-packages directory.
Since the FindPython module already sets appropriate variables for this
purpose (https://cmake.org/cmake/help/latest/module/FindPython.html), we
simply switch to using `Python_SITEARCH`.
2.8.0-dev.22 | 2024-01-08 09:24:07 -0700
* Bump CAF to fix runtime error on Windows (Dominik Charousset, Corelight)
Fixes an issue on Windows where the pipe to the connector would shut
down after 2 minutes, essentially taking Broker with it.
2.8.0-dev.20 | 2023-12-15 20:59:14 +0100
* Implement encoding for text and binary formats (Dominik Charousset, Corelight)
- implement new encoding functions for both text and binary
- start versioning the Broker data formats in the API
- integrate the new encoding functions into text rendering and serialization
2.8.0-dev.18 | 2023-12-14 19:56:46 -0800
* CI updates (Christian Kreibich, Corelight)
- remove openSUSE Leap 15.4, about to EOL
- drop macOS Monterey, add Sonoma
- add Ubuntu 23.10
- FreeBSD 14 is out now, 13 is at 13.2, and 12 is about to EOL.
- distro EOL comment tweaks
- drop Fedora 37, add Fedora 39
2.8.0-dev.11 | 2023-12-04 16:36:02 +0100
* Pick up upstream CAF patch for flow::from_steps (Dominik Charousset, Corelight)
This fixes a potential segfault (dereferencing a null pointer) in Broker.
2.8.0-dev.9 | 2023-12-04 16:02:54 +0100
* Fix MBR allocations for >= 1024 bytes (Dominik Charousset, Corelight)
When trying to allocate a single object with size >= 1024, the current
implementation crashes with a stack overflow. This patch allows blocks
to exceed the hard-coded size limit to accommodate larger objects.
2.8.0-dev.7 | 2023-11-16 16:54:09 +0100
* Fix error::context (Dominik Charousset, Corelight)
2.8.0-dev.5 | 2023-11-13 19:52:09 -0800
* Fix Github edit links in top-right of HTML pages (Christian Kreibich, Corelight)
2.8.0-dev.3 | 2023-10-13 13:25:04 -0700
* Replace magic numbers with named indexes (Dominik Charousset, Corelight)
* Avoid implicit conversions in Zeek utility classes (Dominik Charousset)
2.7.0-dev.32 | 2023-08-28 09:41:33 -0700
* CI: Remove EOL ubuntu 22.10 build (Tim Wojtulewicz, Corelight)
* CI: Fix a spelling error in (almost) every Dockerfile (Tim Wojtulewicz, Corelight)
* CI: Force alpine image to rebuild (Tim Wojtulewicz, Corelight)
* CI: Install newer version of python on older distros (Tim Wojtulewicz, Corelight)
* Merge branch 'topic/awelzel/fix-rtd-doc-build' (Arne Welzel, Corelight)
* topic/awelzel/fix-rtd-doc-build:
doc/conf: Fix html_theme not defined
* doc/conf: Fix html_theme not defined (Arne Welzel, Corelight)
Zeek side reference: zeek/zeek-docs#206
2.7.0-dev.25 | 2023-08-24 15:32:31 -0700
* Bump dockerfile images (Dominik Charousset, Corelight)
* Fix endless recursion in do_print (Dominik Charousset, Corelight)
* Make println utility reusable (Dominik Charousset, Corelight)
2.7.0-dev.21 | 2023-08-15 17:39:57 +0100
* Build broker bindings for older versions of Python (Johanna Amann, Corelight)
Recently (GH-370), the version of Python required to build the bindings
was upped to 3.7. This is problematic, as we have older versions of
Python in distributions that we still support; this lowers this version
again.
2.7.0-dev.19 | 2023-07-31 10:35:39 -0700
* Force rebuilds of alpine, debian-11, ubuntu-2210, and Windows CI images (Tim Wojtulewicz, Corelight)
* Replace usage of deprecated CMake FindPythonInterp and FindPythonDev (Tim Wojtulewicz, Corelight)
These were both replaced by components to the FindPython module, and
were marked as deprecated in CMake 3.12. This removes their usage
since CMake 3.27 and above now report a warning for CMP0148. This also
replaces the naming of some variables to match the CMake documentation.
* Update pybind11 to v2.11.1 (Tim Wojtulewicz, Corelight)
2.7.0-dev.15 | 2023-07-02 14:55:22 -0700
* Add /J flag on Windows to force unsigned char (Tim Wojtulewicz, Corelight)
* Pass -funsigned-char flag during compilation (Tim Wojtulewicz, Corelight)
2.7.0-dev.12 | 2023-06-21 09:26:05 -0700
* Use a set for caching metric instances (Dominik Charousset, Corelight)
* Optimize metric_collector::insert_or_update lookup (Dominik Charousset, Corelight)
2.7.0-dev.9 | 2023-06-15 14:46:55 -0700
* CI: a round of updates to align with Zeek (Christian Kreibich, Corelight)
2.7.0-dev.7 | 2023-06-12 14:08:19 -0700
* ci/windows: choco --localonly is gone (Tim Wojtulewicz, Corelight)
2.7.0-dev.5 | 2023-06-12 12:26:32 -0700
* Fix handling of fragmented WebSocket frames (Dominik Charousset, Corelight)
2.7.0-dev.2 | 2023-05-26 11:03:44 -0700
* Bump CAF submodule to fix a crash on disposables (Dominik Charousset, Corelight)
2.6.0-dev.66 | 2023-05-23 11:33:10 -0700
* Bump CAF submodule to fix sprintf warning (Dominik Charousset, Corelight)
2.5.0-dev.120 | 2023-05-18 09:59:21 +0200
* Cover more types with the WebSocket btest (Dominik Charousset, Corelight)
2.5.0-dev.118 | 2023-05-12 12:39:11 -0700
* Update CAF submodule to remove leftover debug message (Tim Wojtulewicz, Corelight)
2.5.0-dev.116 | 2023-05-12 11:18:43 -0700
* Pick up CAF backport of uint64_t support in JSON (Dominik Charousset, Corelight)
2.5.0-dev.114 | 2023-05-12 11:18:26 -0700
* Allow reading port parameters as integers (Dominik Charousset, Corelight)
Restore backwards compatibility (in particular with Zeek) that expect
the port parameters to be accessible as 16-bit integers.
* Fix metadata vector location in websocket docs (Arne Welzel, Corelight)
As documented, they are one level further down, following args
directly.
2.5.0-dev.110 | 2023-05-11 12:42:51 +0200
* Add metadata section to websocket docs (Arne Welzel, Corelight)
* zeek-unsafe-types: assertEquals() is deprecated (Arne Welzel, Corelight)
* bindings: Rework Python for extensible metadata format (Arne Welzel, Corelight)
* Implement extensible metadata format for events (Arne Welzel, Corelight)
* Update tests to consider event timestamps. (Jan Grashoefer, Corelight)
* Add event timestamp to python bindings. (Jan Grashoefer, Corelight)
* Add optional timestamp to event message. (Jan Grashoefer, Corelight)
* Pin Sphinx/sphinx_rtd_theme in requirements.txt (Arne Welzel, Corelight)
* Fix urllib/openssl 1.0.2 error in readthedocs build (Arne Welzel, Corelight)
Fix as per: readthedocs/readthedocs.org#10290 (comment)
2.5.0-dev.95 | 2023-04-14 19:41:45 +0200
* Fix trailing semicolon (Arne Welzel, Corelight)
2.5.0-dev.93 | 2023-04-14 10:15:00 +0200
* Fix CMake package file for Broker (Dominik Charousset, Corelight)
2.5.0-dev.91 | 2023-04-11 20:21:34 +0200
* Force static builds for the bundled CAF (Dominik Charousset, Corelight)
2.5.0-dev.89 | 2023-04-08 10:05:14 +0200
* Fix heap-use-after free with flow scopes (Dominik Charousset, Corelight)
2.5.0-dev.86 | 2023-04-08 10:03:18 +0200
* Bump CAF for fixing clang warnings (Dominik Charousset, Corelight)
2.5.0-dev.84 | 2023-04-06 11:06:09 -0700
* Explicitly use std namespace when calling std::move (Tim Wojtulewicz, Corelight)
2.5.0-dev.82 | 2023-03-30 11:58:10 -0700
* CI: Force rebuild of opensuse-tumbleweed VM to pick up gcc 13 (Tim Wojtulewicz, Corelight)
* Update CAF for GCC 13 build (Dominik Charousset, Corelight)
2.5.0-dev.79 | 2023-03-23 21:00:02 +0100
* Fix tick_interval usage in send_later (Arne Welzel, Corelight)
2.5.0-dev.77 | 2023-03-19 15:01:44 +0100
* Add new btest for the status reporting over HTTP (Dominik Charousset, Corelight)
* Support Zeek-style port notation as arguments (Dominik Charousset, Corelight)
Our `btest`-suites pass Zeek-style port notation such as "1024/tcp" as
arguments to Broker. By dealing with them at the endpoint level, we can
avoid the overhead of stripping the protocol suffixes when adding more
`btest` suites that interact with Broker tools.
* Add instrumentation and status collection logic (Dominik Charousset, Corelight)
2.5.0-dev.69 | 2023-03-18 17:05:15 -0700
* Pick up CAF patch for Prometheus (Dominik Charousset, Corelight)
2.5.0-dev.67 | 2023-03-17 09:25:55 +0100
* Use IPv6 mode for accept sockets by default (Dominik Charousset, Corelight)
2.5.0-dev.64 | 2023-03-12 12:51:02 -0700
* Update benchmarker Cirrus secrets to use org-level values (Tim Wojtulewicz, Corelight)
2.5.0-dev.62 | 2023-03-04 11:07:48 +0100
* Fix regression in endpoint::peers (Dominik Charousset, Corelight)
2.5.0-dev.59 | 2023-02-01 15:33:14 -0700
* Bump pybind11 to version 2.10.3 (Tim Wojtulewicz, Corelight)
2.5.0-dev.55 | 2023-01-28 10:08:31 +0100
* sqlite_backend: Add a few more backend_options (Arne Welzel, Corelight)
* synchronous to run 'PRAGMA synchronous=<value>' during initialization.
* journal_mode to run 'PRAGMA journal_mode=<value>' during initialization.
* failure_mode to delete the database and reopen it when
an error occurs during initialization.
* integrity_check to run PRAGMA integrity_check during initialization to
reliably detect corrupted databases.
2.5.0-dev.46 | 2023-01-10 17:28:37 -0800
* CI: switch action/checkout to v3 (Christian Kreibich, Corelight)
* CI: remove Fedora 35, now EOL (Christian Kreibich, Corelight)
2.5.0-dev.44 | 2023-01-10 16:49:10 +0100
* Implement graceful disconnect handshake (Dominik Charousset, Corelight)
2.5.0-dev.36 | 2023-01-05 12:08:33 -0700
* CI: macOS platform updates (Tim Wojtulewicz, Corelight)
- Add Ventura build
- Switch all macOS builds to use M1 images. x86_64 builds are no longer supported
by Cirrus for macOS as of 2023/1/1.
- Drop Big Sur build
2.5.0-dev.34 | 2022-11-29 14:46:24 +0100
* Add formatting helper for consistent pre/post Python 3.11 enum stringification (Christian Kreibich, Corelight)
* CI: add Fedora 37 (Christian Kreibich, Corelight)
2.5.0-dev.31 | 2022-11-22 13:13:43 -0700
* Zeek 5.0.x compatibility (Dominik Charousset, Corelight)
2.5.0-dev.29 | 2022-11-22 13:13:09 -0700
* Fix formatting (Dominik Charousset, Corelight)
* Fix clang-tidy warnings (Dominik Charousset, Corelight)
* Fix handling of peer/client errors (Dominik Charousset, Corelight)
* Set missing flag during unpeering process (Dominik Charousset, Corelight)
* Migrate to CAF 0.19 backport of the flow API (Dominik Charousset, Corelight)
2.5.0-dev.22 | 2022-11-21 09:54:18 -0700
* Windows CI: make Dockerfile a little more like one in Zeek (Tim Wojtulewicz, Corelight)
- Install choco in a much less-verbose way
- Use choco to install VS build tools and git
2.5.0-dev.20 | 2022-11-15 11:49:21 -0700
* Update CAF submodule for SPCP buffer fix (Dominik Charousset, Corelight)
2.5.0-dev.18 | 2022-11-14 12:21:07 -0700
* Minimize messaging in sim_clock::advance_time (Dominik Charousset, Corelight)
2.5.0-dev.16 | 2022-11-14 12:17:17 -0700
* Tweak documentation for --with-log-level (Dominik Charousset, Corelight)
* Configure script: drop --with-caf, add -D option (Dominik Charousset, Corelight)
2.5.0-dev.12 | 2022-11-14 12:16:44 -0700