Skip to content

Commit ea99f1b

Browse files
author
quarkusbot
committed
[RELEASE] - Bump version to 3.19.0.CR1
1 parent 0e29ab4 commit ea99f1b

File tree

488 files changed

+1672
-1033
lines changed

Some content is hidden

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

488 files changed

+1672
-1033
lines changed

amazon-dynamodb-quickstart/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
<properties>
1212
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
13-
<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
14-
<quarkus.platform.version>999-SNAPSHOT</quarkus.platform.version>
13+
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
14+
<quarkus.platform.version>3.19.0.CR1</quarkus.platform.version>
1515
<surefire-plugin.version>3.1.2</surefire-plugin.version>
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1717
<maven.compiler.source>17</maven.compiler.source>

amazon-dynamodb-quickstart/src/main/docker/Dockerfile.jvm

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
# This scripts computes the command line to execute your Java application, and
2727
# includes memory/GC tuning.
2828
# You can configure the behavior using the following environment properties:
29-
# - JAVA_OPTS: JVM options passed to the `java` command (example: "-verbose:class")
29+
# - JAVA_OPTS: JVM options passed to the `java` command (example: "-verbose:class") - Be aware that this will override
30+
# the default JVM options, use `JAVA_OPTS_APPEND` to append options
3031
# - JAVA_OPTS_APPEND: User specified Java options to be appended to generated options
3132
# in JAVA_OPTS (example: "-Dsome.property=foo")
3233
# - JAVA_MAX_MEM_RATIO: Is used when no `-Xmx` option is given in JAVA_OPTS. This is
@@ -77,7 +78,7 @@
7778
# accessed directly. (example: "foo.example.com,bar.example.com")
7879
#
7980
###
80-
FROM registry.access.redhat.com/ubi8/openjdk-17:1.19
81+
FROM registry.access.redhat.com/ubi9/openjdk-17:1.21
8182

8283
ENV LANGUAGE='en_US:en'
8384

amazon-dynamodb-quickstart/src/main/docker/Dockerfile.legacy-jar

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
# This scripts computes the command line to execute your Java application, and
2727
# includes memory/GC tuning.
2828
# You can configure the behavior using the following environment properties:
29-
# - JAVA_OPTS: JVM options passed to the `java` command (example: "-verbose:class")
29+
# - JAVA_OPTS: JVM options passed to the `java` command (example: "-verbose:class") - Be aware that this will override
30+
# the default JVM options, use `JAVA_OPTS_APPEND` to append options
3031
# - JAVA_OPTS_APPEND: User specified Java options to be appended to generated options
3132
# in JAVA_OPTS (example: "-Dsome.property=foo")
3233
# - JAVA_MAX_MEM_RATIO: Is used when no `-Xmx` option is given in JAVA_OPTS. This is
@@ -77,7 +78,7 @@
7778
# accessed directly. (example: "foo.example.com,bar.example.com")
7879
#
7980
###
80-
FROM registry.access.redhat.com/ubi8/openjdk-17:1.19
81+
FROM registry.access.redhat.com/ubi9/openjdk-17:1.21
8182

8283
ENV LANGUAGE='en_US:en'
8384

