Skip to content

Commit afda86d

Browse files
Merge branch 'main' into aerospike-client-instrumentation
2 parents 7f84218 + 57438e6 commit afda86d

File tree

5 files changed

+16
-8
lines changed

5 files changed

+16
-8
lines changed

.github/renovate.json5

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"config:base"
55
],
66
"ignorePaths": ["instrumentation/**"],
7+
"baseBranches": ["main", "release/v1.32.x"],
78
"packageRules": [
89
{
910
"matchPackagePrefixes": ["ch.qos.logback:"],

.github/workflows/build-common.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
steps:
5959
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
6060

61-
- uses: gradle/wrapper-validation-action@85cde3f5a1033b2adc2442631c24b530f1183a1a # v2.1.0
61+
- uses: gradle/wrapper-validation-action@699bb18358f12c5b78b37bb0111d3a0e2276e0e2 # v2.1.1
6262

6363
license-check:
6464
runs-on: ubuntu-latest

dependencyManagement/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ val groovyVersion = "4.0.18"
2727

2828
val DEPENDENCY_BOMS = listOf(
2929
"com.fasterxml.jackson:jackson-bom:2.16.1",
30-
"com.squareup.okio:okio-bom:3.7.0", // see https://github.com/open-telemetry/opentelemetry-java/issues/5637
30+
"com.squareup.okio:okio-bom:3.8.0", // see https://github.com/open-telemetry/opentelemetry-java/issues/5637
3131
"com.google.guava:guava-bom:33.0.0-jre",
3232
"org.apache.groovy:groovy-bom:${groovyVersion}",
3333
"io.opentelemetry:opentelemetry-bom:${otelSdkVersion}",
@@ -80,7 +80,7 @@ val CORE_DEPENDENCIES = listOf(
8080
// this top level to help consistently satisfy large numbers of transitive dependencies.
8181
val DEPENDENCIES = listOf(
8282
"io.r2dbc:r2dbc-proxy:1.1.4.RELEASE",
83-
"ch.qos.logback:logback-classic:1.3.8", // 1.4+ requires Java 11+
83+
"ch.qos.logback:logback-classic:1.3.14", // 1.4+ requires Java 11+
8484
"com.github.stefanbirkner:system-lambda:1.2.1",
8585
"com.github.stefanbirkner:system-rules:1.19.0",
8686
"uk.org.webcompere:system-stubs-jupiter:2.0.3",

licenses/licenses.md

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

smoke-tests/images/servlet/build.gradle.kts

+9-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ val targets = mapOf(
3939
),
4040
"payara" to listOf(
4141
ImageTarget(listOf("5.2020.6", "5.2021.8"), listOf("hotspot", "openj9"), listOf("8", "11")),
42-
ImageTarget(listOf("6.2023.12"), listOf("hotspot", "openj9"), listOf("11", "17", "21"), war = "servlet-5.0")
42+
// Test application is not deployed when server is sarted with hotspot jdk version 21
43+
ImageTarget(listOf("6.2023.12"), listOf("hotspot"), listOf("11", "17"), war = "servlet-5.0"),
44+
ImageTarget(listOf("6.2023.12"), listOf("openj9"), listOf("11", "17", "21"), war = "servlet-5.0")
4345
),
4446
"tomcat" to listOf(
4547
ImageTarget(listOf("7.0.109"), listOf("hotspot", "openj9"), listOf("8"), mapOf("majorVersion" to "7")),
@@ -58,7 +60,12 @@ val targets = mapOf(
5860
"wildfly" to listOf(
5961
ImageTarget(listOf("13.0.0.Final"), listOf("hotspot", "openj9"), listOf("8")),
6062
ImageTarget(
61-
listOf("17.0.1.Final", "21.0.0.Final", "28.0.1.Final", "29.0.1.Final", "30.0.1.Final"),
63+
listOf("17.0.1.Final", "21.0.0.Final"),
64+
listOf("hotspot", "openj9"),
65+
listOf("8", "11", "17", "21")
66+
),
67+
ImageTarget(
68+
listOf("28.0.1.Final", "29.0.1.Final", "30.0.1.Final"),
6269
listOf("hotspot", "openj9"),
6370
listOf("11", "17", "21"),
6471
war = "servlet-5.0"

0 commit comments

Comments
 (0)