From 60d2428b76efac1964e99b167f63b5e474705eb3 Mon Sep 17 00:00:00 2001 From: Dmitry Anoshin Date: Wed, 8 Feb 2023 15:21:36 -0800 Subject: [PATCH] [chore] Move an abandoned .chloggen entry to CHANGELOG.md It wasn't picked up because of the `.yml` (not `.yaml`) extension. --- .chloggen/msg_add-issue-link-deprecation.yml | 22 -------------------- CHANGELOG.md | 7 +++++++ 2 files changed, 7 insertions(+), 22 deletions(-) delete mode 100644 .chloggen/msg_add-issue-link-deprecation.yml 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 💡