Skip to content

Commit 78b8e9e

Browse files
committed
Sync documentation of main branch
1 parent e3c62bf commit 78b8e9e

File tree

4 files changed

+45
-3
lines changed

4 files changed

+45
-3
lines changed

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

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10782,6 +10782,27 @@ endif::add-copy-button-to-env-var[]
1078210782
|Map<String,String>
1078310783
|
1078410784

10785+
a|icon:lock[title=Fixed at build time] [[quarkus-core_quarkus-test-rest-assured-enable-logging-on-failure]] [.property-path]##link:#quarkus-core_quarkus-test-rest-assured-enable-logging-on-failure[`quarkus.test.rest-assured.enable-logging-on-failure`]##
10786+
ifdef::add-copy-button-to-config-props[]
10787+
config_property_copy_button:+++quarkus.test.rest-assured.enable-logging-on-failure+++[]
10788+
endif::add-copy-button-to-config-props[]
10789+
10790+
10791+
[.description]
10792+
--
10793+
Enable logging of both the request and the response if REST Assureds test validation fails
10794+
10795+
10796+
ifdef::add-copy-button-to-env-var[]
10797+
Environment variable: env_var_with_copy_button:+++QUARKUS_TEST_REST_ASSURED_ENABLE_LOGGING_ON_FAILURE+++[]
10798+
endif::add-copy-button-to-env-var[]
10799+
ifndef::add-copy-button-to-env-var[]
10800+
Environment variable: `+++QUARKUS_TEST_REST_ASSURED_ENABLE_LOGGING_ON_FAILURE+++`
10801+
endif::add-copy-button-to-env-var[]
10802+
--
10803+
|boolean
10804+
|`true`
10805+
1078510806
a|icon:lock[title=Fixed at build time] [[quarkus-core_quarkus-test-arg-line]] [.property-path]##link:#quarkus-core_quarkus-test-arg-line[`quarkus.test.arg-line`]##
1078610807
ifdef::add-copy-button-to-config-props[]
1078710808
config_property_copy_button:+++quarkus.test.arg-line+++[]

_generated-doc/main/config/quarkus-core_quarkus.test.adoc

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -384,6 +384,27 @@ endif::add-copy-button-to-env-var[]
384384
|Map<String,String>
385385
|
386386

387+
a|icon:lock[title=Fixed at build time] [[quarkus-core_quarkus-test-rest-assured-enable-logging-on-failure]] [.property-path]##link:#quarkus-core_quarkus-test-rest-assured-enable-logging-on-failure[`quarkus.test.rest-assured.enable-logging-on-failure`]##
388+
ifdef::add-copy-button-to-config-props[]
389+
config_property_copy_button:+++quarkus.test.rest-assured.enable-logging-on-failure+++[]
390+
endif::add-copy-button-to-config-props[]
391+
392+
393+
[.description]
394+
--
395+
Enable logging of both the request and the response if REST Assureds test validation fails
396+
397+
398+
ifdef::add-copy-button-to-env-var[]
399+
Environment variable: env_var_with_copy_button:+++QUARKUS_TEST_REST_ASSURED_ENABLE_LOGGING_ON_FAILURE+++[]
400+
endif::add-copy-button-to-env-var[]
401+
ifndef::add-copy-button-to-env-var[]
402+
Environment variable: `+++QUARKUS_TEST_REST_ASSURED_ENABLE_LOGGING_ON_FAILURE+++`
403+
endif::add-copy-button-to-env-var[]
404+
--
405+
|boolean
406+
|`true`
407+
387408
a|icon:lock[title=Fixed at build time] [[quarkus-core_quarkus-test-arg-line]] [.property-path]##link:#quarkus-core_quarkus-test-arg-line[`quarkus.test.arg-line`]##
388409
ifdef::add-copy-button-to-config-props[]
389410
config_property_copy_button:+++quarkus.test.arg-line+++[]

_versions/main/guides/security-jwt-build.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ SmallRye JWT supports the following properties, which can be used to customize h
370370
|`smallrye.jwt.new-token.issuer` |none |Token issuer used to set an `iss` (issuer) claim value if this claim has not already been set.
371371
|`smallrye.jwt.new-token.audience` |none |Token audience used to set an `aud` (audience) claim value if this claim has not already been set.
372372
|`smallrye.jwt.new-token.override-matching-claims` |`false` | Set this property to `true` for `smallrye.jwt.new-token.issuer` and `smallrye.jwt.new-token.audience` values to override the already initialized `iss` (issuer) and `aud` (audience) claims.
373-
|smallrye.jwt.new-token.add-default-claims|true|Set this property to `false` to disable an automatic addition of the `iat` (issued at), `exp` (expiration time) and `jti` (token identifier) claims when such claims have not already been set.
373+
|`smallrye.jwt.new-token.add-default-claims`|true|Set this property to `false` to disable an automatic addition of the `iat` (issued at), `exp` (expiration time) and `jti` (token identifier) claims when such claims have not already been set.
374374
|`smallrye.jwt.keystore.type` |`JKS` |This property can be used to customize a keystore type if either `smallrye.jwt.sign.key.location` or `smallrye.jwt.encrypt.key.location` or both of these properties point to a `KeyStore` file. If it is not set then the file name will be checked to determine the keystore type before defaulting to `JKS`.
375375
|`smallrye.jwt.keystore.provider` | |This property can be used to customize a `KeyStore` provider if `smallrye.jwt.sign.key.location` or `smallrye.jwt.encrypt.key.location` point to a `KeyStore` file.
376376
|`smallrye.jwt.keystore.password` | |Keystore password. If `smallrye.jwt.sign.key.location` or `smallrye.jwt.encrypt.key.location` point to a `KeyStore` file, this property must be set.

_versions/main/guides/smallrye-fault-tolerance.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ implementation("io.quarkus:quarkus-smallrye-fault-tolerance")
576576
== Additional resources
577577

578578
SmallRye Fault Tolerance has more features than shown here.
579-
Please check the link:https://smallrye.io/docs/smallrye-fault-tolerance/6.9.1/index.html[SmallRye Fault Tolerance documentation] to learn about them.
579+
Please check the link:https://smallrye.io/docs/smallrye-fault-tolerance/6.9.2/index.html[SmallRye Fault Tolerance documentation] to learn about them.
580580

581581
In Quarkus, you can use the SmallRye Fault Tolerance optional features out of the box.
582582

@@ -608,7 +608,7 @@ quarkus.fault-tolerance.mp-compatibility=true
608608
----
609609
====
610610

611-
The link:https://smallrye.io/docs/smallrye-fault-tolerance/6.9.1/reference/programmatic-api.html[programmatic API] is present and integrated with the declarative, annotation-based API.
611+
The link:https://smallrye.io/docs/smallrye-fault-tolerance/6.9.2/reference/programmatic-api.html[programmatic API] is present and integrated with the declarative, annotation-based API.
612612
You can use the `Guard`, `TypedGuard` and `@ApplyGuard` APIs out of the box.
613613

614614
Support for Kotlin is present (assuming you use the Quarkus extension for Kotlin), so you can guard your `suspend` functions with fault tolerance annotations.

0 commit comments

Comments
 (0)