Skip to content

Commit fa63c0c

Browse files
authored
Bump service.connectors featuregate to beta (#7369)
1 parent 042b876 commit fa63c0c

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.chloggen/connectors-beta.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
2+
change_type: enhancement
3+
4+
# The name of the component, or a single word describing the area of concern, (e.g. otlpreceiver)
5+
component: service
6+
7+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
8+
note: Enable connectors by default by moving service.connectors featuregate to beta
9+
10+
# One or more tracking issues or pull requests related to the change
11+
issues: [7369]
12+
13+
# (Optional) One or more lines of additional information to render under the primary note.
14+
# These lines will be padded with 2 spaces and then inserted directly into the document.
15+
# Use pipe (|) for multiline entries.
16+
subtext:

otelcol/internal/sharedgate/sharedgate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ import "go.opentelemetry.io/collector/featuregate"
1919

2020
var ConnectorsFeatureGate = featuregate.GlobalRegistry().MustRegister(
2121
"service.connectors",
22-
featuregate.StageAlpha,
22+
featuregate.StageBeta,
2323
featuregate.WithRegisterDescription("Enables 'connectors', a new type of component for transmitting signals between pipelines."),
2424
featuregate.WithRegisterReferenceURL("https://github.com/open-telemetry/opentelemetry-collector/issues/2336"))

0 commit comments

Comments
 (0)