Skip to content

Commit f36be55

Browse files
authored
Update version to 2.28.0-SNAPSHOT (#18115)
Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
1 parent 0d4d2fd commit f36be55

8 files changed

Lines changed: 22 additions & 13 deletions

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## Unreleased
44

5+
## Version 2.27.0 (2026-04-21)
6+
7+
This release targets the OpenTelemetry SDK 1.61.0.
8+
9+
Note that many artifacts have the `-alpha` suffix attached to their version
10+
number, reflecting that they will continue to have breaking changes. Please see
11+
[VERSIONING.md](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/VERSIONING.md#opentelemetry-java-instrumentation-versioning)
12+
for more details.
13+
514
### ⚠️ Breaking changes to non-stable APIs
615

716
- Make `AbstractKtorServerTelemetryBuilder.isOpenTelemetryInitialized()` protected (previously
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Comparing source compatibility of opentelemetry-instrumentation-annotations-2.27.0-SNAPSHOT.jar against opentelemetry-instrumentation-annotations-2.26.1.jar
1+
Comparing source compatibility of opentelemetry-instrumentation-annotations-2.28.0-SNAPSHOT.jar against opentelemetry-instrumentation-annotations-2.26.1.jar
22
No changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Comparing source compatibility of opentelemetry-instrumentation-api-2.27.0-SNAPSHOT.jar against opentelemetry-instrumentation-api-2.26.1.jar
1+
Comparing source compatibility of opentelemetry-instrumentation-api-2.28.0-SNAPSHOT.jar against opentelemetry-instrumentation-api-2.26.1.jar
22
No changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Comparing source compatibility of opentelemetry-spring-boot-autoconfigure-2.27.0-SNAPSHOT.jar against opentelemetry-spring-boot-autoconfigure-2.26.1.jar
1+
Comparing source compatibility of opentelemetry-spring-boot-autoconfigure-2.28.0-SNAPSHOT.jar against opentelemetry-spring-boot-autoconfigure-2.26.1.jar
22
No changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Comparing source compatibility of opentelemetry-spring-boot-starter-2.27.0-SNAPSHOT.jar against opentelemetry-spring-boot-starter-2.26.1.jar
1+
Comparing source compatibility of opentelemetry-spring-boot-starter-2.28.0-SNAPSHOT.jar against opentelemetry-spring-boot-starter-2.26.1.jar
22
No changes.

examples/distro/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ buildscript {
1414
dependencies {
1515
classpath "com.diffplug.spotless:spotless-plugin-gradle:8.4.0"
1616
classpath "com.gradleup.shadow:shadow-gradle-plugin:9.4.1"
17-
classpath "io.opentelemetry.instrumentation:gradle-plugins:2.27.0-alpha-SNAPSHOT"
17+
classpath "io.opentelemetry.instrumentation:gradle-plugins:2.28.0-alpha-SNAPSHOT"
1818
}
1919
}
2020

@@ -30,8 +30,8 @@ subprojects {
3030
opentelemetrySdk : "1.61.0",
3131

3232
// these lines are managed by .github/scripts/update-version.sh
33-
opentelemetryJavaagent : "2.27.0-SNAPSHOT",
34-
opentelemetryJavaagentAlpha: "2.27.0-alpha-SNAPSHOT",
33+
opentelemetryJavaagent : "2.28.0-SNAPSHOT",
34+
opentelemetryJavaagentAlpha: "2.28.0-alpha-SNAPSHOT",
3535

3636
autoservice : "1.1.1"
3737
]

examples/extension/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ plugins {
1515
id("com.gradleup.shadow") version "9.4.1"
1616
id("com.diffplug.spotless") version "8.4.0"
1717

18-
id("io.opentelemetry.instrumentation.muzzle-generation") version "2.27.0-alpha-SNAPSHOT"
19-
id("io.opentelemetry.instrumentation.muzzle-check") version "2.27.0-alpha-SNAPSHOT"
18+
id("io.opentelemetry.instrumentation.muzzle-generation") version "2.28.0-alpha-SNAPSHOT"
19+
id("io.opentelemetry.instrumentation.muzzle-check") version "2.28.0-alpha-SNAPSHOT"
2020
}
2121

2222
group = "io.opentelemetry.example"
@@ -27,8 +27,8 @@ val versions = mapOf(
2727
"opentelemetrySdk" to "1.61.0",
2828

2929
// these lines are managed by .github/scripts/update-version.sh
30-
"opentelemetryJavaagent" to "2.27.0-SNAPSHOT",
31-
"opentelemetryJavaagentAlpha" to "2.27.0-alpha-SNAPSHOT"
30+
"opentelemetryJavaagent" to "2.28.0-SNAPSHOT",
31+
"opentelemetryJavaagentAlpha" to "2.28.0-alpha-SNAPSHOT"
3232
)
3333

3434
val deps = mapOf(

version.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
val stableVersion = "2.27.0-SNAPSHOT"
2-
val alphaVersion = "2.27.0-alpha-SNAPSHOT"
1+
val stableVersion = "2.28.0-SNAPSHOT"
2+
val alphaVersion = "2.28.0-alpha-SNAPSHOT"
33

44
allprojects {
55
if (findProperty("otel.stable") != "true") {

0 commit comments

Comments
 (0)