Skip to content

Commit

Permalink
Mark connectors as stable
Browse files Browse the repository at this point in the history
  • Loading branch information
djaglowski committed Apr 17, 2023
1 parent fe508cf commit a74232e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
16 changes: 16 additions & 0 deletions .chloggen/connectors-stable.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: enhancement

# The name of the component, or a single word describing the area of concern, (e.g. otlpreceiver)
component: connector

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Mark 'service.connectors' featuregate as stable

# One or more tracking issues or pull requests related to the change
issues: [2336]

# (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:
5 changes: 3 additions & 2 deletions otelcol/internal/sharedgate/sharedgate.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import "go.opentelemetry.io/collector/featuregate"

var ConnectorsFeatureGate = featuregate.GlobalRegistry().MustRegister(
"service.connectors",
featuregate.StageBeta,
featuregate.StageStable,
featuregate.WithRegisterDescription("Enables 'connectors', a new type of component for transmitting signals between pipelines."),
featuregate.WithRegisterReferenceURL("https://github.com/open-telemetry/opentelemetry-collector/issues/2336"))
featuregate.WithRegisterReferenceURL("https://github.com/open-telemetry/opentelemetry-collector/issues/2336"),
featuregate.WithRegisterToVersion("v0.78.0"))

0 comments on commit a74232e

Please sign in to comment.