Skip to content

Commit c18a030

Browse files
Upgrade OTel dependencies to v1.16.0 (#194)
* Ignore class files * Update deps * Update licenses * Add newline
1 parent a759f7a commit c18a030

File tree

143 files changed

+1553
-1551
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+1553
-1551
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,5 @@ dataSources
4141

4242
# JIRA plugin
4343
atlassian-ide-plugin.xml
44+
45+
*.class

dependencyManagement/build.gradle.kts

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -27,24 +27,24 @@ data class DependencySet(val group: String, val version: String, val modules: Li
2727
val TEST_SNAPSHOTS = rootProject.findProperty("testUpstreamSnapshots") == "true"
2828

2929
// This is the only version that affects the released artifact.
30-
val otelVersion = "1.15.0"
31-
val otelSnapshotVersion = "1.16.0"
30+
val otelVersion = "1.16.0"
31+
val otelSnapshotVersion = "1.17.0"
3232

3333
// All versions below are only used in testing and do not affect the released artifact.
3434

3535
val DEPENDENCY_BOMS = listOf(
36-
"com.amazonaws:aws-java-sdk-bom:1.12.243",
36+
"com.amazonaws:aws-java-sdk-bom:1.12.269",
3737
"com.fasterxml.jackson:jackson-bom:2.13.3",
3838
"com.google.guava:guava-bom:31.1-jre",
39-
"com.google.protobuf:protobuf-bom:3.21.1",
40-
"com.linecorp.armeria:armeria-bom:1.16.0",
41-
"io.grpc:grpc-bom:1.47.0",
39+
"com.google.protobuf:protobuf-bom:3.21.4",
40+
"com.linecorp.armeria:armeria-bom:1.17.1",
41+
"io.grpc:grpc-bom:1.48.0",
4242
"io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:${if (!TEST_SNAPSHOTS) "$otelVersion-alpha" else "$otelSnapshotVersion-alpha-SNAPSHOT"}",
43-
"org.apache.logging.log4j:log4j-bom:2.17.2",
44-
"org.junit:junit-bom:5.8.2",
45-
"org.springframework.boot:spring-boot-dependencies:2.7.0",
46-
"org.testcontainers:testcontainers-bom:1.17.2",
47-
"software.amazon.awssdk:bom:2.17.214"
43+
"org.apache.logging.log4j:log4j-bom:2.18.0",
44+
"org.junit:junit-bom:5.9.0",
45+
"org.springframework.boot:spring-boot-dependencies:2.7.2",
46+
"org.testcontainers:testcontainers-bom:1.17.3",
47+
"software.amazon.awssdk:bom:2.17.240"
4848
)
4949

5050
val DEPENDENCY_SETS = listOf(
@@ -70,12 +70,12 @@ val DEPENDENCY_SETS = listOf(
7070

7171
val DEPENDENCIES = listOf(
7272
"commons-logging:commons-logging:1.2",
73-
"com.sparkjava:spark-core:2.9.3",
73+
"com.sparkjava:spark-core:2.9.4",
7474
"com.squareup.okhttp3:okhttp:4.10.0",
75-
"io.opentelemetry.contrib:opentelemetry-aws-xray:1.15.0",
75+
"io.opentelemetry.contrib:opentelemetry-aws-xray:1.16.0",
7676
"io.opentelemetry.proto:opentelemetry-proto:0.17.0-alpha",
7777
"io.opentelemetry.javaagent:opentelemetry-javaagent:${if (!TEST_SNAPSHOTS) otelVersion else "$otelSnapshotVersion-SNAPSHOT"}",
78-
"net.bytebuddy:byte-buddy:1.12.10"
78+
"net.bytebuddy:byte-buddy:1.12.12"
7979
)
8080

8181
javaPlatform {

0 commit comments

Comments
 (0)