Skip to content

semconv: mark the package as deprecated #13012

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .chloggen/codeboten_mark-semconv-deprecated.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Use this changelog template to create an entry for release notes.

# 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: semconv

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Deprecating the semconv package in favour of go.opentelemetry.io/otel/semconv

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

# (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:

# Optional: The change log or logs in which this entry should be included.
# e.g. '[user]' or '[user, api]'
# Include 'user' if the change is relevant to end users.
# Include 'api' if there is a change to a library API.
# Default: '[user]'
change_logs: []
2 changes: 2 additions & 0 deletions semconv/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Semantic Convention Constants

> :warning: This package has been deprecated, use `go.opentelemetry.io/otel/semconv` instead.

This package contains constants representing the OpenTelemetry semantic conventions. They are automatically generated
from definitions in the specification.

Expand Down
1 change: 1 addition & 0 deletions semconv/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Deprecated: [v0.126.0] This package has been deprecated, use go.opentelemetry.io/otel/semconv instead.
module go.opentelemetry.io/collector/semconv

go 1.23.0
Expand Down
2 changes: 2 additions & 0 deletions semconv/v1.21.0/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@
// OpenTelemetry semantic conventions are agreed standardized naming
// patterns for OpenTelemetry things. This package represents the v1.21.0
// version of the OpenTelemetry semantic conventions.
//
// Deprecated: [v0.126.0] This package has been deprecated, use go.opentelemetry.io/otel/semconv instead.
package semconv // import "go.opentelemetry.io/collector/semconv/v1.21.0"
2 changes: 2 additions & 0 deletions semconv/v1.22.0/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@
// OpenTelemetry semantic conventions are agreed standardized naming
// patterns for OpenTelemetry things. This package represents the v1.22.0
// version of the OpenTelemetry semantic conventions.
//
// Deprecated: [v0.126.0] This package has been deprecated, use go.opentelemetry.io/otel/semconv instead.
package semconv // import "go.opentelemetry.io/collector/semconv/v1.22.0"
2 changes: 2 additions & 0 deletions semconv/v1.25.0/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@
// OpenTelemetry semantic conventions are agreed standardized naming
// patterns for OpenTelemetry things. This package represents the v1.25.0
// version of the OpenTelemetry semantic conventions.
//
// Deprecated: [v0.126.0] This package has been deprecated, use go.opentelemetry.io/otel/semconv instead.
package semconv // import "go.opentelemetry.io/collector/semconv/v1.25.0"
2 changes: 2 additions & 0 deletions semconv/v1.26.0/doc.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0

// Deprecated: [v0.126.0] This package has been deprecated, use go.opentelemetry.io/otel/semconv instead.
//
// Package semconv implements OpenTelemetry semantic conventions.
//
// OpenTelemetry semantic conventions are agreed standardized naming
Expand Down
2 changes: 2 additions & 0 deletions semconv/v1.27.0/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@
// OpenTelemetry semantic conventions are agreed standardized naming
// patterns for OpenTelemetry things. This package represents the v1.27.0
// version of the OpenTelemetry semantic conventions.
//
// Deprecated: [v0.126.0] This package has been deprecated, use go.opentelemetry.io/otel/semconv instead.
package semconv // import "go.opentelemetry.io/collector/semconv/v1.27.0"
Loading