Skip to content

Commit c79cfd7

Browse files
committed
Merge branch 'main' into large-sql
2 parents 8100515 + 6dccc64 commit c79cfd7

File tree

11 files changed

+18
-11
lines changed

11 files changed

+18
-11
lines changed

benchmark-overhead-jmh/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ otelJava {
1313
}
1414

1515
dependencies {
16-
jmhImplementation("org.springframework.boot:spring-boot-starter-web:3.4.2")
16+
jmhImplementation("org.springframework.boot:spring-boot-starter-web:3.4.3")
1717
}
1818

1919
tasks {

benchmark-overhead/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ repositories {
1818
dependencies {
1919
implementation(enforcedPlatform("org.junit:junit-bom:5.11.4"))
2020

21-
testImplementation("org.testcontainers:testcontainers:1.20.4")
22-
testImplementation("org.testcontainers:postgresql:1.20.4")
21+
testImplementation("org.testcontainers:testcontainers:1.20.5")
22+
testImplementation("org.testcontainers:postgresql:1.20.5")
2323
testImplementation("org.junit.jupiter:junit-jupiter-api")
2424
testImplementation("org.junit.jupiter:junit-jupiter-params")
2525
testImplementation("com.squareup.okhttp3:okhttp:4.12.0")

conventions/src/main/kotlin/otel.java-conventions.gradle.kts

-1
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,6 @@ dependencyCheck {
439439
suppressionFile = "buildscripts/dependency-check-suppressions.xml"
440440
failBuildOnCVSS = 7.0f // fail on high or critical CVE
441441
nvd.apiKey = System.getenv("NVD_API_KEY")
442-
nvd.delay = 3500 // until next dependency check release (https://github.com/jeremylong/DependencyCheck/pull/6333)
443442
}
444443

445444
idea {

dependencyManagement/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ val DEPENDENCY_BOMS = listOf(
3333
"org.apache.groovy:groovy-bom:${groovyVersion}",
3434
"io.opentelemetry:opentelemetry-bom:${otelSdkVersion}",
3535
"io.opentelemetry:opentelemetry-bom-alpha:${otelSdkAlphaVersion}",
36-
"org.testcontainers:testcontainers-bom:1.20.4"
36+
"org.testcontainers:testcontainers-bom:1.20.5"
3737
)
3838

3939
val autoServiceVersion = "1.1.1"
@@ -44,7 +44,7 @@ val asmVersion = "9.7.1"
4444
val jmhVersion = "1.37"
4545
val mockitoVersion = "4.11.0"
4646
val slf4jVersion = "2.0.16"
47-
val semConvVersion = "1.30.0-rc.1"
47+
val semConvVersion = "1.30.0"
4848
val semConvAlphaVersion = semConvVersion.replaceFirst("(-rc.*)?$".toRegex(), "-alpha$1")
4949

5050
val CORE_DEPENDENCIES = listOf(

examples/distro/smoke-tests/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
dependencies {
6-
testImplementation("org.testcontainers:testcontainers:1.20.4")
6+
testImplementation("org.testcontainers:testcontainers:1.20.5")
77
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.18.2")
88
testImplementation("com.google.protobuf:protobuf-java-util:4.29.3")
99
testImplementation("com.squareup.okhttp3:okhttp:4.12.0")

examples/extension/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ dependencies {
9999
implementation 'org.apache.commons:commons-lang3:3.17.0'
100100

101101
//All dependencies below are only for tests
102-
testImplementation("org.testcontainers:testcontainers:1.20.4")
102+
testImplementation("org.testcontainers:testcontainers:1.20.5")
103103
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.18.2")
104104
testImplementation("com.google.protobuf:protobuf-java-util:4.29.3")
105105
testImplementation("com.squareup.okhttp3:okhttp:4.12.0")

javaagent-tooling/src/main/java/io/opentelemetry/javaagent/tooling/config/ConfigurationFile.java

+5
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ static Map<String, String> getProperties() {
3939
return configFileContents;
4040
}
4141

42+
// visible for tests
43+
static void resetForTest() {
44+
configFileContents = null;
45+
}
46+
4247
// visible for tests
4348
static Map<String, String> loadConfigFile() {
4449
// Reading from system property first and from env after

javaagent-tooling/src/main/java/io/opentelemetry/javaagent/tooling/ignore/AdditionalLibraryIgnoredTypesConfigurer.java

+2
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@ public void configure(IgnoredTypesBuilder builder) {
106106
.allowClass("org.springframework.boot.web.servlet.")
107107
.allowClass("org.springframework.boot.web.embedded.netty.GracefulShutdown$$Lambda")
108108
.allowClass("org.springframework.boot.web.embedded.tomcat.GracefulShutdown$$Lambda")
109+
.allowClass(
110+
"org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory$$Lambda")
109111
.allowClass(
110112
"org.springframework.boot.actuate.metrics.web.reactive.server.MetricsWebFilter$$Lambda")
111113
.allowClass("org.springframework.boot.autoconfigure.BackgroundPreinitializer$")

javaagent-tooling/src/test/java/io/opentelemetry/javaagent/tooling/config/ConfigurationPropertiesSupplierTest.java

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ class ConfigurationPropertiesSupplierTest {
3232
@AfterAll
3333
static void cleanUp() {
3434
GlobalOpenTelemetry.resetForTest();
35+
ConfigurationFile.resetForTest();
3536
}
3637

3738
// regression for https://github.com/open-telemetry/opentelemetry-java-instrumentation/issues/6696

licenses/licenses.md

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test-report/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44

55
dependencies {
66
implementation("com.google.api-client:google-api-client:2.7.2")
7-
implementation("com.google.apis:google-api-services-sheets:v4-rev20250106-2.0.0")
7+
implementation("com.google.apis:google-api-services-sheets:v4-rev20250211-2.0.0")
88
implementation("com.google.auth:google-auth-library-oauth2-http:1.32.1")
99
}
1010

0 commit comments

Comments
 (0)