diff --git a/CHANGES b/CHANGES index 7c7ac60a16..cbffd5725d 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,8 @@ + +4.1.0-dev.907 | 2021-07-08 16:00:06 -0700 + + * Fix reference in the logging framework docs re. Log::StreamPolicyHook (Christian Kreibich, Corelight) + 4.1.0-dev.905 | 2021-07-08 12:59:01 -0700 * Update broker submodule for process metrics (Tim Wojtulewicz, Corelight) diff --git a/VERSION b/VERSION index 100e11c3be..0ba658d84a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.1.0-dev.905 +4.1.0-dev.907 diff --git a/scripts/base/frameworks/logging/main.zeek b/scripts/base/frameworks/logging/main.zeek index 0a745fd538..40dd8d1fe3 100644 --- a/scripts/base/frameworks/logging/main.zeek +++ b/scripts/base/frameworks/logging/main.zeek @@ -311,7 +311,7 @@ export { type StreamPolicyHook: hook(rec: any, id: ID); ## A hook type to implement filtering policy at log filter - ## granularity. Like :zeek:see:`StreamPolicyHook`, these can + ## granularity. Like :zeek:see:`Log::StreamPolicyHook`, these can ## implement added functionality, alter it prior to logging, or ## veto the write. These hooks run at log filter granularity, ## so get a :zeek:see:`Log::Filter` instance as additional