Skip to content

Commit 4a97b76

Browse files
author
bnasslahsen
committed
update new release
1 parent 348777f commit 4a97b76

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ SpringDocUtils.getConfig().replaceWithSchema(MonetaryAmount.class, new ObjectSch
664664
```
665665

666666
### How can i agreagte external endpoints (exposing OPENAPI 3 spec) inside one single application?
667-
The properties springdoc.swagger-ui.urls.*, are suitable to configure external (/v3/api-docs url).
667+
The properties `springdoc.swagger-ui.urls.*`, are suitable to configure external (/v3/api-docs url).
668668
For example if you want to agreagte all the endpoints of other services, inside one single application.
669669
Don't forget that CORS needs to be enabled as well.
670670

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.5</version>
44+
<version>1.4.6</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.5</version>
66+
<version>1.4.6</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.5</version>
139+
<version>1.4.6</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.5</version>
238+
<version>1.4.6</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.5</version>
257+
<version>1.4.6</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.5</version>
268+
<version>1.4.6</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.5</version>
279+
<version>1.4.6</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.5</version>
292+
<version>1.4.6</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.5</version>
13+
<version>1.4.6</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.5</springdoc.version>
12+
<springdoc.version>1.4.6</springdoc.version>
1313
</properties>
1414

1515
<build>

0 commit comments

Comments
 (0)