Skip to content

Commit f1973d4

Browse files
authored
[release/v2.27.x] Prepare release 2.27.0 (#18116)
Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
1 parent 5449673 commit f1973d4

9 files changed

Lines changed: 22 additions & 15 deletions

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changelog
22

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

512
### ⚠️ Breaking changes to non-stable APIs
613

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ If you are looking for documentation on using those.
3333
## Getting Started
3434

3535
Download
36-
the [latest version](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/latest/download/opentelemetry-javaagent.jar).
36+
the [latest version](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v2.27.0/opentelemetry-javaagent.jar).
3737

3838
This package includes the instrumentation agent as well as
3939
instrumentations for all supported libraries and all available data exporters.
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.27.0.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.27.0.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.27.0.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.27.0.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.27.0-alpha"
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.27.0",
34+
opentelemetryJavaagentAlpha: "2.27.0-alpha",
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.27.0-alpha"
19+
id("io.opentelemetry.instrumentation.muzzle-check") version "2.27.0-alpha"
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.27.0",
31+
"opentelemetryJavaagentAlpha" to "2.27.0-alpha"
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.27.0"
2+
val alphaVersion = "2.27.0-alpha"
33

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

0 commit comments

Comments
 (0)