Skip to content

Commit 774ee40

Browse files
renovate[bot]otelbot[bot]laurit
authored
fix(deps): update jackson packages to v2.20.0 (minor) (#14545)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: otelbot <[email protected]> Co-authored-by: Lauri Tulmin <[email protected]>
1 parent 0b0c59c commit 774ee40

File tree

16 files changed

+31
-18
lines changed

16 files changed

+31
-18
lines changed

dependencyManagement/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ val DEPENDENCY_BOMS = listOf(
2727
// for some reason boms show up as runtime dependencies in license and vulnerability scans
2828
// even if they are only used by test dependencies, so not using junit bom since it is LGPL
2929

30-
"com.fasterxml.jackson:jackson-bom:2.19.2",
30+
"com.fasterxml.jackson:jackson-bom:2.20.0",
3131
"com.google.guava:guava-bom:33.4.8-jre",
3232
"org.apache.groovy:groovy-bom:${groovyVersion}",
3333
"io.opentelemetry:opentelemetry-bom:${otelSdkVersion}",

examples/distro/smoke-tests/build.gradle

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

55
dependencies {
66
testImplementation("org.testcontainers:testcontainers:1.21.3")
7-
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.19.2")
7+
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.20.0")
88
testImplementation("com.google.protobuf:protobuf-java-util:4.32.0")
99
testImplementation("com.squareup.okhttp3:okhttp:5.1.0")
1010
testImplementation("io.opentelemetry.proto:opentelemetry-proto:1.7.0-alpha")

examples/extension/build.gradle

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

100100
//All dependencies below are only for tests
101101
testImplementation("org.testcontainers:testcontainers:1.21.3")
102-
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.19.2")
102+
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.20.0")
103103
testImplementation("com.google.protobuf:protobuf-java-util:4.32.0")
104104
testImplementation("com.squareup.okhttp3:okhttp:5.1.0")
105105
testImplementation("io.opentelemetry:opentelemetry-api")

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.4")
12-
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.19.2")
12+
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.20.0")
1313
implementation("io.opentelemetry:opentelemetry-sdk-common")
1414

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

instrumentation/finatra-2.9/javaagent/build.gradle.kts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,16 @@ tasks {
8989
systemProperty("collectMetadata", findProperty("collectMetadata")?.toString() ?: "false")
9090
}
9191
}
92+
93+
if (findProperty("testLatestDeps") as Boolean) {
94+
configurations.named("latestDepTestRuntimeClasspath") {
95+
resolutionStrategy {
96+
eachDependency {
97+
// finatra 24.2.0 doesn't work with jackson 2.20.0
98+
if (requested.group.startsWith("com.fasterxml.jackson")) {
99+
useVersion("2.19.2")
100+
}
101+
}
102+
}
103+
}
104+
}

0 commit comments

Comments
 (0)