Skip to content

Commit af1a15f

Browse files
author
quarkusbot
committed
Sync web site with Quarkus documentation
1 parent 9c80802 commit af1a15f

16 files changed

+28
-22
lines changed

_generated-doc/latest/config/quarkus-all-config.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11975,7 +11975,7 @@ Environment variable: `+++QUARKUS_KEYCLOAK_DEVSERVICES_IMAGE_NAME+++`
1197511975
endif::add-copy-button-to-env-var[]
1197611976
--
1197711977
|string
11978-
|`quay.io/keycloak/keycloak:26.2.0`
11978+
|`quay.io/keycloak/keycloak:26.2.4`
1197911979

1198011980
a|icon:lock[title=Fixed at build time] [[quarkus-devservices-keycloak_quarkus-keycloak-devservices-keycloak-x-image]] [.property-path]##link:#quarkus-devservices-keycloak_quarkus-keycloak-devservices-keycloak-x-image[`quarkus.keycloak.devservices.keycloak-x-image`]##
1198111981
ifdef::add-copy-button-to-config-props[]

_generated-doc/latest/config/quarkus-devservices-keycloak.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Environment variable: `+++QUARKUS_KEYCLOAK_DEVSERVICES_IMAGE_NAME+++`
4747
endif::add-copy-button-to-env-var[]
4848
--
4949
|string
50-
|`quay.io/keycloak/keycloak:26.2.0`
50+
|`quay.io/keycloak/keycloak:26.2.4`
5151

5252
a|icon:lock[title=Fixed at build time] [[quarkus-devservices-keycloak_quarkus-keycloak-devservices-keycloak-x-image]] [.property-path]##link:#quarkus-devservices-keycloak_quarkus-keycloak-devservices-keycloak-x-image[`quarkus.keycloak.devservices.keycloak-x-image`]##
5353
ifdef::add-copy-button-to-config-props[]

_generated-doc/latest/config/quarkus-devservices-keycloak_quarkus.keycloak.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Environment variable: `+++QUARKUS_KEYCLOAK_DEVSERVICES_IMAGE_NAME+++`
4747
endif::add-copy-button-to-env-var[]
4848
--
4949
|string
50-
|`quay.io/keycloak/keycloak:26.2.0`
50+
|`quay.io/keycloak/keycloak:26.2.4`
5151

5252
a|icon:lock[title=Fixed at build time] [[quarkus-devservices-keycloak_quarkus-keycloak-devservices-keycloak-x-image]] [.property-path]##link:#quarkus-devservices-keycloak_quarkus-keycloak-devservices-keycloak-x-image[`quarkus.keycloak.devservices.keycloak-x-image`]##
5353
ifdef::add-copy-button-to-config-props[]

_guides/_attributes.adoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
// Common attributes.
22
// --> No blank lines (it ends the document header)
33
:project-name: Quarkus
4-
:quarkus-version: 3.23.0
4+
:quarkus-version: 3.23.2
55
:quarkus-platform-groupid: io.quarkus.platform
66
// .
77
:maven-version: 3.9.9
88
:graalvm-version: for JDK 21
99
:graalvm-docs-version: jdk21
1010
:graalvm-flavor: jdk-21
1111
:mandrel-flavor: jdk-21
12-
:surefire-version: 3.5.2
12+
:surefire-version: 3.5.3
1313
:gradle-version: 8.13
14-
:elasticsearch-version: 8.15.0
15-
:elasticsearch-image: docker.io/elastic/elasticsearch:8.15.0
14+
:elasticsearch-version: 8.18.2
15+
:elasticsearch-image: docker.io/elastic/elasticsearch:8.18.2
1616
:opensearch-image: docker.io/opensearchproject/opensearch:2.16.0
1717
:infinispan-version: ${infinispan.version}
1818
:infinispan-protostream-version: ${infinispan.protostream.version}
19-
:logstash-image: docker.io/elastic/logstash:8.15.0
20-
:kibana-image: docker.io/elastic/kibana:8.15.0
21-
:keycloak-docker-image: quay.io/keycloak/keycloak:26.2.0
19+
:logstash-image: docker.io/elastic/logstash:8.18.2
20+
:kibana-image: docker.io/elastic/kibana:8.18.2
21+
:keycloak-docker-image: quay.io/keycloak/keycloak:26.2.4
2222
:jandex-version: 3.3.1
2323
:jandex-gradle-plugin-version: 1.0.0
2424
:kotlin-version: 2.1.21

