proto: deprecate RuleMetadata.scope

This commit is contained in:
Willi Ballenthin
2023-08-25 13:22:48 +00:00
parent f96b9e6a6e
commit 08c9bbcc91
3 changed files with 39 additions and 35 deletions

View File

@@ -7,10 +7,12 @@
- add call scope #771 @yelhamer
- add process scope for the dynamic analysis flavor #1517 @yelhamer
- Add thread scope for the dynamic analysis flavor #1517 @yelhamer
- protobuf: add `Metadata.flavor` @williballenthin
### Breaking Changes
- remove the `SCOPE_*` constants in favor of the `Scope` enum #1764 @williballenthin
- protobuf: deprecate `RuleMetadata.scope` in favor of `RuleMetadata.scopes` @williballenthin
### New Rules (0)

View File

@@ -288,7 +288,7 @@ message RuleMetadata {
string name = 1;
string namespace = 2;
repeated string authors = 3;
Scope scope = 4;
Scope scope = 4 [deprecated = true];
repeated AttackSpec attack = 5;
repeated MBCSpec mbc = 6;
repeated string references = 7;

File diff suppressed because one or more lines are too long