File tree Expand file tree Collapse file tree 2 files changed +10
-14
lines changed
springdoc-openapi-common/src/main/java/org/springdoc/core Expand file tree Collapse file tree 2 files changed +10
-14
lines changed Original file line number Diff line number Diff line change @@ -4,15 +4,23 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
- ## [ 1.4.9 ] - 2020-10-xx
7
+ ## [ 1.5.0 ] - 2020-11-13
8
8
### Added
9
+ - #891 - Provide a WebMvc.fn / WebFlux.fn functional DSL
10
+ - #904 - Add support for placeholders for default value in @RequestParam Annotation.
9
11
- Added property for deterministic and alphabetical orderding: springdoc.writer-with-order-by-keys
12
+ _ Removal of deprecated method: GroupedOpenApi.setGroup
10
13
### Changed
11
14
- Upgrade to Swagger-core 2.1.5
12
- - Upgrade swagger-ui version to 3.35.1
15
+ - Upgrade swagger-ui version to 3.36.2
16
+ - Upgrade to spring-boot v2.4.0
13
17
### Fixed
14
18
- #889 - fix for flaky operationIds
15
19
- #893 - Generate empty ` scopes ` object
20
+ - #925 - Always add all properties to include if excludeUnlistedProperties=true
21
+ - #920 - Define explicitly metadata for springdoc.swagger-ui.enabled
22
+ - #907 - Hidden controller showing up in swagger UI when springdoc.show-actuator is enabled
23
+ - #885 - Flaky operationIds for controller-methods with same name
16
24
17
25
## [ 1.4.8] - 2020-09-27
18
26
### Added
Original file line number Diff line number Diff line change @@ -277,18 +277,6 @@ private Builder() {
277
277
// use static factory method in parent class
278
278
}
279
279
280
- /**
281
- * Sets group.
282
- *
283
- * @param group the group
284
- * @return the group
285
- * @deprecated Since v1.4.0, GroupedOpenApi.setGroup is marked as deprecated. Use {@link #group(String) } instead. will be removed with v1.5.0
286
- */
287
- @ Deprecated
288
- public Builder setGroup (String group ) {
289
- return this .group (group );
290
- }
291
-
292
280
/**
293
281
* Group builder.
294
282
*
You can’t perform that action at this time.
0 commit comments