-
Notifications
You must be signed in to change notification settings - Fork 25
/
CHANGES
2551 lines (1428 loc) · 82.9 KB
/
CHANGES
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.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
* Add interface include dirs to broker lib targets (Dominik Charousset, Corelight)
2.5.0-dev.10 | 2022-11-14 12:16:23 -0700
* Drop CAF incubator: caf-net moved to the main repo (Dominik Charousset, Corelight)
2.5.0-dev.8 | 2022-11-14 12:15:19 -0700
* Remove LGTM config file (Dominik Charousset, Corelight)
* Apply LGTM recommendations for some minor findings (Dominik Charousset, Corelight)
2.5.0-dev.4 | 2022-11-09 18:27:33 -0700
* Add the branch whitelist to the Windows/Clang-Tidy Cirrus tasks (Tim Wojtulewicz, Corelight)
2.5.0-dev.2 | 2022-11-09 10:45:06 -0700
* Merge commit 'd9db9ce515f576dc8a4113b1accc489a645bd43c' (Tim Wojtulewicz, Corelight)
* commit 'd9db9ce515f576dc8a4113b1accc489a645bd43c':
Enable modernize-* checks and apply auto-fixes
* Enable modernize-* checks and apply auto-fixes (Dominik Charousset, Corelight)
* Update submodules [nomail] [skip ci] (Tim Wojtulewicz)
2.4.0-dev.86 | 2022-10-20 16:49:49 -0700
* Fix CMake package file when bundling CAF (Dominik Charousset, Corelight)
* Fix messaging between clone and proxy (Dominik Charousset, Corelight)
2.4.0-dev.82 | 2022-10-19 19:37:01 -0700
* Update cmake submodule [nomail] (Tim Wojtulewicz, Corelight)
* Moved include CXX17 directive as per CR instruction (Tomer Lev)
* Bumped cmake submodule commit (Tomer Lev)
* Adding suuport to MSVC under windows platform (Tomer Lev)
2.4.0-dev.77 | 2022-10-02 10:22:23 +0200
* Performance improvements (Dominik Charousset, Corelight)
- Fix performance bottleneck in Broker-internal caching (see #277)
- Improve performance with the `stealing` scheduler policy
(see https://github.com/zeek/zeek/issues/2332)
2.4.0-dev.75 | 2022-09-21 09:56:19 -0700
* Fix a clang-tidy failure from a recent merge (Tim Wojtulewicz, Corelight)
* Fix minor formatting issue (Tim Wojtulewicz, Corelight)
2.4.0-dev.72 | 2022-09-20 08:49:22 -0700
* Get initial number of entries from the backend (Dominik Charousset, Corelight)
* Add additional health and performance metrics (Dominik Charousset, Corelight)
2.4.0-dev.69 | 2022-09-20 08:20:48 -0700
* Enable performance-* checks and fix findings (Dominik Charousset, Corelight)
2.4.0-dev.66 | 2022-09-19 09:21:27 -0700
* Fix error handling with OpenSSL calls (Dominik Charousset, Corelight)
2.4.0-dev.64 | 2022-09-13 08:14:22 -0400
* Avoid unnecessary copies (Dominik Charousset, Corelight)
* Add clang-tidy to CI with an initial set of checks (Dominik Charousset, Corelight)
2.4.0-dev.61 | 2022-09-07 16:43:16 +0200
* Update CAF submodule to fix stalling Broker pipelines (Dominik Charousset, Corelight)
2.4.0-dev.59 | 2022-08-26 09:02:43 -0700
* Add missing error signaling (Dominik Charousset, Corelight)
2.4.0-dev.57 | 2022-08-24 12:57:52 +0100
* Fix formatting (Dominik Charousset, Corelight)
* Allow clients to change the import metric topics (Dominik Charousset, Corelight)
2.4.0-dev.54 | 2022-08-22 16:41:54 +0200
* Remove the retry limit on peerings (Dominik Charousset, Corelight)
2.4.0-dev.52 | 2022-08-22 16:40:48 +0200
* Set SO_REUSEADDR for the Prometheus HTTP server (Dominik Charousset, Corelight)
2.4.0-dev.50 | 2022-08-22 16:39:58 +0200
* Revert accidental change to CMake file from #255 (Dominik Charousset, Corelight)
2.4.0-dev.48 | 2022-08-18 08:03:54 +0200
* Fix AUTO_CAUSES_COPY coverity reportings (Arne Welzel, Corelight)
2.4.0-dev.46 | 2022-08-09 10:54:42 +0200
* Add getters for bucket settings on family handles (Dominik Charousset, Corelight)
2.4.0-dev.42 | 2022-08-08 10:48:37 +0200
* Remove dead code and obsolete files (Dominik Charousset, Corelight)
2.4.0-dev.39 | 2022-08-03 20:44:57 +0200
* Apply clang-format to the code base, add CI check (Dominik Charousset, Corelight)
2.4.0-dev.37 | 2022-08-03 19:01:24 +0200
* Upgrade pybind11 to version 2.10.0 (Dominik Charousset, Corelight)
2.4.0-dev.35 | 2022-08-03 07:52:15 +0200
* Fix warnings on GCC by dropping [[nodiscard]] on convert functions (Dominik Charousset, Corelight)
2.4.0-dev.33 | 2022-08-02 20:06:17 +0200
* telemetry: Introduce a broker::metrics_collector. (Arne Welzel, Corelight)
- Add collect() on the registry and implement proxying between
broker::telemetry and caf::telemetry via metrics_collector
- Add new upcast() and value() overloads for const-pointers to handles
2.4.0-dev.26 | 2022-07-07 14:17:50 -0700
* CI updates (Christian Kreibich, Corelight)
- add FreeBSD 13.1 and fix broken link
- add Opensuse Tumbleweed
- drop Ubuntu 21.10, EOL 2022-07-14
- remove Debian 9, EOL 2022-06-30
* Make more and better use of C++17 features (Dominik Charousset, Corelight)
- Use `if constexpr` over `enable_if` in more places
- Consequently use `foo_v<...>` over `foo<...>::value`
- Drop legacy C++14 and C++17 backports in `type_traits.hh`
- Use better type introspection to allow `convert` to return `void`
- Make more consistent use of the `convert` API
2.4.0-dev.19 | 2022-06-27 15:48:47 -0700
* Fix double-close on pipe handles (Dominik Charousset, Corelight)
2.4.0-dev.17 | 2022-06-27 10:10:35 -0700
* CI distribution updates (Johanna Amann, Corelight)
Update distribution list to the same list we use for Zeek
2.4.0-dev.15 | 2022-06-24 12:53:34 -0700
* Fix recently introduced warnings on GCC (Dominik Charousset, Corelight)
2.4.0-dev.13 | 2022-06-24 12:53:18 -0700
* Point out that --with-caf is for-development-only (Dominik Charousset, Corelight)
* Keep make dist from deleting all paths containing 'build' [skip ci] (Tim Wojtulewicz, Corelight)
2.4.0-dev.10 | 2022-06-21 10:55:43 -0700
* Add new btest for put_unique (Dominik Charousset, Corelight)
* Streamline clone actor logic (Dominik Charousset, Corelight)
* Protect against clones receiving wrong inputs (Dominik Charousset, Corelight)
* Use multiple proxies per node for put_unique test (Dominik Charousset, Corelight)
* Remove unused message type (Dominik Charousset, Corelight)
2.4.0-dev.2 | 2022-06-14 09:19:25 -0700
* Dockerfile updates for consistency with recent Zeek changes (Tim Wojtulewicz, Corelight)
2.3.0 | 2022-06-03 11:39:10 -0700
* Release 2.3.0
2.2.0-323 | 2022-06-02 11:40:39 -0700
* Require newer cmake, and bump cmake installed in CI images (Tim Wojtulewicz, Corelight)
2.2.0-320 | 2022-06-01 21:09:40 +0200
* Fix leak in WebSockets. (Dominik Charousset, Corelight)
* Fix warning on GCC. (Dominik Charousset, Corelight)
* Run btests with ASAN/LeakSanitizer on CI. (Dominik Charousset, Corelight)
2.2.0-316 | 2022-06-01 12:24:56 +0200
* Add version negotiation to the handshake process. (Dominik
Charousset, Corelight)
* Fix double-close on sockets. (Dominik Charousset, Corelight)
* Enable new handshake tests in `btest.cfg`. (Dominik Charousset,
Corelight)
2.2.0-311 | 2022-05-30 11:08:11 +0200
* Implement new fan-out benchmark (Dominik Charousset, Corelight)
2.2.0-309 | 2022-05-30 11:07:09 +0200
* Remove deprecated std::iterator usage (Tim Wojtulewicz, Corelight)
2.2.0-307 | 2022-05-30 11:06:19 +0200
* Set SO_REUSEADDR by default. (Dominik Charousset, Corelight)
2.2.0-305 | 2022-05-30 11:00:52 +0200
* Fix minor Coverity findings. (Dominik Charousset, Corelight)
2.2.0-303 | 2022-05-30 10:31:23 +0200
* Add WebSocket support. (Dominik Charousset, Corelight)
Broker now offers access to the publish/subscribe layer via
WebSocket in order to make its data model accessible to third
parties. WebSocket clients are treated as lightweight peers. Each
Broker endpoint can be configured to act as a WebSocket server by
either setting the environment variable
``BROKER_WEB_SOCKET_PORT``; by setting ``broker.web-socket.port``
on the command line or in the configuration file; or
programmatically by calling ``endpoint::web_socket_listen``. See
``docs/web-socket.rst`` for more information.
2.2.0-277 | 2022-05-23 10:26:53 -0700
* Fix warning when building on macOS (Dominik Charousset, Corelight)
2.2.0-275 | 2022-05-23 10:24:52 -0700
* Drop broken FreeBSD 11 build from pipeline (Dominik Charousset, Corelight)
2.2.0-272 | 2022-05-04 11:14:41 -0700
* Expand tests to verify handling of Python-unsafe types sent by Zeek (Christian Kreibich, Corelight)
* Add broker.zeek.SafeEvent to work around data rendering problems (Christian Kreibich, Corelight)
* Expand HashableDict in favor of types.MappingProxyType (Christian Kreibich, Corelight)
2.2.0-268 | 2022-05-04 10:42:37 -0700
* Remove missed usage of previously-removed bro.py (Tim Wojtulewicz, Corelight)
2.2.0-267 | 2022-05-04 09:44:46 -0700
* Remove long-deprecated bro.py (Tim Wojtulewicz)
2.2.0-265 | 2022-05-04 09:42:30 -0700
* Remove accidentally included .tmp folder for broker-cluster-benchmark (Christian Kreibich, Corelight)
2.2.0-263 | 2022-04-28 19:46:01 +0000
* Implement new ALM transport (Dominik Charousset, Corelight)
This is too long of a change to list all of the commits in this file, but
the full list can be seen in https://github.com/zeek/broker/pull/201.
2.2.0-35 | 2022-03-18 13:39:43 -0700
* Disable LeakSanitizer on Windows (Tim Wojtulewicz, Corelight)
* Disable python bindings in Windows CI builds (Tim Wojtulewicz)
* Fix _MSC_VER macro usage that was breaking macro expansion (Tim Wojtulewicz)
* Output more information when CTest fails (Tim Wojtulewicz)
* Wrap GCC pragmas to avoid warnings on Windows (Tim Wojtulewicz)
* Normalize paths when installing python bindings (Tim Wojtulewicz)
* Set proper environment in test.cmd (Tim Wojtulewicz)
* Fix address::convert_from (Dominik Charousset, Corelight)
* Fix build on MSVC (Dominik Charousset)
* Rework CI scripts for Windows (Tim Wojtulewicz, Corelight)
2.2.0-22 | 2022-02-09 12:56:35 -0800
* CI support refresh (Christian Kreibich, Corelight)
- add FreeBSD 14
- add Ubuntu 21.10
- remove OpenSUSE Leap 15.2 (EOL)
- add CentOS Stream 9
- remove Fedora 33 (EOL)
2.2.0-16 | 2022-02-07 16:21:18 +0100
* Avoid exposing CAF internals. (Dominik Charousset, Corelight)
Remove all CAF dependencies from public headers and build the
bundled CAF version as static, private utility. Consumers of
Broker no longer need to locate CAF headers and we do not install
any CAF content alongside Broker, i.e., Broker becomes fully
standalone.
Where possible, Broker uses recent C++ additions like `std::variant` to
replace CAF types. For types that have no equivalent, Broker deploys
fully opaque handle types. For example, `broker::worker` internally
wraps a `caf::actor` handle.
All components in Broker that require access to CAF were grouped into
the new namespace `broker::internal`. We omit all internal headers from
an installation, since they would be worthless without the matching CAF
headers anyways. This also gives us a clean separation between API
artifacts users may interact with and API parts that are reserved for
internal use.
2.2.0-4 | 2022-01-27 14:49:00 -0700
* Have `make dist` cleanup a few more wayward files before tarring (Tim Wojtulewicz, Corelight)
* Remove CentOS 8 from CI. (Tim Wojtulewicz, Corelight)
EOL was 2021-12-31
2.2.0 | 2021-12-20 19:32:33 -0800
* Merge branch 'topic/christian/fix-python-unhashables' (Christian Kreibich, Corelight)
* topic/christian/fix-python-unhashables:
Add testcases for new Python SafeSubscriber class
Provide a SafeSubscriber class in Python to accommodate non-hashable types
Add immutable values to Python data type testsuite
Python cleanup: remove unneeded semicolons and trailing whitespace
* Add testcases for new Python SafeSubscriber class (Christian Kreibich, Corelight)
* Provide a SafeSubscriber class in Python to accommodate non-hashable types (Christian Kreibich, Corelight)
Broker's data model supports nested complex types, such as a set with table
members. When rendering such structures into Python, this could trigger
TypeError exceptions due to unhashable types.
The SafeSubscriber class and the corresponding Endpoint.make_safe_subscriber()
method ensure that immutable (hashable) Python types get used and that the
returned values are read-only. For sets the frozenset type achieves this, for
mapping types it's types.MappingProxyType. The API now also supports the latter
two types as inputs.
* Add immutable values to Python data type testsuite (Christian Kreibich, Corelight)
* Python cleanup: remove unneeded semicolons and trailing whitespace (Christian Kreibich, Corelight)
2.2.0-dev.17 | 2021-11-05 13:38:17 -0700
* Request at least Sphinx 2.0 to avoid a dependency problem in RTD (Christian Kreibich, Corelight)
* Introduce .readthedocs.yaml to avoid docs directory (Christian Kreibich, Corelight)
2.2.0-dev.14 | 2021-11-05 12:47:15 -0700
* Add macOS Monterey and drop Catalina in CI (Christian Kreibich, Corelight)
* Add Fedora 35 in CI (Christian Kreibich, Corelight)
2.2.0-dev.10 | 2021-08-26 14:30:39 -0700
* CI support refresh (Christian Kreibich, Corelight)
- Add Debian 11 (Bullseye)
- Drop Ubuntu 16.04
2.2.0-dev.8 | 2021-08-03 11:55:22 -0700
* Fix publisher deadlock when passing large batches (Dominik Charousset, Corelight)
2.2.0-dev.6 | 2021-07-28 19:08:17 -0700
* Fix output of build-type CFLAGS during configure (Tim Wojtulewicz, Corelight)
* Update HMAC key for benchmarking service (Tim Wojtulewicz, Corelight)
2.2.0-dev.3 | 2021-07-16 19:02:24 -0700
* Raise CAF dependency to 0.18.5 and update embedded version (Tim Wojtulewicz, Corelight)
2.1.0 | 2021-07-08 09:49:23 -0700
* Release 2.1.0.
2.1.0-dev.90 | 2021-07-08 09:49:16 -0700
* Raise CAF dependency to 0.18.4 and update embedded version (Tim Wojtulewicz, Corelight)
* Bring back process metrics (Dominik Charousset, Corelight)
2.1.0-dev.87 | 2021-07-02 10:02:22 -0700
* Fix is_prefix logic (Dominik Charousset, Corelight)
* Remove global topic variables (Dominik Charousset, Corelight)
Fix a potential memory corruption during static initialization by
avoiding global variables with non-trivial constructors.
2.1.0-dev.83 | 2021-06-28 08:44:56 -0700
* Fix heap-use-after-free during shutdown (Dominik Charousset, Corelight)
2.1.0-dev.81 | 2021-06-21 15:56:14 -0700
* CI support refresh to bring in line with Zeek (Christian Kreibich, Corelight)
* Update port used by benchmark host (Tim Wojtulewicz, Corelight)
2.1.0-dev.78 | 2021-06-07 09:22:35 -0700
* Remove noexcept from functions that may throw
Functions that access a `variant` of a `metric_view` may throw
`broker::bad_variant_access`. (Dominik Charousset, Corelight)
* Fix uninitialized field warnings (Dominik Charousset, Corelight)
2.1.0-dev.75 | 2021-06-01 10:18:00 -0700
* Make telemetry exporter configurable at runtime (Dominik Charousset, Corelight)
* Raise CAF dependency to 0.18.3 (Dominik Charousset, Corelight)
* Update CAF submodule (Dominik Charousset, Corelight)