-
Notifications
You must be signed in to change notification settings - Fork 8.6k
[Security Solution] Remove rule changes history feature flags #278197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 6 commits
e1f7981
57bd806
4207363
5b2533e
838dfa9
a4b849d
fb36b49
2ea712a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -97,7 +97,6 @@ export const configSchema = schema.object({ | |
| coordinateInstallation: schema.boolean({ defaultValue: true }), | ||
| }), | ||
| ruleChangeTracking: schema.object({ | ||
| enabled: schema.boolean({ defaultValue: true }), | ||
| scope: schema.arrayOf(ruleChangeTrackingSolutions, { defaultValue: ['security'] }), | ||
|
maximpn marked this conversation as resolved.
kibanamachine marked this conversation as resolved.
|
||
| }), | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removing the The PR description already identifies this risk. The standard fix is to register an // config_deprecations.ts
unused('ruleChangeTracking.enabled', {
level: 'warning',
message: 'The setting "xpack.alerting.ruleChangeTracking.enabled" is deprecated and no longer used. Please remove it.',
}),
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good general rule, but I don't think it applies here. So there's no released Kibana version where a real deployment could have set |
||
| cancelAlertsOnRuleTimeout: schema.boolean({ defaultValue: true }), | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.