Skip to content

Commit 81b40b8

Browse files
committed
Merge remote-tracking branch 'fork/master'
2 parents e2ed5ee + 78ac5f8 commit 81b40b8

File tree

10 files changed

+24
-10
lines changed

10 files changed

+24
-10
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.2.34] - 2020-03-17
8+
### Added
9+
- Property resolver on @operation.summary, @parameter.description and @parameter.name
10+
- Use required attribute from spring RequestBody annotation #468
11+
- Review configuration via springdoc.swagger-ui.urls #481
12+
- Support for auto fill clientId and clientSecret for webflux #333
13+
- Support to ignore annotations on parameter level
14+
### Changed
15+
- Update spring-boot-starter-parent to 2.2.5.RELEASE #469
16+
- Improve compatibility of springdoc-openapi-data-rest with Spring Webflux #477
17+
- Improve support of  Swagger UI to use provided spec.yml #480
18+
- Delegate primitive type generation to swagger-core
19+
### Fixed
20+
- Wrong schema mapping with inheritance. Fixes #489
721

822
## [1.2.33] - 2020-03-01
923
### Added
@@ -13,7 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1327
### Changed
1428
- Allow @Schema annotation to set an attribute as not required even if it's annotated with @NotNull #459
1529
- Make SpringDocAnnotationsUtils public #458
16-
- Make GenericResponseBuilder.calculateSchema method public #455.
30+
- Make GenericResponseBuilder.calculateSchema method public #455
1731

1832
## [1.2.32] - 2020-02-19
1933
### Added

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>org.springdoc</groupId>
44
<artifactId>springdoc-openapi</artifactId>
5-
<version>1.2.34-SNAPSHOT</version>
5+
<version>1.2.35-SNAPSHOT</version>
66
<packaging>pom</packaging>
77
<name>Spring openapi documentation generator</name>
88
<description>Spring openapi documentation generator</description>

springdoc-openapi-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springdoc</groupId>
77
<artifactId>springdoc-openapi</artifactId>
8-
<version>1.2.34-SNAPSHOT</version>
8+
<version>1.2.35-SNAPSHOT</version>
99
</parent>
1010
<dependencies>
1111
<dependency>

springdoc-openapi-data-rest/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>springdoc-openapi</artifactId>
55
<groupId>org.springdoc</groupId>
6-
<version>1.2.34-SNAPSHOT</version>
6+
<version>1.2.35-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

springdoc-openapi-kotlin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springdoc</groupId>
77
<artifactId>springdoc-openapi</artifactId>
8-
<version>1.2.34-SNAPSHOT</version>
8+
<version>1.2.35-SNAPSHOT</version>
99
</parent>
1010
<dependencies>
1111
<!-- springdoc-common -->

springdoc-openapi-security/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>springdoc-openapi</artifactId>
55
<groupId>org.springdoc</groupId>
6-
<version>1.2.34-SNAPSHOT</version>
6+
<version>1.2.35-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

springdoc-openapi-ui/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springdoc</groupId>
77
<artifactId>springdoc-openapi</artifactId>
8-
<version>1.2.34-SNAPSHOT</version>
8+
<version>1.2.35-SNAPSHOT</version>
99
</parent>
1010
<dependencies>
1111
<!-- springdoc-core -->

springdoc-openapi-webflux-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springdoc</groupId>
77
<artifactId>springdoc-openapi</artifactId>
8-
<version>1.2.34-SNAPSHOT</version>
8+
<version>1.2.35-SNAPSHOT</version>
99
</parent>
1010
<dependencies>
1111
<!-- springdoc-common -->

springdoc-openapi-webflux-ui/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springdoc</groupId>
77
<artifactId>springdoc-openapi</artifactId>
8-
<version>1.2.34-SNAPSHOT</version>
8+
<version>1.2.35-SNAPSHOT</version>
99
</parent>
1010
<dependencies>
1111
<!-- springdoc-core -->

springdoc-openapi-webmvc-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springdoc</groupId>
77
<artifactId>springdoc-openapi</artifactId>
8-
<version>1.2.34-SNAPSHOT</version>
8+
<version>1.2.35-SNAPSHOT</version>
99
</parent>
1010
<dependencies>
1111
<!-- springdoc-common -->

0 commit comments

Comments
 (0)