Skip to content

Commit f344b5b

Browse files
authoredOct 10, 2024··
chore: update semantic convention version v1.28.0 (#2192)
1 parent acdc400 commit f344b5b

File tree

8 files changed

+1376
-133
lines changed

8 files changed

+1376
-133
lines changed
 

‎opentelemetry-semantic-conventions/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## vNext
44

55
- Bump MSRV to 1.70 [#2179](https://github.com/open-telemetry/opentelemetry-rust/pull/2179)
6+
- Update to [v1.28.0](https://github.com/open-telemetry/semantic-conventions/releases/tag/v1.28.0) of the semantic conventions.
67

78
## v0.26.0
89
Released 2024-Sep-30

‎opentelemetry-semantic-conventions/scripts/generate-consts-from-spec.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
55
CRATE_DIR="${SCRIPT_DIR}/../"
66

77
# freeze the spec version and generator version to make generation reproducible
8-
SPEC_VERSION=1.27.0
8+
SPEC_VERSION=1.28.0
99
WEAVER_VERSION=v0.10.0
1010

1111
cd "$CRATE_DIR"

‎opentelemetry-semantic-conventions/scripts/templates/registry/rust/weaver.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ comment_formats:
1414
default_comment_format: rust
1515

1616
params:
17-
schema_url: "https://opentelemetry.io/schemas/1.27.0"
17+
schema_url: "https://opentelemetry.io/schemas/1.28.0"
1818
exclude_root_namespace: []
1919
excluded_attributes: ["messaging.client_id"]
2020

‎opentelemetry-semantic-conventions/src/attribute.rs

+655-73
Large diffs are not rendered by default.

‎opentelemetry-semantic-conventions/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ pub mod trace;
2222

2323
/// The schema URL that matches the version of the semantic conventions that
2424
/// this crate defines.
25-
pub const SCHEMA_URL: &str = "https://opentelemetry.io/schemas/1.27.0";
25+
pub const SCHEMA_URL: &str = "https://opentelemetry.io/schemas/1.28.0";

0 commit comments

Comments
 (0)
Please sign in to comment.