Enable plugin hooks by default

This commit is contained in:
Abhinav Vedmala
2026-05-13 13:49:29 -07:00
parent 610b86fefb
commit b5b93c9547
2 changed files with 8 additions and 2 deletions

View File

@@ -976,8 +976,8 @@ pub const FEATURES: &[FeatureSpec] = &[
FeatureSpec {
id: Feature::PluginHooks,
key: "plugin_hooks",
stage: Stage::UnderDevelopment,
default_enabled: false,
stage: Stage::Stable,
default_enabled: true,
},
FeatureSpec {
id: Feature::InAppBrowser,

View File

@@ -183,6 +183,12 @@ fn tool_search_is_stable_and_enabled_by_default() {
assert_eq!(Feature::ToolSearch.default_enabled(), true);
}
#[test]
fn plugin_hooks_are_stable_and_enabled_by_default() {
assert_eq!(Feature::PluginHooks.stage(), Stage::Stable);
assert_eq!(Feature::PluginHooks.default_enabled(), true);
}
#[test]
fn browser_controls_are_stable_and_enabled_by_default() {
assert_eq!(Feature::InAppBrowser.stage(), Stage::Stable);