Skip to content

Commit 88e4683

Browse files
Updates to latest maven versions aligned with latest docker images (#3785)
This also updates example docker images to latest --------- Signed-off-by: Adrian Cole <[email protected]> Signed-off-by: Andriy Redko <[email protected]> Co-authored-by: Andriy Redko <[email protected]>
1 parent 37ef744 commit 88e4683

File tree

36 files changed

+84
-80
lines changed

36 files changed

+84
-80
lines changed

.github/ISSUE_TEMPLATE/bug.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ If this is a UI issue...
1010
* Attach a screen shot or animated gif showing what you think is wrong
1111
* Include JSON of a trace that produces it, being careful to not include private data
1212
* You can literally include the JSON in [triple-backticks](https://help.github.com/en/github/writing-on-github/basic-writing-and-formatting-syntax#quoting-code)
13-
* Otherwise, you can use a [gist](https://gist.github.com/) or pastebin such as [fluffy](https://fluffy.cc/)
13+
* Otherwise, you can use a [gist](https://gist.github.com/) or pastebin
1414

1515
Regardless, the best is to spend some time to write a failing test. Bugs with tests get fixed and stay fixed.
1616

.github/workflows/security.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on: # yamllint disable-line rule:truthy
2323
jobs:
2424
security:
2525
name: security
26-
runs-on: ubuntu-24.04 # newest available distribution, aka noble
26+
runs-on: ubuntu-24.04 # newest available distribution, aka numbat
2727
# skip commits made by the release plugin
2828
if: "!contains(github.event.head_commit.message, 'maven-release-plugin')"
2929
steps:
@@ -38,6 +38,9 @@ jobs:
3838
- name: Run Trivy vulnerability and secret scanner
3939
uses: aquasecurity/trivy-action@master
4040
id: trivy
41+
env: # See https://github.com/aquasecurity/trivy/discussions/7668
42+
TRIVY_DB_REPOSITORY: public.ecr.aws/aquasecurity/trivy-db
43+
TRIVY_JAVA_DB_REPOSITORY: public.ecr.aws/aquasecurity/trivy-java-db
4144
with:
4245
scan-type: 'fs'
4346
scan-ref: '.' # scan the entire repository

.mvn/wrapper/maven-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
# under the License.
1717
wrapperVersion=3.3.2
1818
distributionType=bin
19-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip
19+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
2020
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar

benchmarks/src/test/java/zipkin2/server/ServerIntegratedBenchmark.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class ServerIntegratedBenchmark {
8181

8282
@Test void elasticsearch() throws Exception {
8383
GenericContainer<?> elasticsearch =
84-
new GenericContainer<>(parse("ghcr.io/openzipkin/zipkin-elasticsearch7:3.4.0"))
84+
new GenericContainer<>(parse("ghcr.io/openzipkin/zipkin-elasticsearch7:3.4.2"))
8585
.withNetwork(Network.SHARED)
8686
.withNetworkAliases("elasticsearch")
8787
.withLabel("name", "elasticsearch")
@@ -95,7 +95,7 @@ class ServerIntegratedBenchmark {
9595

9696
@Test void cassandra3() throws Exception {
9797
GenericContainer<?> cassandra =
98-
new GenericContainer<>(parse("ghcr.io/openzipkin/zipkin-cassandra:3.4.0"))
98+
new GenericContainer<>(parse("ghcr.io/openzipkin/zipkin-cassandra:3.4.2"))
9999
.withNetwork(Network.SHARED)
100100
.withNetworkAliases("cassandra")
101101
.withLabel("name", "cassandra")
@@ -109,7 +109,7 @@ class ServerIntegratedBenchmark {
109109

110110
@Test void mysql() throws Exception {
111111
GenericContainer<?> mysql =
112-
new GenericContainer<>(parse("ghcr.io/openzipkin/zipkin-mysql:3.4.0"))
112+
new GenericContainer<>(parse("ghcr.io/openzipkin/zipkin-mysql:3.4.2"))
113113
.withNetwork(Network.SHARED)
114114
.withNetworkAliases("mysql")
115115
.withLabel("name", "mysql")
@@ -147,7 +147,7 @@ void runBenchmark(@Nullable GenericContainer<?> storage, GenericContainer<?> zip
147147
// Use a quay.io mirror to prevent build outages due to Docker Hub pull quotas
148148
// Use same version as in docker/examples/docker-compose-prometheus.yml
149149
GenericContainer<?> prometheus =
150-
new GenericContainer<>(parse("quay.io/prometheus/prometheus:v2.53.1"))
150+
new GenericContainer<>(parse("quay.io/prometheus/prometheus:v2.55.1"))
151151
.withNetwork(Network.SHARED)
152152
.withNetworkAliases("prometheus")
153153
.withExposedPorts(9090)
@@ -277,7 +277,7 @@ GenericContainer<?> createZipkinContainer(@Nullable GenericContainer<?> storage)
277277

278278
final GenericContainer<?> zipkin;
279279
if (RELEASE_VERSION == null) {
280-
zipkin = new GenericContainer<>(parse("ghcr.io/openzipkin/java:21.0.4_p7"));
280+
zipkin = new GenericContainer<>(parse("ghcr.io/openzipkin/java:21.0.5_p11"));
281281
List<String> classpath = new ArrayList<>();
282282
for (String item : System.getProperty("java.class.path").split(File.pathSeparator)) {
283283
Path path = Paths.get(item);

build-bin/configure_lint

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#!/bin/sh -ue
22

33
# Attempt to install markdown-link-check if absent
4-
markdown-link-check -V || npm install -g markdown-link-check
4+
# Pinned until https://github.com/tcort/markdown-link-check/issues/369
5+
markdown-link-check -V || npm install -g [email protected]
56

67
# Attempt to install yamllint if absent
78
yamllint -v || pip install --user yamllint

build-bin/docker-compose-zipkin.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
# Use fixed service and container name 'sut; so our test script can copy/pasta
1515
sut:
1616
container_name: sut
17-
image: ghcr.io/openzipkin/alpine:3.20.2
17+
image: ghcr.io/openzipkin/alpine:3.20.3
1818
entrypoint: /bin/sh
1919
# Keep the container running until HEALTHCHECK passes
2020
command: "-c \"sleep 5m\""

build-bin/docker/docker_args

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ if [ -n "${DOCKER_TARGET}" ]; then
3737
fi
3838

3939
# When non-empty, becomes the base layer including tag appropriate for the image being built.
40-
# e.g. ghcr.io/openzipkin/java:21.0.4_p7-jre
40+
# e.g. ghcr.io/openzipkin/java:21.0.5_p11-jre
4141
#
4242
# This is not required to be a base (FROM scratch) image like ghcr.io/openzipkin/alpine:3.12.3
4343
# See https://docs.docker.com/glossary/#parent-image
@@ -51,7 +51,7 @@ if [ -n "${ALPINE_VERSION}" ]; then
5151
docker_args="${docker_args} --build-arg alpine_version=${ALPINE_VERSION}"
5252
fi
5353

54-
# When non-empty, becomes the build-arg java_version. e.g. "21.0.4_p7"
54+
# When non-empty, becomes the build-arg java_version. e.g. "21.0.5_p11"
5555
# Used to align base layers from https://github.com/orgs/openzipkin/packages/container/package/java
5656
if [ -n "${JAVA_VERSION}" ]; then
5757
docker_args="${docker_args} --build-arg java_version=${JAVA_VERSION}"

build-bin/maven/maven_unjar

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ fi
5858

5959
if ! test -f ${artifact_id}.jar && [ ${is_release} = "true" ]; then
6060
mvn_get="mvn -q --batch-mode -Denforcer.fail=false \
61-
org.apache.maven.plugins:maven-dependency-plugin:3.7.1:get \
61+
org.apache.maven.plugins:maven-dependency-plugin:3.8.1:get \
6262
-Dtransitive=false -DgroupId=${group_id} -DartifactId=${artifact_id} -Dversion=${version}"
6363

6464
if [ -n "${classifier}" ]; then

docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Use latest version here: https://github.com/orgs/openzipkin/packages/container/package/java
99
# This is defined in many places because Docker has no "env" script functionality unless you use
1010
# docker-compose: When updating, update everywhere.
11-
ARG java_version=21.0.4_p7
11+
ARG java_version=21.0.5_p11
1212

1313
# We copy files from the context into a scratch container first to avoid a problem where docker and
1414
# docker compose don't share layer hashes https://github.com/docker/compose/issues/883 normally.

docker/examples/docker-compose-prometheus.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ services:
1616
prometheus:
1717
# Use a quay.io mirror to prevent build outages due to Docker Hub pull quotas
1818
# Use latest from https://quay.io/repository/prometheus/prometheus?tab=tags
19-
image: quay.io/prometheus/prometheus:v2.51.2
19+
image: quay.io/prometheus/prometheus:v2.55.1
2020
container_name: prometheus
2121
ports:
2222
- 9090:9090
@@ -28,8 +28,8 @@ services:
2828

2929
grafana:
3030
# Use a quay.io mirror to prevent build outages due to Docker Hub pull quotas
31-
# Use latest from https://quay.io/repository/app-sre/grafana?tab=tags
32-
image: quay.io/giantswarm/grafana:7.5.9
31+
# Use latest from https://quay.io/repository/giantswarm/grafana?tab=tags
32+
image: quay.io/giantswarm/grafana:7.5.12
3333
container_name: grafana
3434
ports:
3535
- 3000:3000
@@ -42,8 +42,8 @@ services:
4242
setup_grafana_datasource:
4343
# This is an arbitrary small image that has curl installed
4444
# Use a quay.io mirror to prevent build outages due to Docker Hub pull quotas
45-
# Use latest from https://quay.io/repository/quay.io/rackspace/curl?tab=tags
46-
image: quay.io/cilium/alpine-curl:v1.9.0
45+
# Use latest from https://quay.io/repository/cilium/alpine-curl?tab=tags
46+
image: quay.io/cilium/alpine-curl:v1.10.0
4747
container_name: setup_grafana_datasource
4848
depends_on:
4949
- grafana

docker/test-images/zipkin-activemq/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Use latest version here: https://github.com/orgs/openzipkin/packages/container/package/java
99
# This is defined in many places because Docker has no "env" script functionality unless you use
1010
# docker-compose: When updating, update everywhere.
11-
ARG java_version=21.0.4_p7
11+
ARG java_version=21.0.5_p11
1212

1313
# We copy files from the context into a scratch container first to avoid a problem where docker and
1414
# docker compose don't share layer hashes https://github.com/docker/compose/issues/883 normally.
@@ -23,7 +23,7 @@ FROM ghcr.io/openzipkin/java:${java_version} as install
2323
WORKDIR /install
2424

2525
# Use latest version from https://activemq.apache.org/components/classic/download/
26-
ARG activemq_version=6.1.2
26+
ARG activemq_version=6.1.4
2727

2828
# Download the distribution
2929
RUN \
@@ -37,7 +37,7 @@ https://archive.apache.org/dist/activemq/${activemq_version}/apache-activemq-${a
3737
# which isn't in our JRE.
3838
FROM ghcr.io/openzipkin/java:${java_version} as zipkin-activemq
3939
LABEL org.opencontainers.image.description="ActiveMQ Classic on OpenJDK and Alpine Linux"
40-
ARG activemq_version=6.1.2
40+
ARG activemq_version=6.1.4
4141
LABEL activemq-version=$activemq_version
4242

4343
# Add HEALTHCHECK and ENTRYPOINT scripts into the default search path

docker/test-images/zipkin-cassandra/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Use latest version here: https://github.com/orgs/openzipkin/packages/container/package/java
99
# This is defined in many places because Docker has no "env" script functionality unless you use
1010
# docker-compose: When updating, update everywhere.
11-
ARG java_version=21.0.4_p7
11+
ARG java_version=21.0.5_p11
1212

1313
# We copy files from the context into a scratch container first to avoid a problem where docker and
1414
# docker compose don't share layer hashes https://github.com/docker/compose/issues/883 normally.
@@ -25,7 +25,7 @@ FROM ghcr.io/openzipkin/java:${java_version} as install
2525
# Use latest stable version: https://cassandra.apache.org/download/
2626
# This is defined in many places because Docker has no "env" script functionality unless you use
2727
# docker-compose: When updating, update everywhere.
28-
ARG cassandra_version=4.1.5
28+
ARG cassandra_version=4.1.7
2929
ENV CASSANDRA_VERSION=$cassandra_version
3030
WORKDIR /install
3131

@@ -35,7 +35,7 @@ RUN /tmp/install.sh && rm /tmp/install.sh
3535

3636
FROM ghcr.io/openzipkin/java:${java_version}-jre as zipkin-cassandra
3737
LABEL org.opencontainers.image.description="Cassandra on OpenJDK and Alpine Linux with Zipkin keyspaces pre-installed"
38-
ARG cassandra_version=4.1.5
38+
ARG cassandra_version=4.1.7
3939
LABEL cassandra-version=$cassandra_version
4040
ENV CASSANDRA_VERSION=$cassandra_version
4141

docker/test-images/zipkin-cassandra/install.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ cat > pom.xml <<-'EOF'
4747
<dependency>
4848
<groupId>net.java.dev.jna</groupId>
4949
<artifactId>jna</artifactId>
50-
<version>5.14.0</version>
50+
<version>5.15.0</version>
5151
</dependency>
5252
<!-- log4j not logback -->
5353
<dependency>
@@ -60,7 +60,7 @@ cat > pom.xml <<-'EOF'
6060
EOF
6161
mvn -q --batch-mode -DoutputDirectory=lib \
6262
-Dcassandra.version=${CASSANDRA_VERSION} \
63-
org.apache.maven.plugins:maven-dependency-plugin:3.7.1:copy-dependencies
63+
org.apache.maven.plugins:maven-dependency-plugin:3.8.1:copy-dependencies
6464
rm pom.xml
6565

6666
# Make sure you use relative paths in references like this, so that installation

docker/test-images/zipkin-elasticsearch7/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Use latest version here: https://github.com/orgs/openzipkin/packages/container/package/java
99
# This is defined in many places because Docker has no "env" script functionality unless you use
1010
# docker-compose: When updating, update everywhere.
11-
ARG java_version=21.0.4_p7
11+
ARG java_version=21.0.5_p11
1212

1313
# We copy files from the context into a scratch container first to avoid a problem where docker and
1414
# docker compose don't share layer hashes https://github.com/docker/compose/issues/883 normally.
@@ -26,7 +26,7 @@ WORKDIR /install
2626
# Use latest 7.x version from https://www.elastic.co/downloads/past-releases#elasticsearch-no-jdk
2727
# This is defined in many places because Docker has no "env" script functionality unless you use
2828
# docker-compose: When updating, update everywhere.
29-
ARG elasticsearch7_version=7.17.23
29+
ARG elasticsearch7_version=7.17.25
3030

3131
# Download only the OSS distribution (lacks X-Pack)
3232
RUN \
@@ -41,7 +41,7 @@ COPY --from=scratch /config/ ./config/
4141
# production -jre base layer used by zipkin and zipkin-slim.
4242
FROM ghcr.io/openzipkin/java:${java_version} as zipkin-elasticsearch7
4343
LABEL org.opencontainers.image.description="Elasticsearch distribution on OpenJDK and Alpine Linux"
44-
ARG elasticsearch7_version=7.17.23
44+
ARG elasticsearch7_version=7.17.25
4545
LABEL elasticsearch-version=$elasticsearch7_version
4646

4747
# The full license is also included in the image at /elasticsearch/LICENSE.txt.

docker/test-images/zipkin-elasticsearch8/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Use latest version here: https://github.com/orgs/openzipkin/packages/container/package/java
99
# This is defined in many places because Docker has no "env" script functionality unless you use
1010
# docker-compose: When updating, update everywhere.
11-
ARG java_version=21.0.4_p7
11+
ARG java_version=21.0.5_p11
1212

1313
# We copy files from the context into a scratch container first to avoid a problem where docker and
1414
# docker compose don't share layer hashes https://github.com/docker/compose/issues/883 normally.
@@ -26,7 +26,7 @@ WORKDIR /install
2626
# Use latest 8.x version from https://www.elastic.co/downloads/past-releases#elasticsearch
2727
# This is defined in many places because Docker has no "env" script functionality unless you use
2828
# docker-compose: When updating, update everywhere.
29-
ARG elasticsearch8_version=8.14.3
29+
ARG elasticsearch8_version=8.16.0
3030

3131
# Download only the OSS distribution (lacks X-Pack)
3232
RUN \
@@ -41,7 +41,7 @@ COPY --from=scratch /config/ ./config/
4141
# production -jre base layer used by zipkin and zipkin-slim.
4242
FROM ghcr.io/openzipkin/java:${java_version} as zipkin-elasticsearch8
4343
LABEL org.opencontainers.image.description="Elasticsearch distribution on OpenJDK and Alpine Linux"
44-
ARG elasticsearch8_version=8.14.3
44+
ARG elasticsearch8_version=8.16.0
4545
LABEL elasticsearch-version=$elasticsearch8_version
4646

4747
# The full license is also included in the image at /elasticsearch/LICENSE.txt.

docker/test-images/zipkin-eureka/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Use latest version here: https://github.com/orgs/openeureka/packages/container/package/java
99
# This is defined in many places because Docker has no "env" script functionality unless you use
1010
# docker-compose: When updating, update everywhere.
11-
ARG java_version=21.0.4_p7
11+
ARG java_version=21.0.5_p11
1212

1313
# We copy files from the context into a scratch container first to avoid a problem where docker and
1414
# docker compose don't share layer hashes https://github.com/docker/compose/issues/883 normally.

docker/test-images/zipkin-eureka/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,20 @@
2929
<dependency>
3030
<groupId>org.springframework.boot</groupId>
3131
<artifactId>spring-boot-dependencies</artifactId>
32-
<version>3.3.4</version>
32+
<version>3.3.6</version>
3333
<type>pom</type>
3434
<scope>import</scope>
3535
</dependency>
3636
<!-- CVE fix versions -->
3737
<dependency>
3838
<groupId>com.google.guava</groupId>
3939
<artifactId>guava</artifactId>
40-
<version>33.2.1-jre</version>
40+
<version>33.3.1-jre</version>
4141
</dependency>
4242
<dependency>
4343
<groupId>com.thoughtworks.xstream</groupId>
4444
<artifactId>xstream</artifactId>
45-
<version>1.4.20</version>
45+
<version>1.4.21</version>
4646
</dependency>
4747
<dependency>
4848
<groupId>org.apache.httpcomponents</groupId>

docker/test-images/zipkin-kafka/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Use latest version here: https://github.com/orgs/openzipkin/packages/container/package/java
99
# This is defined in many places because Docker has no "env" script functionality unless you use
1010
# docker-compose: When updating, update everywhere.
11-
ARG java_version=21.0.4_p7
11+
ARG java_version=21.0.5_p11
1212

1313
# We copy files from the context into a scratch container first to avoid a problem where docker and
1414
# docker compose don't share layer hashes https://github.com/docker/compose/issues/883 normally.
@@ -25,7 +25,7 @@ FROM ghcr.io/openzipkin/java:${java_version} as install
2525
#
2626
# This is defined in many places because Docker has no "env" script functionality unless you use
2727
# docker-compose: When updating, update everywhere.
28-
ARG kafka_version=3.8.0
28+
ARG kafka_version=3.9.0
2929
ENV KAFKA_VERSION=$kafka_version
3030
# Note: Scala 2.13+ supports JRE 14
3131
ARG scala_version=2.13
@@ -38,7 +38,7 @@ RUN /tmp/install.sh && rm /tmp/install.sh
3838
# Share the same base image to reduce layers used in testing
3939
FROM ghcr.io/openzipkin/java:${java_version}-jre as zipkin-kafka
4040
LABEL org.opencontainers.image.description="Kafka and ZooKeeper on OpenJDK and Alpine Linux"
41-
ARG kafka_version=3.8.0
41+
ARG kafka_version=3.9.0
4242
LABEL kafka-version=$kafka_version
4343

4444
# Add HEALTHCHECK and ENTRYPOINT scripts into the default search path

docker/test-images/zipkin-kafka/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ cat > pom.xml <<-'EOF'
4343
EOF
4444
mvn -q --batch-mode -DoutputDirectory=lib \
4545
-Dscala.version=${SCALA_VERSION} -Dkafka.version=${KAFKA_VERSION} \
46-
org.apache.maven.plugins:maven-dependency-plugin:3.7.1:copy-dependencies
46+
org.apache.maven.plugins:maven-dependency-plugin:3.8.1:copy-dependencies
4747
rm pom.xml
4848

4949
# Make sure you use relative paths in references like this, so that installation

docker/test-images/zipkin-mysql/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Use latest version here: https://github.com/orgs/openzipkin/packages/container/package/alpine
77
# This is defined in many places because Docker has no "env" script functionality unless you use
88
# docker-compose: When updating, update everywhere.
9-
ARG alpine_version=3.20.2
9+
ARG alpine_version=3.20.3
1010

1111
# We copy files from the context into a scratch container first to avoid a problem where docker and
1212
# docker compose don't share layer hashes https://github.com/docker/compose/issues/883 normally.
@@ -28,7 +28,7 @@ HEALTHCHECK --interval=1s --start-period=30s --timeout=5s CMD ["docker-healthche
2828
ENTRYPOINT ["start-mysql"]
2929

3030
# Use latest from https://pkgs.alpinelinux.org/packages?name=mysql (without the -r[0-9])
31-
ARG mysql_version=11.4.3
31+
ARG mysql_version=11.4.4
3232
LABEL mysql-version=$mysql_version
3333
ENV MYSQL_VERSION=$mysql_version
3434

0 commit comments

Comments
 (0)