amazon-dynamodb-quickstart/src/main/docker/Dockerfile.native

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,15 @@
1313
#
1414
# docker run -i --rm -p 8080:8080 quarkus/amazon-dynamodb-quickstart
1515
#
16+
# The ` registry.access.redhat.com/ubi9/ubi-minimal:9.5` base image is based on UBI 9.
17+
# To use UBI 8, switch to `quay.io/ubi8/ubi-minimal:8.10`.
1618
###
17-
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.9
19+
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5
1820
WORKDIR /work/
1921
RUN chown 1001 /work \
2022
&& chmod "g+rwX" /work \
2123
&& chown 1001:root /work
22-
COPY --chown=1001:root target/*-runner /work/application
24+
COPY --chown=1001:root --chmod=0755 target/*-runner /work/application
2325

2426
EXPOSE 8080
2527
USER 1001

amazon-dynamodb-quickstart/src/main/docker/Dockerfile.native-micro

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,15 @@
1616
#
1717
# docker run -i --rm -p 8080:8080 quarkus/amazon-dynamodb-quickstart
1818
#
19+
# The `quay.io/quarkus/ubi9-quarkus-micro-image:2.0` base image is based on UBI 9.
20+
# To use UBI 8, switch to `quay.io/quarkus/quarkus-micro-image:2.0`.
1921
###
20-
FROM quay.io/quarkus/quarkus-micro-image:2.0
22+
FROM quay.io/quarkus/ubi9-quarkus-micro-image:2.0
2123
WORKDIR /work/
2224
RUN chown 1001 /work \
2325
&& chmod "g+rwX" /work \
2426
&& chown 1001:root /work
25-
COPY --chown=1001:root target/*-runner /work/application
27+
COPY --chown=1001:root --chmod=0755 target/*-runner /work/application
2628

2729
EXPOSE 8080
2830
USER 1001

amazon-kms-quickstart/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
<properties>
1212
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
13-
<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
14-
<quarkus.platform.version>999-SNAPSHOT</quarkus.platform.version>
13+
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
14+
<quarkus.platform.version>3.19.0.CR1</quarkus.platform.version>
1515
<surefire-plugin.version>3.1.2</surefire-plugin.version>
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1717
<maven.compiler.source>17</maven.compiler.source>

amazon-kms-quickstart/src/main/docker/Dockerfile.jvm

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
# This scripts computes the command line to execute your Java application, and
2727
# includes memory/GC tuning.
2828
# You can configure the behavior using the following environment properties:
29-
# - JAVA_OPTS: JVM options passed to the `java` command (example: "-verbose:class")
29+
# - JAVA_OPTS: JVM options passed to the `java` command (example: "-verbose:class") - Be aware that this will override
30+
# the default JVM options, use `JAVA_OPTS_APPEND` to append options
3031
# - JAVA_OPTS_APPEND: User specified Java options to be appended to generated options
3132
# in JAVA_OPTS (example: "-Dsome.property=foo")
3233
# - JAVA_MAX_MEM_RATIO: Is used when no `-Xmx` option is given in JAVA_OPTS. This is
@@ -77,7 +78,7 @@
7778
# accessed directly. (example: "foo.example.com,bar.example.com")
7879
#
7980
###
80-
FROM registry.access.redhat.com/ubi8/openjdk-17:1.19
81+
FROM registry.access.redhat.com/ubi9/openjdk-17:1.21
8182

8283
ENV LANGUAGE='en_US:en'
8384

amazon-kms-quickstart/src/main/docker/Dockerfile.legacy-jar

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
# This scripts computes the command line to execute your Java application, and
2727
# includes memory/GC tuning.
2828
# You can configure the behavior using the following environment properties:
29-
# - JAVA_OPTS: JVM options passed to the `java` command (example: "-verbose:class")
29+
# - JAVA_OPTS: JVM options passed to the `java` command (example: "-verbose:class") - Be aware that this will override
30+
# the default JVM options, use `JAVA_OPTS_APPEND` to append options
3031
# - JAVA_OPTS_APPEND: User specified Java options to be appended to generated options
3132
# in JAVA_OPTS (example: "-Dsome.property=foo")
3233
# - JAVA_MAX_MEM_RATIO: Is used when no `-Xmx` option is given in JAVA_OPTS. This is
@@ -77,7 +78,7 @@
7778
# accessed directly. (example: "foo.example.com,bar.example.com")
7879
#
7980
###
80-
FROM registry.access.redhat.com/ubi8/openjdk-17:1.19
81+
FROM registry.access.redhat.com/ubi9/openjdk-17:1.21
8182

8283
ENV LANGUAGE='en_US:en'
8384

amazon-kms-quickstart/src/main/docker/Dockerfile.native

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,15 @@
1313
#
1414
# docker run -i --rm -p 8080:8080 quarkus/amazon-kms-quickstart
1515
#
16+
# The ` registry.access.redhat.com/ubi9/ubi-minimal:9.5` base image is based on UBI 9.
17+
# To use UBI 8, switch to `quay.io/ubi8/ubi-minimal:8.10`.
1618
###
17-
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.9
19+
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5
1820
WORKDIR /work/
1921
RUN chown 1001 /work \
2022
&& chmod "g+rwX" /work \
2123
&& chown 1001:root /work
22-
COPY --chown=1001:root target/*-runner /work/application
24+
COPY --chown=1001:root --chmod=0755 target/*-runner /work/application
2325

2426
EXPOSE 8080
2527
USER 1001

amazon-kms-quickstart/src/main/docker/Dockerfile.native-micro

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,15 @@
1616
#
1717
# docker run -i --rm -p 8080:8080 quarkus/amazon-kms-quickstart
1818
#
19+
# The `quay.io/quarkus/ubi9-quarkus-micro-image:2.0` base image is based on UBI 9.
20+
# To use UBI 8, switch to `quay.io/quarkus/quarkus-micro-image:2.0`.
1921
###
20-
FROM quay.io/quarkus/quarkus-micro-image:2.0
22+
FROM quay.io/quarkus/ubi9-quarkus-micro-image:2.0
2123
WORKDIR /work/
2224
RUN chown 1001 /work \
2325
&& chmod "g+rwX" /work \
2426
&& chown 1001:root /work
25-
COPY --chown=1001:root target/*-runner /work/application
27+
COPY --chown=1001:root --chmod=0755 target/*-runner /work/application
2628

2729
EXPOSE 8080
2830
USER 1001

0 commit comments

Comments
 (0)