diff --git a/.chloggen/msg_add-issue-link-deprecation.yml b/.chloggen/msg_add-issue-link-deprecation.yml deleted file mode 100644 index ff9bc66e90c..00000000000 --- a/.chloggen/msg_add-issue-link-deprecation.yml +++ /dev/null @@ -1,22 +0,0 @@ -# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' -change_type: 'deprecation' - -# The name of the component, or a single word describing the area of concern, (e.g. otlpreceiver) -component: featuregates - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: 'Removing Gates being configurable externally to the Registry' - -# One or more tracking issues or pull requests related to the change -issues: [6167] - -# (Optional) One or more lines of additional information to render under the primary note. -# These lines will be padded with 2 spaces and then inserted directly into the document. -# Use pipe (|) for multiline entries. -subtext: | - - Deprecate `Gate.ID` in favour of `Registry.RegisterID` - - Deprecate `Gate.Enabled` in favour of `Gate.IsEnabled()` - - Deprecate `Gate.Description` in favour of `WithRegisterDescription` to be used with `Registry.RegisterID` - - Deprecate `Registry.Register` in favour of `Registry.RegisterID` - - Deprecate `Registry.MustRegister` in favour of `Registry.MustRegisterID` - diff --git a/CHANGELOG.md b/CHANGELOG.md index 967185c2d26..fb8463a208a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -418,6 +418,13 @@ and hope to make a v1.0.0 release soon. - Deprecate `GRPCClientSettings.ToDialOptions` in favor of `GRPCClientSettings.ToClientConn`. - Deprecate `GRPCServerSettings.ToServerOption` in favor of `GRPCServerSettings.ToServer`. +- `featuregates`: Removing Gates being configurable externally to the Registry (#6167) + - Deprecate `Gate.ID` in favour of `Registry.RegisterID` + - Deprecate `Gate.Enabled` in favour of `Gate.IsEnabled()` + - Deprecate `Gate.Description` in favour of `WithRegisterDescription` to be used with `Registry.RegisterID` + - Deprecate `Registry.Register` in favour of `Registry.RegisterID` + - Deprecate `Registry.MustRegister` in favour of `Registry.MustRegisterID` + ### 💡 Enhancements 💡