diff --git a/CHANGES b/CHANGES index 416d755c..c4ec6601 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +2.4.0 | 2022-10-27 08:47:44 -0700 + + * Update cmake submodule [nomail] [skip ci] (Tim Wojtulewicz, Corelight) + 2.4.0-dev.86 | 2022-10-20 16:49:49 -0700 * Fix CMake package file when bundling CAF (Dominik Charousset, Corelight) diff --git a/NEWS b/NEWS index 34f315e9..56b81bb8 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,24 @@ +Broker 2.4.0 +============ + +- Fix CMake package file when bundling CAF (Dominik Charousset, Corelight) + +- Fix a performance bottleneck in Broker-internal caching. + +- Improve performance with the ``stealing`` scheduler policy. + +- Fix messaging between clones and proxies that was resulting in an error + message being reported. + +- Fix a bug that prevented Broker nodes to recover from OpenSSL errors. + +- Fix handling of buffer sizes that caused Broker to stall despite having + sufficient capacity. + +- Add missing error signaling + +- Fix communication between Broker data stores. + Broker 2.3.0 ============ diff --git a/VERSION b/VERSION index ba287280..197c4d5c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.4.0-dev.86 +2.4.0 diff --git a/include/broker/version.hh b/include/broker/version.hh index 0135961c..40c03fb9 100644 --- a/include/broker/version.hh +++ b/include/broker/version.hh @@ -10,7 +10,7 @@ using type = unsigned; constexpr type major = 2; constexpr type minor = 4; constexpr type patch = 0; -constexpr auto suffix = "-dev"; +constexpr auto suffix = ""; constexpr type protocol = 2;