From c56c7af44e0f230710e156a437f983a9f2ae3052 Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Wed, 7 Aug 2024 12:27:56 -0700 Subject: [PATCH] Add note to NEWS about the removal of OpaqueVal::DoSerialize and OpaqueVal::DoUnserialize --- NEWS | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/NEWS b/NEWS index a4506b1577..bfb2deb0a4 100644 --- a/NEWS +++ b/NEWS @@ -9,6 +9,13 @@ Zeek 7.1.0 Breaking Changes ---------------- +* The ``OpaqueVal::DoSerialize`` and ``OpaqueVal::DoUnserialize`` methods were + marked as deprecated in v7.0 and have now been removed as per the Zeek + deprecation policy. Plugins that were overriding these methods and were not + updated will fail to compile. Those plugins should be updated to override the + new ``OpaqueVal::DoSerializeData`` and ``OpaqueVal::DoUnserializeData`` + methods. + New Functionality -----------------