Skip to content

Commit 48b7011

Browse files
author
bnasslahsen
committed
version update
1 parent 14fbc03 commit 48b7011

File tree

4 files changed

+18
-10
lines changed

4 files changed

+18
-10
lines changed

index.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This is a community-based project, not maintained by the Spring Framework Contri
4141
<dependency>
4242
<groupId>org.springdoc</groupId>
4343
<artifactId>springdoc-openapi-ui</artifactId>
44-
<version>1.4.7</version>
44+
<version>1.4.8</version>
4545
</dependency>
4646
```
4747
* This step is optional: For custom path of the swagger documentation in HTML format, add a custom springdoc property, in your spring-boot configuration file:
@@ -63,7 +63,7 @@ springdoc.swagger-ui.path=/swagger-ui.html
6363
<dependency>
6464
<groupId>org.springdoc</groupId>
6565
<artifactId>springdoc-openapi-webmvc-core</artifactId>
66-
<version>1.4.7</version>
66+
<version>1.4.8</version>
6767
</dependency>
6868
```
6969
* This step is optional: For custom path of the OpenAPI documentation in Json format, add a custom springdoc property, in your spring-boot configuration file:
@@ -136,7 +136,7 @@ springdoc.pathsToMatch=/v1, /api/balance/**
136136
<dependency>
137137
<groupId>org.springdoc</groupId>
138138
<artifactId>springdoc-openapi-webflux-ui</artifactId>
139-
<version>1.4.7</version>
139+
<version>1.4.8</version>
140140
</dependency>
141141
```
142142
* This step is optional: For custom path of the swagger documentation in HTML format, add a custom springdoc property, in your spring-boot configuration file:
@@ -235,7 +235,7 @@ This dependency enables the support of Spring Hateoas format.
235235
<dependency>
236236
<groupId>org.springdoc</groupId>
237237
<artifactId>springdoc-openapi-hateoas</artifactId>
238-
<version>1.4.7</version>
238+
<version>1.4.8</version>
239239
</dependency>
240240
```
241241

@@ -254,7 +254,7 @@ This dependency enables the support of spring-data-rest types as well: @Reposito
254254
<dependency>
255255
<groupId>org.springdoc</groupId>
256256
<artifactId>springdoc-openapi-data-rest</artifactId>
257-
<version>1.4.7</version>
257+
<version>1.4.8</version>
258258
</dependency>
259259
```
260260

@@ -265,7 +265,7 @@ This dependency helps ignoring @AuthenticationPrincipal in case its used on REST
265265
<dependency>
266266
<groupId>org.springdoc</groupId>
267267
<artifactId>springdoc-openapi-security</artifactId>
268-
<version>1.4.7</version>
268+
<version>1.4.8</version>
269269
</dependency>
270270
```
271271

@@ -276,7 +276,7 @@ This dependency improves the support of Kotlin types:
276276
<dependency>
277277
<groupId>org.springdoc</groupId>
278278
<artifactId>springdoc-openapi-kotlin</artifactId>
279-
<version>1.4.7</version>
279+
<version>1.4.8</version>
280280
</dependency>
281281
```
282282
- If your are using spring-web, you combine the springdoc-openapi-kotlin module with springdoc-openapi-ui.
@@ -289,7 +289,7 @@ This dependency improves the support of Kotlin types:
289289
<dependency>
290290
<groupId>org.springdoc</groupId>
291291
<artifactId>springdoc-openapi-groovy</artifactId>
292-
<version>1.4.7</version>
292+
<version>1.4.8</version>
293293
</dependency>
294294
```
295295

migrating-from-springfox.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ layout: default
1010
<dependency>
1111
<groupId>org.springdoc</groupId>
1212
<artifactId>springdoc-openapi-ui</artifactId>
13-
<version>1.4.7</version>
13+
<version>1.4.8</version>
1414
</dependency>
1515
```
1616

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<version>3.1.2-SNAPSHOT</version>
1010

1111
<properties>
12-
<springdoc.version>1.4.7</springdoc.version>
12+
<springdoc.version>1.4.8</springdoc.version>
1313
</properties>
1414

1515
<build>

springdoc-properties.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ springdoc.api-docs.path | `/v3/api-docs` | `String`, For custom path of the Open
1818
springdoc.api-docs.enabled | `true` | `Boolean`. To disable the springdoc-openapi endpoint (/v3/api-docs by default).
1919
springdoc.packages-to-scan | `*`| `List of Strings`.The list of packages to scan (comma separated)
2020
springdoc.paths-to-match | `/*`| `List of Strings`.The list of paths to match (comma separated)
21+
springdoc.produces-to-match | `/*`| `List of Strings`.The list of produces mediaTypes to match (comma separated)
22+
springdoc.headers-to-match | `/*`| `List of Strings`.The list of headers to match (comma separated)
23+
springdoc.consumes-to-match | `/*`| `List of Strings`.The list of consumes mediaTypes to match (comma separated)
2124
springdoc.paths-to-exclude | | `List of Strings`.The list of paths to exclude (comma separated)
2225
springdoc.packages-to-exclude | | `List of Strings`.The list of packages to exclude (comma separated)
2326
springdoc.default-consumes-media-type | `application/json` | `String`. The default consumes media type.
@@ -33,6 +36,9 @@ springdoc.group-configs[0].packages-to-scan | `*`| `List of Strings`.The list of
3336
springdoc.group-configs[0].paths-to-match | `/*`| `List of Strings`.The list of paths to match for a group(comma separated)
3437
springdoc.group-configs[0].paths-to-exclude | ``| `List of Strings`.The list of paths to exclude for a group(comma separated)
3538
springdoc.group-configs[0].packages-to-exclude | | `List of Strings`.The list of packages to exclude for a group(comma separated)
39+
springdoc.group-configs[0].produces-to-match | `/*`| `List of Strings`.The list of produces mediaTypes to match (comma separated)
40+
springdoc.group-configs[0].consumes-to-match | `/*`| `List of Strings`.The list of consumes mediaTypes to match (comma separated)
41+
springdoc.group-configs[0].headers-to-match | `/*`| `List of Strings`.The list of headers to match (comma separated)
3642
springdoc.webjars.prefix | `/webjars` |`String`, To change the webjars prefix that is visible the URL of swagger-ui for spring-webflux.
3743
springdoc.api-docs.resolve-schema-properties | `false` | `Boolean`. To enable property resolver on @Schema (name, title and description).
3844
springdoc.remove-broken-reference-definitions | `true` | `Boolean`. To disable removal of broken reference definitions.
@@ -87,5 +93,7 @@ springdoc.swagger-ui.oauth.usePkceWithAuthorizationCodeGrant | `false` | `Boolea
8793
springdoc.swagger-ui.csrf.enabled | `false` | `Boolean`. To enable CSRF support
8894
springdoc.swagger-ui.csrf.cookie-name | `XSRF-TOKEN` | `String`. Optional CSRF, to set the CSRF cookie name.
8995
springdoc.swagger-ui.csrf.header-name | `X-XSRF-TOKEN` | `String`. Optional CSRF, to set the CSRF header name.
96+
springdoc.swagger-ui.syntaxHighlight.activated | `true` | `Boolean`. Whether syntax highlighting should be activated or not.
97+
springdoc.swagger-ui.syntaxHighlight.theme | `agate` | `String`. `String=["agate"*, "arta", "monokai", "nord", "obsidian", "tomorrow-night"]`. [Highlight.js](https://highlightjs.org/static/demo/) syntax coloring theme to use. (Only these 6 styles are available.)
9098

9199
[back](./)

0 commit comments

Comments
 (0)