mirror of
https://github.com/falcosecurity/falco.git
synced 2025-09-12 21:16:33 +00:00
update(rule_loader): deprecate all non-SemVer compatible values
Signed-off-by: Andrea Terzolo <andreaterzolo3@gmail.com>
This commit is contained in:
@@ -368,6 +368,7 @@ static void read_item(
|
||||
|
||||
// Build proper semver representation
|
||||
v.version = rule_loader::reader::get_implicit_engine_version(ver);
|
||||
cfg.res->add_warning(falco::load_result::LOAD_DEPRECATED_ITEM, WARNING_ENGINE_VERSION_NOT_SEMVER, ctx);
|
||||
}
|
||||
catch(std::exception& e)
|
||||
{
|
||||
|
@@ -32,6 +32,9 @@ limitations under the License.
|
||||
// Warning message used when `enabled` is used without override.
|
||||
#define WARNING_ENABLED_MESSAGE "The standalone 'enabled' key usage is deprecated. The correct approach requires also a 'replace' entry under the 'override' key (i.e. 'enabled: replace')."
|
||||
|
||||
// Warning message used when the `required_engine_version` is not semver compatible.
|
||||
#define WARNING_ENGINE_VERSION_NOT_SEMVER "The 'required_engine_version' should be SemVer compatible. All non-SemVer compatible values are deprecated."
|
||||
|
||||
namespace rule_loader
|
||||
{
|
||||
|
||||
|
Reference in New Issue
Block a user