File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed
springdoc-openapi-common/src/main/java/org/springdoc/core
springdoc-openapi-webmvc-core/src/test/java/test/org/springdoc/api/v30/app192 Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,18 @@ 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.6.11] - 2022-08-21
8
+ ### Added
9
+ - #1805 - Default flat param object
10
+ ### Changed
11
+ - upgrade swagger-ui: 4.14.0
12
+ ### Fixed
13
+ - #1801 - Duplicated header values when an endpoint can be called with different headers
14
+ - #1801 - NPE for request bodies with content that has media type MULTIPART_FORM_DATA_VALUE
15
+ - #1793 - Query parameter part of request body in controller with MultiPartFile
16
+ - #1791 - Override-with-generic-response not working from 1.6.8 onwards
17
+ - #1799 - Polymorphism - Support JsonTypeInfo.Id.CLASS
18
+
7
19
## [ 1.6.10] - 2022-08-15
8
20
### Added
9
21
- #1700 - Support PageableDefault#value()
Original file line number Diff line number Diff line change 29
29
import java .lang .reflect .Type ;
30
30
import java .util .ArrayList ;
31
31
import java .util .Arrays ;
32
- import java .util .HashMap ;
33
32
import java .util .HashSet ;
34
33
import java .util .LinkedHashMap ;
35
34
import java .util .List ;
Original file line number Diff line number Diff line change 28
28
import io .swagger .v3 .oas .annotations .parameters .RequestBody ;
29
29
import io .swagger .v3 .oas .annotations .responses .ApiResponse ;
30
30
import io .swagger .v3 .oas .annotations .responses .ApiResponses ;
31
+
31
32
import org .springframework .http .HttpStatus ;
32
33
import org .springframework .http .MediaType ;
33
34
import org .springframework .http .ResponseEntity ;
You can’t perform that action at this time.
0 commit comments