Skip to content

Commit aceaf72

Browse files
authored
Merge branch 'main' into gather-more-spans
2 parents 18cd716 + f26e401 commit aceaf72

File tree

18 files changed

+200
-22
lines changed

18 files changed

+200
-22
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
release:
2222
permissions:
2323
contents: write # for creating the release
24-
runs-on: oracle-8cpu-32gb-x86-64
24+
runs-on: ubuntu-latest
2525
needs:
2626
- common
2727
outputs:

.github/workflows/reusable-markdown-link-check.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,7 @@ jobs:
1414

1515
- uses: lycheeverse/lychee-action@82202e5e9c2f4ef1a55a3d02563e1cb6041e5332 # v2.4.1
1616
with:
17-
# excluding links to pull requests and issues is done for performance
18-
# stackexchange link fails with 403 when accessed by lychee
1917
args: >
20-
--include-fragments
21-
--exclude "^https://github.com/open-telemetry/opentelemetry-java-instrumentation/(issues|pull)/\\d+$"
22-
--exclude "^http://code.google.com/p/concurrentlinkedhashmap$"
23-
--exclude "^https://softwareengineering.stackexchange.com/questions/29727"
24-
--max-retries 6
25-
--max-concurrency 4
18+
--config ./lychee.toml
2619
--github-token ${{ github.token }}
2720
.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ hs_err_pid*
5858
replay_pid*
5959
.attach_pid*
6060
.telemetry*
61+
.lycheecache
6162

6263
!java-agent/benchmark/releases/*.jar
6364

CHANGELOG.md

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

33
## Unreleased
44

5-
## Version 2.17.0 (2025-06-18)
5+
## Version 2.17.0 (2025-06-20)
66

77
### Migration notes
88

benchmark-overhead-jmh/build.gradle.kts

Lines changed: 1 addition & 1 deletion
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.5.1")
16+
jmhImplementation("org.springframework.boot:spring-boot-starter-web:3.5.3")
1717
}
1818

1919
tasks {
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Comparing source compatibility of opentelemetry-instrumentation-annotations-2.17.0.jar against opentelemetry-instrumentation-annotations-2.16.0.jar
2+
No changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Comparing source compatibility of opentelemetry-instrumentation-api-2.17.0.jar against opentelemetry-instrumentation-api-2.16.0.jar
2+
No changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Comparing source compatibility of opentelemetry-spring-boot-autoconfigure-2.17.0.jar against opentelemetry-spring-boot-autoconfigure-2.16.0.jar
2+
No changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Comparing source compatibility of opentelemetry-spring-boot-starter-2.17.0.jar against opentelemetry-spring-boot-starter-2.16.0.jar
2+
No changes.

instrumentation/aws-sdk/aws-sdk-1.11/library/build.gradle.kts

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ dependencies {
2323
latestDepTestLibrary("com.amazonaws:aws-java-sdk-sqs:1.12.583") // documented limitation
2424
}
2525

26-
if (!(findProperty("testLatestDeps") as Boolean)) {
26+
val testLatestDeps = findProperty("testLatestDeps") as Boolean
27+
if (!testLatestDeps) {
2728
configurations.testRuntimeClasspath {
2829
resolutionStrategy {
2930
eachDependency {
@@ -36,12 +37,26 @@ if (!(findProperty("testLatestDeps") as Boolean)) {
3637
}
3738
}
3839

40+
testing {
41+
suites {
42+
val testSecretsManager by registering(JvmTestSuite::class) {
43+
dependencies {
44+
implementation(project())
45+
implementation(project(":instrumentation:aws-sdk:aws-sdk-1.11:testing"))
46+
version = if (testLatestDeps) "latest.release" else "1.12.80"
47+
implementation("com.amazonaws:aws-java-sdk-secretsmanager:$version")
48+
}
49+
}
50+
}
51+
}
52+
3953
tasks {
4054
val testStableSemconv by registering(Test::class) {
4155
jvmArgs("-Dotel.semconv-stability.opt-in=database")
4256
}
4357

4458
check {
59+
dependsOn(testing.suites)
4560
dependsOn(testStableSemconv)
4661
}
4762
}

0 commit comments

Comments
 (0)