Skip to content

Commit b743787

Browse files
committed
Merge branch 'main' of github.com:open-telemetry/opentelemetry-java-instrumentation into indy-other
2 parents d9c04c3 + 32cf452 commit b743787

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

benchmark-overhead/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dependencies {
2323
testImplementation("org.testcontainers:testcontainers-postgresql")
2424
testImplementation("org.junit.jupiter:junit-jupiter-api")
2525
testImplementation("org.junit.jupiter:junit-jupiter-params")
26-
testImplementation("com.squareup.okhttp3:okhttp:5.2.1")
26+
testImplementation("com.squareup.okhttp3:okhttp:5.3.0")
2727
testImplementation("org.jooq:joox:2.0.1")
2828
testImplementation("com.jayway.jsonpath:json-path:2.9.0")
2929
testImplementation("org.slf4j:slf4j-simple:2.0.17")

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ plugins {
2222

2323
buildscript {
2424
dependencies {
25-
classpath("com.squareup.okhttp3:okhttp:5.2.1")
25+
classpath("com.squareup.okhttp3:okhttp:5.3.0")
2626
}
2727
}
2828

examples/distro/instrumentation/servlet-3/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies {
2727
exclude group: 'org.eclipse.jetty', module: 'jetty-server'
2828
}
2929

30-
testImplementation "com.squareup.okhttp3:okhttp:5.2.1"
30+
testImplementation "com.squareup.okhttp3:okhttp:5.3.0"
3131
testImplementation "javax.servlet:javax.servlet-api:3.0.1"
3232
testImplementation "org.eclipse.jetty:jetty-server:8.2.0.v20160908"
3333
testImplementation "org.eclipse.jetty:jetty-servlet:8.2.0.v20160908"

examples/distro/smoke-tests/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dependencies {
66
testImplementation("org.testcontainers:testcontainers:2.0.1")
77
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.20.0")
88
testImplementation("com.google.protobuf:protobuf-java-util:4.33.0")
9-
testImplementation("com.squareup.okhttp3:okhttp:5.2.1")
9+
testImplementation("com.squareup.okhttp3:okhttp:5.3.0")
1010
testImplementation("io.opentelemetry.proto:opentelemetry-proto:1.8.0-alpha")
1111
testImplementation("io.opentelemetry:opentelemetry-api")
1212

examples/extension/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ dependencies {
101101
testImplementation("org.testcontainers:testcontainers:2.0.1")
102102
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.20.0")
103103
testImplementation("com.google.protobuf:protobuf-java-util:4.33.0")
104-
testImplementation("com.squareup.okhttp3:okhttp:5.2.1")
104+
testImplementation("com.squareup.okhttp3:okhttp:5.3.0")
105105
testImplementation("io.opentelemetry:opentelemetry-api")
106106
testImplementation("io.opentelemetry.proto:opentelemetry-proto:1.8.0-alpha")
107107

instrumentation-docs/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ otelJava {
99

1010
dependencies {
1111
implementation("org.yaml:snakeyaml:2.5")
12-
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.20.0")
12+
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.20.1")
1313
implementation("io.opentelemetry:opentelemetry-sdk-common")
1414

1515
testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.0"))

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ plugins {
2121
// in particular, these commands are failing (reproducible locally):
2222
// ./gradlew :smoke-tests:images:servlet:buildLinuxTestImages pushMatrix -PsmokeTestServer=jetty
2323
// ./gradlew :smoke-tests:images:servlet:buildWindowsTestImages pushMatrix -PsmokeTestServer=jetty
24-
id("com.bmuschko.docker-remote-api") version "9.4.0" apply false
24+
id("com.bmuschko.docker-remote-api") version "10.0.0" apply false
2525
id("com.gradle.develocity") version "4.2.2"
2626
}
2727

testing/dependencies-shaded-for-testing/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies {
1111
implementation("io.opentelemetry.proto:opentelemetry-proto")
1212
implementation("com.google.protobuf:protobuf-java-util:4.33.0")
1313
implementation("com.github.tomakehurst:wiremock-jre8:2.35.2")
14-
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.20.0")
14+
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.20.1")
1515
// we'll replace caffeine shaded in armeria with a later version that doesn't use Unsafe. Caffeine
1616
// 3+ doesn't work with Java 8, but that is fine since --sun-misc-unsafe-memory-access=deny
1717
// requires Java 23.

0 commit comments

Comments
 (0)