From b53628d62ebaa98b378b8f4da31e8ac787d6594e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gildas=20Qu=C3=A9m=C3=A9ner?= Date: Mon, 26 Jan 2026 16:41:47 +0100 Subject: [PATCH] Fix default-produces-media-type unescaped value The previous value was transforming the double star-wrapped strings as a strong-formated strings --- src/docs/asciidoc/core-properties.adoc | 2 +- src/docs/asciidoc/v1/core-properties.adoc | 2 +- src/docs/asciidoc/v4/core-properties.adoc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/docs/asciidoc/core-properties.adoc b/src/docs/asciidoc/core-properties.adoc index 82de924..3a4ef06 100644 --- a/src/docs/asciidoc/core-properties.adoc +++ b/src/docs/asciidoc/core-properties.adoc @@ -13,7 +13,7 @@ |springdoc.paths-to-exclude | | `List of Strings`. The list of paths to exclude (comma separated) |springdoc.packages-to-exclude | | `List of Strings`. The list of packages to exclude (comma separated) |springdoc.default-consumes-media-type | `application/json` | `String`. The default consumes media type. -|springdoc.default-produces-media-type | `*/*` | `String`. The default produces media type. +|springdoc.default-produces-media-type | `\*/*` | `String`. The default produces media type. |springdoc.cache.disabled | `false` | `Boolean`. To disable the springdoc-openapi cache of the calculated OpenAPI. |springdoc.show-actuator | `false` | `Boolean`. To display the actuator endpoints. |springdoc.auto-tag-classes | `true` | `Boolean`. To disable the springdoc-openapi automatic tags. diff --git a/src/docs/asciidoc/v1/core-properties.adoc b/src/docs/asciidoc/v1/core-properties.adoc index eac1a79..434e47b 100644 --- a/src/docs/asciidoc/v1/core-properties.adoc +++ b/src/docs/asciidoc/v1/core-properties.adoc @@ -13,7 +13,7 @@ |springdoc.paths-to-exclude | | `List of Strings`.The list of paths to exclude (comma separated) |springdoc.packages-to-exclude | | `List of Strings`.The list of packages to exclude (comma separated) |springdoc.default-consumes-media-type | `application/json` | `String`. The default consumes media type. -|springdoc.default-produces-media-type | `*/*` | `String`.The default produces media type. +|springdoc.default-produces-media-type | `\*/*` | `String`.The default produces media type. |springdoc.cache.disabled | `false` | `Boolean`. To disable the springdoc-openapi cache of the calculated OpenAPI. |springdoc.show-actuator | `false` | `Boolean`. To display the actuator endpoints. |springdoc.auto-tag-classes | `true` | `Boolean`. To disable the springdoc-openapi automatic tags. diff --git a/src/docs/asciidoc/v4/core-properties.adoc b/src/docs/asciidoc/v4/core-properties.adoc index 6ce50ea..5412db7 100644 --- a/src/docs/asciidoc/v4/core-properties.adoc +++ b/src/docs/asciidoc/v4/core-properties.adoc @@ -13,7 +13,7 @@ |springdoc.paths-to-exclude | | `List of Strings`. The list of paths to exclude (comma separated) |springdoc.packages-to-exclude | | `List of Strings`. The list of packages to exclude (comma separated) |springdoc.default-consumes-media-type | `application/json` | `String`. The default consumes media type. -|springdoc.default-produces-media-type | `*/*` | `String`. The default produces media type. +|springdoc.default-produces-media-type | `\*/*` | `String`. The default produces media type. |springdoc.cache.disabled | `false` | `Boolean`. To disable the springdoc-openapi cache of the calculated OpenAPI. |springdoc.show-actuator | `false` | `Boolean`. To display the actuator endpoints. |springdoc.auto-tag-classes | `true` | `Boolean`. To disable the springdoc-openapi automatic tags.