Skip to content

Commit f4ea230

Browse files
Merge branch 'main' into add_metric_annotation_instrument
2 parents b72ab8c + c7dd764 commit f4ea230

File tree

69 files changed

+1075
-261
lines changed

Some content is hidden

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

69 files changed

+1075
-261
lines changed

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ jobs:
6666
uses: github/codeql-action/init@96f518a34f7a870018057716cc4d7a5c014bd61c # v3.29.10
6767
with:
6868
languages: ${{ matrix.language }}
69-
# using "latest" helps to keep up with the latest Kotlin support
69+
# using "linked" helps to keep up with the linked Kotlin support
7070
# see https://github.com/github/codeql-action/issues/1555#issuecomment-1452228433
71-
tools: latest
71+
tools: linked
7272

7373
- name: Assemble
7474
if: matrix.language == 'java'

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ jobs:
189189
echo "version=$VERSION" >> $GITHUB_OUTPUT
190190
echo "prior-version=$PRIOR_VERSION" >> $GITHUB_OUTPUT
191191
192-
update-apidiff-baseline-to-released-version:
192+
post-release-updates:
193193
permissions:
194194
contents: write # for git push to PR branch
195195
runs-on: ubuntu-latest
@@ -256,8 +256,8 @@ jobs:
256256
# not using secrets.GITHUB_TOKEN since pull requests from that token do not run workflows
257257
GH_TOKEN: ${{ steps.otelbot-token.outputs.token }}
258258
run: |
259-
message="Update apidiff baseline to released version $VERSION"
260-
body="Update apidiff baseline to released version \`$VERSION\`."
259+
message="Post-release updates for $VERSION"
260+
body="Post-release updates for `$VERSION`."
261261
branch="otelbot/update-apidiff-baseline-to-released-version-${VERSION}"
262262
263263
git checkout -b $branch

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## Unreleased
44

5+
### Migration notes
6+
7+
- The configuration option used to enable traces generated by the `dropwizard-views` instrumentation has changed from `otel.instrumentation.common.experimental.controller-telemetry.enabled` to `otel.instrumentation.common.experimental.view-telemetry.enabled`
8+
([#14475](https://github.com/open-telemetry/opentelemetry-java-instrumentation/pull/14475))
9+
510
## Version 2.19.0 (2025-08-17)
611

712
### 📈 Enhancements

conventions/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ dependencies {
5959
implementation("gradle.plugin.com.google.protobuf:protobuf-gradle-plugin:0.8.18")
6060
implementation("com.gradleup.shadow:shadow-gradle-plugin:8.3.9")
6161
implementation("org.apache.httpcomponents:httpclient:4.5.14")
62-
implementation("com.gradle.develocity:com.gradle.develocity.gradle.plugin:4.1")
62+
implementation("com.gradle.develocity:com.gradle.develocity.gradle.plugin:4.1.1")
6363
implementation("org.owasp:dependency-check-gradle:12.1.3")
6464
implementation("ru.vyarus:gradle-animalsniffer-plugin:2.0.1")
6565
implementation("org.spdx:spdx-gradle-plugin:0.9.0")
@@ -68,7 +68,7 @@ dependencies {
6868
implementation("gradle.plugin.io.morethan.jmhreport:gradle-jmh-report:0.9.6")
6969
implementation("me.champeau.jmh:jmh-gradle-plugin:0.7.3")
7070
implementation("net.ltgt.gradle:gradle-errorprone-plugin:4.3.0")
71-
implementation("net.ltgt.gradle:gradle-nullaway-plugin:2.2.0")
71+
implementation("net.ltgt.gradle:gradle-nullaway-plugin:2.3.0")
7272
implementation("me.champeau.gradle:japicmp-gradle-plugin:0.4.6")
7373

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

dependencyManagement/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ val DEPENDENCIES = listOf(
8989
"com.github.stefanbirkner:system-lambda:1.2.1",
9090
"com.github.stefanbirkner:system-rules:1.19.0",
9191
"uk.org.webcompere:system-stubs-jupiter:2.0.3",
92-
"com.uber.nullaway:nullaway:0.12.8",
92+
"com.uber.nullaway:nullaway:0.12.9",
9393
"commons-beanutils:commons-beanutils:1.11.0",
9494
"commons-cli:commons-cli:1.10.0",
9595
"commons-codec:commons-codec:1.19.0",

0 commit comments

Comments
 (0)