Compare commits

...

3 Commits

Author SHA1 Message Date
Trask Stalnaker 8b91a02b87
[release/v2.17.x] Increase nexus publishing client timeout (#14076) 2025-06-20 00:07:07 +00:00
otelbot[bot] b79a813fb4
[release/v2.17.x] Use faster machine for release (#14074)
Co-authored-by: Trask Stalnaker <trask.stalnaker@gmail.com>
2025-06-19 20:52:02 +00:00
otelbot[bot] b8d25b8112
[release/v2.17.x] Prepare release 2.17.0 (#14064)
Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com>
2025-06-18 17:41:50 +00:00
12 changed files with 18 additions and 18 deletions

View File

@ -21,7 +21,7 @@ jobs:
release: release:
permissions: permissions:
contents: write # for creating the release contents: write # for creating the release
runs-on: ubuntu-latest runs-on: oracle-8cpu-32gb-x86-64
needs: needs:
- common - common
outputs: outputs:

View File

@ -1,6 +1,6 @@
# Changelog # Changelog
## Unreleased ## Version 2.17.0 (2025-06-18)
### Migration notes ### Migration notes

View File

@ -33,7 +33,7 @@ If you are looking for documentation on using those.
## Getting Started ## Getting Started
Download Download
the [latest version](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/latest/download/opentelemetry-javaagent.jar). the [latest version](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v2.17.0/opentelemetry-javaagent.jar).
This package includes the instrumentation agent as well as This package includes the instrumentation agent as well as
instrumentations for all supported libraries and all available data exporters. instrumentations for all supported libraries and all available data exporters.

View File

@ -32,7 +32,7 @@ nexusPublishing {
} }
connectTimeout.set(Duration.ofMinutes(5)) connectTimeout.set(Duration.ofMinutes(5))
clientTimeout.set(Duration.ofMinutes(5)) clientTimeout.set(Duration.ofMinutes(30))
transitionCheckOptions { transitionCheckOptions {
// We have many artifacts so Maven Central takes a long time on its compliance checks. This sets // We have many artifacts so Maven Central takes a long time on its compliance checks. This sets

View File

@ -1,2 +1,2 @@
Comparing source compatibility of opentelemetry-instrumentation-annotations-2.17.0-SNAPSHOT.jar against opentelemetry-instrumentation-annotations-2.16.0.jar Comparing source compatibility of opentelemetry-instrumentation-annotations-2.17.0.jar against opentelemetry-instrumentation-annotations-2.16.0.jar
No changes. No changes.

View File

@ -1,2 +1,2 @@
Comparing source compatibility of opentelemetry-instrumentation-api-2.17.0-SNAPSHOT.jar against opentelemetry-instrumentation-api-2.16.0.jar Comparing source compatibility of opentelemetry-instrumentation-api-2.17.0.jar against opentelemetry-instrumentation-api-2.16.0.jar
No changes. No changes.

View File

@ -1,2 +1,2 @@
Comparing source compatibility of opentelemetry-spring-boot-autoconfigure-2.17.0-SNAPSHOT.jar against opentelemetry-spring-boot-autoconfigure-2.16.0.jar Comparing source compatibility of opentelemetry-spring-boot-autoconfigure-2.17.0.jar against opentelemetry-spring-boot-autoconfigure-2.16.0.jar
No changes. No changes.

View File

@ -1,2 +1,2 @@
Comparing source compatibility of opentelemetry-spring-boot-starter-2.17.0-SNAPSHOT.jar against opentelemetry-spring-boot-starter-2.16.0.jar Comparing source compatibility of opentelemetry-spring-boot-starter-2.17.0.jar against opentelemetry-spring-boot-starter-2.16.0.jar
No changes. No changes.

View File

@ -14,7 +14,7 @@ buildscript {
dependencies { dependencies {
classpath "com.diffplug.spotless:spotless-plugin-gradle:7.0.4" classpath "com.diffplug.spotless:spotless-plugin-gradle:7.0.4"
classpath "com.gradleup.shadow:shadow-gradle-plugin:8.3.6" classpath "com.gradleup.shadow:shadow-gradle-plugin:8.3.6"
classpath "io.opentelemetry.instrumentation:gradle-plugins:2.17.0-alpha-SNAPSHOT" classpath "io.opentelemetry.instrumentation:gradle-plugins:2.17.0-alpha"
} }
} }
@ -30,8 +30,8 @@ subprojects {
opentelemetrySdk : "1.51.0", opentelemetrySdk : "1.51.0",
// these lines are managed by .github/scripts/update-version.sh // these lines are managed by .github/scripts/update-version.sh
opentelemetryJavaagent : "2.17.0-SNAPSHOT", opentelemetryJavaagent : "2.17.0",
opentelemetryJavaagentAlpha: "2.17.0-alpha-SNAPSHOT", opentelemetryJavaagentAlpha: "2.17.0-alpha",
autoservice : "1.1.1" autoservice : "1.1.1"
] ]

View File

@ -13,8 +13,8 @@ plugins {
id "com.gradleup.shadow" version "8.3.6" id "com.gradleup.shadow" version "8.3.6"
id "com.diffplug.spotless" version "7.0.4" id "com.diffplug.spotless" version "7.0.4"
id "io.opentelemetry.instrumentation.muzzle-generation" version "2.17.0-alpha-SNAPSHOT" id "io.opentelemetry.instrumentation.muzzle-generation" version "2.17.0-alpha"
id "io.opentelemetry.instrumentation.muzzle-check" version "2.17.0-alpha-SNAPSHOT" id "io.opentelemetry.instrumentation.muzzle-check" version "2.17.0-alpha"
} }
group 'io.opentelemetry.example' group 'io.opentelemetry.example'
@ -26,8 +26,8 @@ ext {
opentelemetrySdk : "1.51.0", opentelemetrySdk : "1.51.0",
// these lines are managed by .github/scripts/update-version.sh // these lines are managed by .github/scripts/update-version.sh
opentelemetryJavaagent : "2.17.0-SNAPSHOT", opentelemetryJavaagent : "2.17.0",
opentelemetryJavaagentAlpha: "2.17.0-alpha-SNAPSHOT" opentelemetryJavaagentAlpha: "2.17.0-alpha"
] ]
deps = [ deps = [

View File

@ -107,7 +107,7 @@ nexusPublishing {
} }
connectTimeout.set(Duration.ofMinutes(5)) connectTimeout.set(Duration.ofMinutes(5))
clientTimeout.set(Duration.ofMinutes(5)) clientTimeout.set(Duration.ofMinutes(30))
} }
tasks { tasks {

View File

@ -1,5 +1,5 @@
val stableVersion = "2.17.0-SNAPSHOT" val stableVersion = "2.17.0"
val alphaVersion = "2.17.0-alpha-SNAPSHOT" val alphaVersion = "2.17.0-alpha"
allprojects { allprojects {
if (findProperty("otel.stable") != "true") { if (findProperty("otel.stable") != "true") {