From 67012b96ff85c83a4582f1e5a4b534484c87c7b7 Mon Sep 17 00:00:00 2001 From: Christian Kreibich Date: Mon, 28 Mar 2022 16:28:35 -0700 Subject: [PATCH] Update NEWS to reflect recent updates --- NEWS | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/NEWS b/NEWS index dc30436945..b20efb7a91 100644 --- a/NEWS +++ b/NEWS @@ -12,6 +12,10 @@ Breaking Changes New Functionality ----------------- +- Zeek now supports generation and replay of event traces via the new + ``--event-trace`` / ``-E`` command-line options. For details, see: + https://docs.zeek.org/en/master/quickstart.html#tracing-events + - The new --with-gen-zam configure flag and its corresponding GEN_ZAM_EXE_PATH cmake variable allow reuse of a previously built Gen-ZAM code generator. This aids cross-compilation: the Zeek build process normally compiles Gen-ZAM on @@ -23,6 +27,13 @@ New Functionality Changed Functionality --------------------- +- The behavior of the ``=``, ``+=``, and ``-=`` operators has been expanded and + unified. It now covers ``{ ... }`` initializer lists, supports cross-product + initialization, enables ``+=`` for table, set, vector and pattern values, + similarly allows ``-=`` for table and set values, and supports listing + multiple sets for ``+=`` initialization. For details, see: + https://docs.zeek.org/en/master/script-reference/operators.html#assignment-operators + - The is_num(), is_alpha(), and is_alnum() BiFs now return F for the empty string. Deprecated Functionality