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.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7- ## [ 1.4.9 ] - 2020-10-xx
7+ ## [ 1.5.0 ] - 2020-11-13
88### Added
9+ - #891 - Provide a WebMvc.fn / WebFlux.fn functional DSL
10+ - #904 - Add support for placeholders for default value in @RequestParam Annotation.
911- Added property for deterministic and alphabetical orderding: springdoc.writer-with-order-by-keys
12+ _ Removal of deprecated method: GroupedOpenApi.setGroup
1013### Changed
1114- 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
1317### Fixed
1418- #889 - fix for flaky operationIds
1519- #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
1624
1725## [ 1.4.8] - 2020-09-27
1826### Added
Original file line number Diff line number Diff line change @@ -277,18 +277,6 @@ private Builder() {
277277 // use static factory method in parent class
278278 }
279279
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-
292280 /**
293281 * Group builder.
294282 *
You can’t perform that action at this time.
0 commit comments