Skip to content

Commit a2f1c6a

Browse files
authored
Merge branch 'main' into jmx-telemetry-refactor
2 parents a2343e8 + a87fd0e commit a2f1c6a

File tree

270 files changed

+4998
-987
lines changed

Some content is hidden

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

270 files changed

+4998
-987
lines changed

.github/renovate.json5

Lines changed: 30 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,26 @@
159159
'com.github.tomakehurst:wiremock-jre8'
160160
],
161161
},
162+
{
163+
// snakeyaml-engine 3+ requires Java 11+
164+
matchUpdateTypes: [
165+
'major',
166+
],
167+
enabled: false,
168+
matchPackageNames: [
169+
'org.snakeyaml:snakeyaml-engine'
170+
],
171+
},
172+
{
173+
// groovy 5+ requires Java 11+
174+
matchUpdateTypes: [
175+
'major',
176+
],
177+
enabled: false,
178+
matchPackageNames: [
179+
'org.apache.groovy:**'
180+
],
181+
},
162182
{
163183
// vaadin 14 tests require node 16
164184
matchPackageNames: [
@@ -170,9 +190,7 @@
170190
enabled: false,
171191
},
172192
{
173-
// intentionally using Spring Boot 2 in this smoke tests
174-
// new versions of Spring Boot 3 are tested with
175-
// https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/dc4330e0a3060bd7d8c4090ad0b8fc4727e68113/settings.gradle.kts#L43-L45
193+
// intentionally using Spring Boot 2 in these smoke tests
176194
matchFileNames: [
177195
'smoke-tests/images/spring-boot/build.gradle.kts',
178196
'smoke-tests-otel-starter/spring-boot-2/build.gradle.kts',
@@ -183,42 +201,28 @@
183201
],
184202
matchPackageNames: [
185203
'org.slf4j:slf4j-api',
186-
'org.springframework.boot:org.springframework.boot.gradle.plugin', // this is for plugin id "org.springframework.boot"
187-
'org.springframework.boot:spring-boot-dependencies',
204+
'org.springframework.boot:**',
188205
],
189206
matchUpdateTypes: [
190207
'major',
191-
'minor',
192208
],
193209
enabled: false,
194210
},
195211
{
196-
// intentionally using Spring Boot 2 in this smoke tests
212+
// intentionally using Logback 1.2 (for Spring Boot 2) in these smoke tests
197213
matchFileNames: [
214+
'smoke-tests/images/spring-boot/build.gradle.kts',
198215
'smoke-tests-otel-starter/spring-boot-2/build.gradle.kts',
199216
'smoke-tests-otel-starter/spring-boot-reactive-2/build.gradle.kts',
200217
],
201218
matchPackageNames: [
202-
'ch.qos.logback:logback-classic',
203-
],
204-
matchUpdateTypes: [
205-
'minor',
206-
],
207-
enabled: false,
208-
},
209-
{
210-
// intentionally using logback 1.2 in this smoke tests
211-
matchFileNames: [
212-
'smoke-tests/images/spring-boot/build.gradle.kts',
219+
'ch.qos.logback:**',
213220
],
214221
matchUpdateTypes: [
215222
'major',
216223
'minor',
217224
],
218225
enabled: false,
219-
matchPackageNames: [
220-
'ch.qos.logback:**',
221-
],
222226
},
223227
{
224228
// intentionally using slf4j 1 in this smoke tests
@@ -357,11 +361,11 @@
357361
datasourceTemplate: 'java-version',
358362
managerFilePatterns: [
359363
'.github/workflows/**',
360-
'**/*.gradle.kts'
364+
'**/*.gradle.kts',
361365
],
362366
matchStrings: [
363-
'(?<currentValue>\\d+) # renovate: datasource=java-version',
364-
'"(?<currentValue>\\d+)" // renovate: datasource=java-version',
367+
'(?<currentValue>\\d+) # renovate\\(java-version\\)',
368+
'"(?<currentValue>\\d+)" // renovate\\(java-version\\)',
365369
],
366370
depNameTemplate: 'java',
367371
extractVersionTemplate: '^(?<version>\\d+)',
@@ -370,7 +374,7 @@
370374
customType: 'regex',
371375
datasourceTemplate: 'pypi',
372376
managerFilePatterns: [
373-
'/^.github/workflows//',
377+
'.github/workflows/**',
374378
],
375379
matchStrings: [
376380
'pip install (?<depName>[^=]+)==(?<currentValue>[^\\s]+)',
@@ -380,7 +384,7 @@
380384
customType: 'regex',
381385
datasourceTemplate: 'npm',
382386
managerFilePatterns: [
383-
'/^.github/workflows//',
387+
'.github/workflows/**',
384388
],
385389
matchStrings: [
386390
'npx (?<depName>[^@]+)@(?<currentValue>[^\\s]+)',

.github/repository-settings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ private admin repo.
1111
- `FLAKY_TEST_REPORTER_ACCESS_KEY` - owned by [@laurit](https://github.com/laurit)
1212
- `GPG_PASSWORD` - stored in OpenTelemetry-Java 1Password
1313
- `GPG_PRIVATE_KEY` - stored in OpenTelemetry-Java 1Password
14-
- `GRADLE_PUBLISH_KEY`
15-
- `GRADLE_PUBLISH_SECRET`
14+
- `GRADLE_PUBLISH_KEY` - owned by [@trask](https://github.com/trask)
15+
- `GRADLE_PUBLISH_SECRET` - owned by [@trask](https://github.com/trask)
1616
- `NVD_API_KEY` - stored in OpenTelemetry-Java 1Password
1717
- Generated at https://nvd.nist.gov/developers/request-an-api-key
1818
- Key is associated with [@trask](https://github.com/trask)'s gmail address

.github/workflows/build-common.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ jobs:
246246
- 11
247247
- 17
248248
- 21
249-
- 25 # renovate: datasource=java-version
249+
- 25 # renovate(java-version)
250250
- 25-deny-unsafe
251251
vm:
252252
- hotspot

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
cache-read-only: ${{ github.event_name == 'pull_request' }}
6464

6565
- name: Initialize CodeQL
66-
uses: github/codeql-action/init@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
66+
uses: github/codeql-action/init@014f16e7ab1402f30e7c3329d33797e7948572db # v4.31.3
6767
with:
6868
languages: ${{ matrix.language }}
6969
# using "linked" helps to keep up with the linked Kotlin support
@@ -84,6 +84,6 @@ jobs:
8484
--no-build-cache --no-daemon
8585
8686
- name: Perform CodeQL analysis
87-
uses: github/codeql-action/analyze@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
87+
uses: github/codeql-action/analyze@014f16e7ab1402f30e7c3329d33797e7948572db # v4.31.3
8888
with:
8989
category: "/language:${{matrix.language}}"

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
- name: 'Checkout Repository'
2020
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2121
- name: 'Dependency Review'
22-
uses: actions/dependency-review-action@40c09b7dc99638e5ddb0bfd91c1673effc064d8a # v4.8.1
22+
uses: actions/dependency-review-action@3c4e3dcb1aa7874d2c16be7d79418e9b7efd6261 # v4.8.2

.github/workflows/ossf-scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ jobs:
4343
# Upload the results to GitHub's code scanning dashboard (optional).
4444
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
4545
- name: "Upload to code-scanning"
46-
uses: github/codeql-action/upload-sarif@0499de31b99561a6d14a36a5f662c2a54f91beee # v4.31.2
46+
uses: github/codeql-action/upload-sarif@014f16e7ab1402f30e7c3329d33797e7948572db # v4.31.3
4747
with:
4848
sarif_file: results.sarif

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
fetch-depth: 0 # needed for merge-base used in lint:links-in-modified-files
1616

17-
- uses: jdx/mise-action@be3be2260bc02bc3fbf94c5e2fed8b7964baf074 # v3.4.0
17+
- uses: jdx/mise-action@9dc7d5dd454262207dea3ab5a06a3df6afc8ff26 # v3.4.1
1818

1919
- name: Link check - relative links (all files)
2020
if: github.event_name == 'pull_request'

.github/workflows/reusable-pr-smoke-test-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
build:
3131
runs-on: ubuntu-latest
3232
env:
33-
LATEST_JAVA_VERSION: 25 # renovate: datasource=java-version
33+
LATEST_JAVA_VERSION: 25 # renovate(java-version)
3434
steps:
3535
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3636

.github/workflows/reusable-publish-smoke-test-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
contents: read
3434
packages: write
3535
env:
36-
LATEST_JAVA_VERSION: 25 # renovate: datasource=java-version
36+
LATEST_JAVA_VERSION: 25 # renovate(java-version)
3737
steps:
3838
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3939

benchmark-overhead/Dockerfile.petclinic

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM eclipse-temurin:11.0.29_7-jdk@sha256:7a7110c39048dcdea4dec1629503459ef6d428a60aeede5a0dda102bf0f29173 as app-build
1+
FROM eclipse-temurin:11.0.29_7-jdk@sha256:189ce1c8831fa5bdd801127dad99f68a17615f81f4aa839b1a4aae693261929a as app-build
22

33
# This is the base image that will contain a built version of the spring-petclinic-rest
44
# application. Installing the dependencies and maven compiling the application is time

0 commit comments

Comments
 (0)