diff --git a/cmake/modules/driver.cmake b/cmake/modules/driver.cmake index 6006a22c..bc7704d2 100644 --- a/cmake/modules/driver.cmake +++ b/cmake/modules/driver.cmake @@ -26,8 +26,8 @@ else() # In case you want to test against another driver version (or branch, or commit) just pass the variable - # ie., `cmake -DDRIVER_VERSION=dev ..` if(NOT DRIVER_VERSION) - set(DRIVER_VERSION "dc02e5004fb57c64b076807c5536ec824dc14d50") - set(DRIVER_CHECKSUM "SHA256=da528076883d67fac2a4404c61a16b79d983077cb6d40553618c4bfd7aa3e993") + set(DRIVER_VERSION "0790cffa6c4ab485a7eb05126a2d8c6c99ad7328") + set(DRIVER_CHECKSUM "SHA256=a9902754cc806a53947f041208bd11d4aac5a97e72f7ac3865a452c5204376af") endif() # cd /path/to/build && cmake /path/to/source diff --git a/cmake/modules/falcosecurity-libs.cmake b/cmake/modules/falcosecurity-libs.cmake index 0e9ad24a..bee54e42 100644 --- a/cmake/modules/falcosecurity-libs.cmake +++ b/cmake/modules/falcosecurity-libs.cmake @@ -27,8 +27,8 @@ else() # In case you want to test against another falcosecurity/libs version (or branch, or commit) just pass the variable - # ie., `cmake -DFALCOSECURITY_LIBS_VERSION=dev ..` if(NOT FALCOSECURITY_LIBS_VERSION) - set(FALCOSECURITY_LIBS_VERSION "dc02e5004fb57c64b076807c5536ec824dc14d50") - set(FALCOSECURITY_LIBS_CHECKSUM "SHA256=da528076883d67fac2a4404c61a16b79d983077cb6d40553618c4bfd7aa3e993") + set(FALCOSECURITY_LIBS_VERSION "0790cffa6c4ab485a7eb05126a2d8c6c99ad7328") + set(FALCOSECURITY_LIBS_CHECKSUM "SHA256=a9902754cc806a53947f041208bd11d4aac5a97e72f7ac3865a452c5204376af") endif() # cd /path/to/build && cmake /path/to/source diff --git a/userspace/engine/falco_engine_version.h b/userspace/engine/falco_engine_version.h index 6f1a314e..3e9dc601 100644 --- a/userspace/engine/falco_engine_version.h +++ b/userspace/engine/falco_engine_version.h @@ -16,9 +16,9 @@ limitations under the License. // The version of rules/filter fields/etc supported by this Falco // engine. -#define FALCO_ENGINE_VERSION (18) +#define FALCO_ENGINE_VERSION (19) // This is the result of running "falco --list -N | sha256sum" and // represents the fields supported by this version of Falco. It's used // at build time to detect a changed set of fields. -#define FALCO_FIELDS_CHECKSUM "c553eed8c6054dda28a950f52631a61883d5ff92bcfe166e8e56c5ab2a06341d" +#define FALCO_FIELDS_CHECKSUM "1d7f91f22d40074c56c705f5e494b7fae51aee1b7ababc8c70cfa63c6d6671c2" diff --git a/userspace/engine/json_evt.h b/userspace/engine/json_evt.h index 5e4e840b..ae6f6356 100644 --- a/userspace/engine/json_evt.h +++ b/userspace/engine/json_evt.h @@ -436,7 +436,7 @@ public: bool tostring(gen_event *evt, std::string &output) override; bool tostring_withformat(gen_event *evt, std::string &output, gen_event_formatter::output_format of) override; bool get_field_values(gen_event *evt, std::map &fields) override; - void get_field_names(std::vector &fields) override + void get_field_names(std::vector &fields) override { throw falco_exception("json_event_formatter::get_field_names operation not supported"); }