Skip to content

Commit cfcfeff

Browse files
committed
Merge branch 'main' into feature/helidon
2 parents f310771 + 404a2c9 commit cfcfeff

File tree

33 files changed

+390
-183
lines changed

33 files changed

+390
-183
lines changed
File renamed without changes.

.github/scripts/dependencies.dockerfile

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/scripts/link-check.sh

Lines changed: 0 additions & 35 deletions
This file was deleted.

.github/workflows/issue-management-stale-action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ jobs:
4747
exempt-issue-labels: "needs author feedback"
4848
days-before-pr-stale: -1
4949
days-before-pr-close: -1
50-
days-before-stale: 365
51-
days-before-close: 0
52-
close-issue-label: stale
50+
days-before-issue-stale: 365
51+
days-before-issue-close: 0
52+
stale-issue-label: stale
5353
close-issue-message: >
5454
Since there has been no activity on this enhancement for the past year we are closing it to help maintain our backlog.
5555
Anyone who would like to work on it is still welcome to do so, and we can re-open it at that time.

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

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,18 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
14+
with:
15+
fetch-depth: 0 # needed for merge-base used in lint:links-in-modified-files
1416

15-
- name: Link check
17+
- uses: jdx/mise-action@e3d7b8d67a7958d1207f6ed871e83b1ea780e7b0 # v3.3.1
18+
19+
- name: Link check - relative links (all files)
20+
if: github.event_name == 'pull_request'
21+
env:
22+
GITHUB_TOKEN: ${{ github.token }}
23+
run: mise run lint:local-links
24+
25+
- name: Link check (modified files only)
1626
env:
1727
GITHUB_TOKEN: ${{ github.token }}
18-
run: ./.github/scripts/link-check.sh
28+
run: mise run lint:links-in-modified-files --base origin/${{ github.base_ref }} --head ${{ github.event.pull_request.head.sha }} --event ${{ github.event_name }}

benchmark-overhead/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies {
2222
testImplementation("org.testcontainers:postgresql:1.21.3")
2323
testImplementation("org.junit.jupiter:junit-jupiter-api")
2424
testImplementation("org.junit.jupiter:junit-jupiter-params")
25-
testImplementation("com.squareup.okhttp3:okhttp:5.1.0")
25+
testImplementation("com.squareup.okhttp3:okhttp:5.2.0")
2626
testImplementation("org.jooq:joox:2.0.1")
2727
testImplementation("com.jayway.jsonpath:json-path:2.9.0")
2828
testImplementation("org.slf4j:slf4j-simple:2.0.17")

build.gradle.kts

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

2323
buildscript {
2424
dependencies {
25-
classpath("com.squareup.okhttp3:okhttp:5.1.0")
25+
classpath("com.squareup.okhttp3:okhttp:5.2.0")
2626
}
2727
}
2828

dependencyManagement/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ val DEPENDENCIES = listOf(
116116
"com.google.code.findbugs:jsr305:3.0.2",
117117
"org.apache.groovy:groovy:${groovyVersion}",
118118
"org.apache.groovy:groovy-json:${groovyVersion}",
119-
"org.codehaus.mojo:animal-sniffer-annotations:1.24",
119+
"org.codehaus.mojo:animal-sniffer-annotations:1.26",
120120
"org.junit-pioneer:junit-pioneer:1.9.1",
121121
"org.objenesis:objenesis:3.4",
122122
"javax.validation:validation-api:2.0.1.Final",

docs/instrumentation-list.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3361,7 +3361,11 @@ libraries:
33613361
- when: otel.instrumentation.common.experimental.controller-telemetry.enabled=true
33623362
spans:
33633363
- span_kind: INTERNAL
3364-
attributes: []
3364+
attributes:
3365+
- name: code.function
3366+
type: STRING
3367+
- name: code.namespace
3368+
type: STRING
33653369
graphql:
33663370
- name: graphql-java-12.0
33673371
description: This instrumentation enables spans for GraphQL Java operations.

examples/distro/instrumentation/servlet-3/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies {
2727
exclude group: 'org.eclipse.jetty', module: 'jetty-server'
2828
}
2929

30-
testImplementation "com.squareup.okhttp3:okhttp:5.1.0"
30+
testImplementation "com.squareup.okhttp3:okhttp:5.2.0"
3131
testImplementation "javax.servlet:javax.servlet-api:3.0.1"
3232
testImplementation "org.eclipse.jetty:jetty-server:8.2.0.v20160908"
3333
testImplementation "org.eclipse.jetty:jetty-servlet:8.2.0.v20160908"

0 commit comments

Comments
 (0)