Skip to content

Commit b5abb98

Browse files
author
bnasslahsen
committed
project update
1 parent 9b718e8 commit b5abb98

File tree

5 files changed

+24
-19
lines changed

5 files changed

+24
-19
lines changed

index.md

Lines changed: 13 additions & 12 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.3</version>
44+
<version>1.4.4</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.3</version>
66+
<version>1.4.4</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.3</version>
139+
<version>1.4.4</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.3</version>
238+
<version>1.4.4</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.3</version>
257+
<version>1.4.4</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.3</version>
268+
<version>1.4.4</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.3</version>
279+
<version>1.4.4</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.3</version>
292+
<version>1.4.4</version>
293293
</dependency>
294294
```
295295

@@ -371,10 +371,11 @@ For more custom configuration of springdoc-openapi-gradle-plugin ,you can consul
371371

372372
# **springdoc applications demos**
373373

374-
## [Demo Spring Boot 2 Web MVC with OpenAPI 3](https://springdoc-openapi-spring-boot-2-webmvc-fearless-giraffe.eu-de.mybluemix.net/).
375-
## [Demo Spring Boot 2 WebFlux with OpenAPI 3](https://springdoc-openapi-spring-boot-2-webflux-quiet-ratel.eu-de.mybluemix.net/swagger-ui.html).
376-
## [Demo Spring Boot 1 Web MVC with OpenAPI 3](https://springdoc-openapi-spring-boot-1-nice-kudu.eu-de.mybluemix.net/).
377-
## [Demo Spring Boot 2 WebFlux with Functional endpoints OpenAPI 3](https://springdoc-openapi-spring-boot-2-webflux-func-shiny-gerenuk.eu-de.mybluemix.net/swagger-ui.html).
374+
## [Demo Spring Boot 2 Web MVC with OpenAPI 3](http://158.101.164.60:8081/).
375+
## [Demo Spring Boot 2 WebFlux with OpenAPI 3](http://158.101.164.60:8082/).
376+
## [Demo Spring Boot 1 Web MVC with OpenAPI 3](http://158.101.164.60:8083/).
377+
## [Demo Spring Boot 2 WebFlux with Functional endpoints OpenAPI 3](http://158.101.164.60:8084/swagger-ui.html).
378+
## [Demo Spring Boot 2 and Spring Hateoas with OpenAPI 3](http://158.101.164.60:8085/swagger-ui.html).
378379

379380
![Branching](https://springdoc.org/assets/images/pets.png)
380381

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.3</version>
13+
<version>1.4.4</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.3</springdoc.version>
12+
<springdoc.version>1.4.4</springdoc.version>
1313
</properties>
1414

1515
<build>

springdoc-properties.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ springdoc.api-docs.resolve-schema-properties | `false` | `Boolean`. To enable p
3838
springdoc.remove-broken-reference-definitions | `true` | `Boolean`. To disable removal of broken reference definitions.
3939
springdoc.writer-with-default-pretty-printer | `false` | `Boolean`. To enable pretty print of the OpenApi specification.
4040
springdoc.model-converters.deprecating-converter.enabled | `true` | `Boolean`. To disable deprecating model converter.
41+
springdoc.use-fqn | `false` | `Boolean`. To enable fully qualified names.
4142

4243
### swagger-ui properties
4344
- The support of the swagger-ui properties is available on `springdoc-openapi`. See [Official documentation](https://swagger.io/docs/open-source-tools/swagger-ui/usage/configuration/).
@@ -81,6 +82,8 @@ springdoc.swagger-ui.oauth.scopeSeparator | | `String`. OAuth scope separator f
8182
springdoc.swagger-ui.oauth.additionalQueryStringParams | | `String`. Additional query parameters added to authorizationUrl and tokenUrl.
8283
springdoc.swagger-ui.oauth.<br/>useBasicAuthenticationWithAccessCodeGrant | `false` | `Boolean`. Only activated for the accessCode flow. During the authorization_code request to the tokenUrl, pass the Client Password using the HTTP Basic Authentication scheme (Authorization header with Basic base64encode(client_id + client_secret)).
8384
springdoc.swagger-ui.oauth.usePkceWithAuthorizationCodeGrant | `false` | `Boolean`.Only applies to authorizatonCode flows. Proof Key for Code Exchange brings enhanced security for OAuth public clients.
84-
85+
springdoc.swagger-ui.csrf.enabled | `false` | `Boolean`. To enable CSRF support
86+
springdoc.swagger-ui.csrf.cookie-name | `XSRF-TOKEN` | `String`. Optional CSRF, to set the CSRF cookie name.
87+
springdoc.swagger-ui.csrf.header-name | `X-XSRF-TOKEN` | `String`. Optional CSRF, to set the CSRF header name.
8588

8689
[back](./)

src/main/resources/index.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -371,10 +371,11 @@ For more custom configuration of springdoc-openapi-gradle-plugin ,you can consul
371371

372372
# **springdoc applications demos**
373373

374-
## [Demo Spring Boot 2 Web MVC with OpenAPI 3](https://springdoc-openapi-spring-boot-2-webmvc-fearless-giraffe.eu-de.mybluemix.net/).
375-
## [Demo Spring Boot 2 WebFlux with OpenAPI 3](https://springdoc-openapi-spring-boot-2-webflux-quiet-ratel.eu-de.mybluemix.net/swagger-ui.html).
376-
## [Demo Spring Boot 1 Web MVC with OpenAPI 3](https://springdoc-openapi-spring-boot-1-nice-kudu.eu-de.mybluemix.net/).
377-
## [Demo Spring Boot 2 WebFlux with Functional endpoints OpenAPI 3](https://springdoc-openapi-spring-boot-2-webflux-func-shiny-gerenuk.eu-de.mybluemix.net/swagger-ui.html).
374+
## [Demo Spring Boot 2 Web MVC with OpenAPI 3](http://158.101.164.60:8081/).
375+
## [Demo Spring Boot 2 WebFlux with OpenAPI 3](http://158.101.164.60:8082/).
376+
## [Demo Spring Boot 1 Web MVC with OpenAPI 3](http://158.101.164.60:8083/).
377+
## [Demo Spring Boot 2 WebFlux with Functional endpoints OpenAPI 3](http://158.101.164.60:8084/swagger-ui.html).
378+
## [Demo Spring Boot 2 and Spring Hateoas with OpenAPI 3](http://158.101.164.60:8085/swagger-ui.html).
378379

379380
![Branching](https://springdoc.org/assets/images/pets.png)
380381

0 commit comments

Comments
 (0)