diff --git a/CHANGELOG.md b/CHANGELOG.md index fe739dc..1b83656 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## Unreleased +* Bump to semconv v1.41.1 + ([#475](https://github.com/open-telemetry/semantic-conventions-java/pull/475)) + ## Version 1.41.0 (2026-04-30) * Bump to semconv v1.41.0 diff --git a/build.gradle.kts b/build.gradle.kts index 68c7e3f..5dd5c30 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,9 +11,10 @@ val snapshot = true // end // The release version of https://github.com/open-telemetry/semantic-conventions used to generate classes -var semanticConventionsVersion = "1.41.0" +var semanticConventionsVersion = "1.41.1" val schemaUrlVersions = listOf( semanticConventionsVersion, + "1.41.0", "1.40.0", "1.39.0", "1.38.0", diff --git a/docs/apidiffs/current_vs_latest/opentelemetry-semconv.txt b/docs/apidiffs/current_vs_latest/opentelemetry-semconv.txt index 10bddcb..2512c2e 100644 --- a/docs/apidiffs/current_vs_latest/opentelemetry-semconv.txt +++ b/docs/apidiffs/current_vs_latest/opentelemetry-semconv.txt @@ -1,2 +1,4 @@ -Comparing source compatibility of opentelemetry-semconv-1.41.0-SNAPSHOT.jar against opentelemetry-semconv-1.41.0.jar -No changes. \ No newline at end of file +Comparing source compatibility of opentelemetry-semconv-1.41.1-SNAPSHOT.jar against opentelemetry-semconv-1.41.0.jar +*** MODIFIED CLASS: PUBLIC FINAL io.opentelemetry.semconv.SchemaUrls (not serializable) + === CLASS FILE FORMAT VERSION: 52.0 <- 52.0 + +++ NEW FIELD: PUBLIC(+) STATIC(+) FINAL(+) java.lang.String V1_41_1 diff --git a/semconv/src/main/java/io/opentelemetry/semconv/SchemaUrls.java b/semconv/src/main/java/io/opentelemetry/semconv/SchemaUrls.java index 9e28884..aabf65b 100644 --- a/semconv/src/main/java/io/opentelemetry/semconv/SchemaUrls.java +++ b/semconv/src/main/java/io/opentelemetry/semconv/SchemaUrls.java @@ -6,6 +6,7 @@ package io.opentelemetry.semconv; public final class SchemaUrls { + public static final String V1_41_1 = "https://opentelemetry.io/schemas/1.41.1"; public static final String V1_41_0 = "https://opentelemetry.io/schemas/1.41.0"; public static final String V1_40_0 = "https://opentelemetry.io/schemas/1.40.0"; public static final String V1_39_0 = "https://opentelemetry.io/schemas/1.39.0";