Skip to content

Commit c6276ce

Browse files
committed
Bump otel versions
1 parent 4d51482 commit c6276ce

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

agent/agent-tooling/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010
compileOnly("com.google.auto.value:auto-value-annotations")
1111
annotationProcessor("com.google.auto.value:auto-value")
1212

13-
implementation("io.opentelemetry.contrib:opentelemetry-jfr-connection:1.42.0-alpha")
13+
implementation("io.opentelemetry.contrib:opentelemetry-jfr-connection")
1414
implementation("com.azure:azure-storage-blob")
1515

1616
implementation(project(":agent:agent-profiler:agent-alerting-api"))

agent/runtime-attach/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ val otelContribAlphaVersion: String by project
99
val agent: Configuration by configurations.creating
1010

1111
dependencies {
12-
implementation("io.opentelemetry.contrib:opentelemetry-runtime-attach-core:1.42.0-alpha")
12+
implementation("io.opentelemetry.contrib:opentelemetry-runtime-attach-core")
1313
agent(project(":agent:agent", configuration = "shadow"))
1414
}
1515

dependencyManagement/build.gradle.kts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ data class DependencySet(val group: String, val version: String, val modules: Li
1111
val dependencyVersions = hashMapOf<String, String>()
1212
rootProject.extra["versions"] = dependencyVersions
1313

14-
val otelSdkVersion = "1.45.0"
15-
val otelInstrumentationAlphaVersion = "2.11.0-alpha"
16-
val otelInstrumentationVersion = "2.11.0"
14+
val otelSdkVersion = "1.46.0"
15+
val otelInstrumentationAlphaVersion = "2.12.0-alpha"
16+
val otelInstrumentationVersion = "2.12.0"
17+
val otelContribVersion = "1.43.0"
1718

18-
rootProject.extra["otelSdkVersion"] = otelSdkVersion
1919
rootProject.extra["otelInstrumentationVersion"] = otelInstrumentationVersion
2020
rootProject.extra["otelInstrumentationAlphaVersion"] = otelInstrumentationAlphaVersion
2121

@@ -72,7 +72,8 @@ val DEPENDENCIES = listOf(
7272
"org.assertj:assertj-core:3.27.2",
7373
"org.awaitility:awaitility:4.2.2",
7474
"io.github.hakky54:logcaptor:2.10.1",
75-
"io.opentelemetry.contrib:opentelemetry-jfr-connection:1.42.0-alpha",
75+
"io.opentelemetry.contrib:opentelemetry-jfr-connection:${otelContribVersion}-alpha",
76+
"io.opentelemetry.contrib:opentelemetry-runtime-attach-core:${otelContribVersion}-alpha",
7677
"com.google.code.findbugs:jsr305:3.0.2",
7778
"com.github.spotbugs:spotbugs-annotations:4.8.6"
7879
)

0 commit comments

Comments
 (0)