_guides/databases-dev-services.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ Login credentials are the same for most databases, except when the database requ
217217
|`quarkus` for the default datasource or name of the datasource
218218

219219
|Microsoft SQL Server
220-
|`SA`
220+
|`sa`
221221
|`Quarkus123`
222222
|
223223

_guides/gradle-tooling.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ Run the native tests using:
584584
./gradlew testNative
585585
----
586586

587-
This task depends on `quarkusBuild`, so it will generate the native image before running the tests.
587+
This task depends on `quarkusBuild`, so it will generate the native image before running the native tests.
588588

589589
[NOTE]
590590
====
@@ -628,7 +628,7 @@ Those tests can be placed in a `src/integrationTest/java` directory and executed
628628
./gradlew quarkusIntTest
629629
----
630630

631-
This task depends on both `test` and `quarkusBuild` tasks. The final artifact will be produced before running tests.
631+
This task depends on `quarkusBuild`, so it will generate the artifact before running the integration tests.
632632

633633
== Using fast-jar
634634

_guides/kafka-schema-registry-avro.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -797,7 +797,7 @@ dependencies {
797797
In JVM mode, any version of `io.confluent:kafka-avro-serializer` can be used.
798798
In native mode, Quarkus supports the following versions: `6.2.x`, `7.0.x`, `7.1.x`, `7.2.x`, `7.3.x`.
799799

800-
For version `7.4.x` and `7.5.x`, due to an issue with the Confluent Schema Serializer, you need to add another dependency:
800+
For versions `7.4.x` and later, due to an issue with the Confluent Schema Serializer, you need to add another dependency:
801801

802802
[source,xml,role="primary asciidoc-tabs-target-sync-cli asciidoc-tabs-target-sync-maven"]
803803
.pom.xml

_guides/kotlin.adoc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -462,6 +462,11 @@ data class ResultItem(
462462
...
463463
----
464464

465+
[NOTE]
466+
====
467+
When using Kotlin with Quarkus REST, it is worth considering the use of `quarkus-rest-kotlin-serialization` which leverages the Kotlin Serialization framework instead of Jackson.
468+
====
469+
465470
== Kotlin and the Kubernetes Client
466471

467472
When working with the `quarkus-kubernetes` extension and have Kotlin classes bound to CustomResource definitions (like you do for building operators), you need to be aware that the underlying Fabric8 Kubernetes Client uses its own static Jackson `ObjectMapper` s, which can be configured as follows with the `KotlinModule`:

_guides/messaging.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ include::_attributes.adoc[]
1616
:mutiny: https://smallrye.io/smallrye-mutiny/latest/
1717
:eclipse-vertx: https://vertx.io/
1818
:camel-smallrye-reactive-messaging: https://camel.apache.org/camel-quarkus/3.8.x/reference/extensions/smallrye-reactive-messaging.html
19-
:nats-jetstream: https://docs.quarkiverse.io/quarkus-reactive-messsaging-nats-jetstream/dev/index.html
19+
:nats-jetstream: https://docs.quarkiverse.io/quarkus-reactive-messaging-nats-jetstream/dev/index.html
2020
:solace-quarkus: https://solacelabs.github.io/solace-quarkus/
2121
:http-websocket-connector: https://quarkus.io/extensions/io.quarkiverse.reactivemessaging.http/quarkus-reactive-messaging-http/
2222

_guides/observability-devservices-lgtm.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@ This is the most common way to output metrics from Micrometer and the default wa
5353
.pom.xml
5454
----
5555
<dependency>
56-
<groupId>io.quarkiverse.micrometer.registry</groupId>
56+
<groupId>io.quarkus</groupId>
5757
<artifactId>quarkus-micrometer-registry-prometheus</artifactId>
5858
</dependency>
5959
----
6060

6161
[source,gradle,role="secondary asciidoc-tabs-target-sync-gradle"]
6262
.build.gradle
6363
----
64-
implementation("io.quarkiverse.micrometer.registry:quarkus-micrometer-registry-prometheus")
64+
implementation("io.quarkus:quarkus-micrometer-registry-prometheus")
6565
----
6666

6767
==== Using the Micrometer OTLP registry

0 commit comments

Comments
 (0)