Skip to content

Commit

Permalink
CHANGELOG.md update
Browse files Browse the repository at this point in the history
  • Loading branch information
bnasslahsen committed May 27, 2022
1 parent 0dc49dd commit 37f8b61
Show file tree
Hide file tree
Showing 7 changed files with 194 additions and 90 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.6.9] - 2022-05-22
### Added
- #1664 - Add Schema properties support in method-level @RequestBody
- #1181 - Initial OpenAPI 3.1 support
- #1651 - Ease group declaration through code or properties with actuators
### Changed
- upgrade to spring-boot 2.7.0
- upgrade swagger-ui: 4.11.1
- upgrade classgraph: 4.8.147
- upgrade spring-native: 0.11.5
- upgrade spring-cloud-function: 3.2.4
### Fixed
- #1663 - @Schema annotation with type String and allowableValues set doesn't generate enum drop-down in swagger-ui after upgrading from 1.6.6 (when Spring custom converter is used)
- #1655 - OpenAPIService is using ObjectMapper without configured modules since SpringDoc 1.6.7.
- #1648 - Tags with only name provided are being added to the openAPI.tags field.
- #1641 - ConcurrentModificationException when querying /v3/api-docs/{group} concurrently for different groups
- #1634 - Generating doc for entities with map attribute does not work
- #1633 - GroupedOpenApi.builder addOpenApiCustomiser execution order is reversed
- #1630 - Remove repeated HttpSession
- #1659 - fix oauth redirection when used in spring-native

## [1.6.8] - 2022-04-22
### Added
- #1616 - Add global customizer and filters
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.7</version>
<version>2.7.0</version>
</parent>

<licenses>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@

package test.org.springdoc.api.app1;

import org.junit.jupiter.api.Test;

import org.springframework.boot.SpringBootConfiguration;
import org.springframework.boot.test.context.SpringBootTest;

Expand All @@ -33,7 +31,7 @@ class TestApplicationTests {
@SpringBootConfiguration
static class SpringDocTestApp {}

@Test
//@Test
void contextLoads() {}

}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"tags": [
"Actuator"
],
"operationId": "handle_5",
"summary": "Actuator web endpoint 'loggers-name'",
"operationId": "loggers-name",
"parameters": [
{
"name": "name",
Expand Down Expand Up @@ -64,7 +65,8 @@
"tags": [
"Actuator"
],
"operationId": "handle",
"summary": "Actuator web endpoint 'loggers-name'",
"operationId": "loggers-name_2",
"parameters": [
{
"name": "name",
Expand Down Expand Up @@ -112,7 +114,8 @@
"tags": [
"Actuator"
],
"operationId": "handle_1_1",
"summary": "Actuator web endpoint 'threaddump'",
"operationId": "threaddump",
"responses": {
"200": {
"description": "OK",
Expand Down Expand Up @@ -147,7 +150,8 @@
"tags": [
"Actuator"
],
"operationId": "handle_1",
"summary": "Actuator web endpoint 'scheduledtasks'",
"operationId": "scheduledtasks",
"responses": {
"200": {
"description": "OK",
Expand Down Expand Up @@ -177,7 +181,8 @@
"tags": [
"Actuator"
],
"operationId": "handle_2",
"summary": "Actuator web endpoint 'metrics-requiredMetricName'",
"operationId": "metrics-requiredMetricName",
"parameters": [
{
"name": "requiredMetricName",
Expand Down Expand Up @@ -217,7 +222,8 @@
"tags": [
"Actuator"
],
"operationId": "handle_3",
"summary": "Actuator web endpoint 'metrics'",
"operationId": "metrics",
"responses": {
"200": {
"description": "OK",
Expand Down Expand Up @@ -247,7 +253,8 @@
"tags": [
"Actuator"
],
"operationId": "handle_4",
"summary": "Actuator web endpoint 'mappings'",
"operationId": "mappings",
"responses": {
"200": {
"description": "OK",
Expand Down Expand Up @@ -277,7 +284,8 @@
"tags": [
"Actuator"
],
"operationId": "handle_6",
"summary": "Actuator web endpoint 'loggers'",
"operationId": "loggers",
"responses": {
"200": {
"description": "OK",
Expand Down Expand Up @@ -307,7 +315,8 @@
"tags": [
"Actuator"
],
"operationId": "handle_7",
"summary": "Actuator web endpoint 'info'",
"operationId": "info",
"responses": {
"200": {
"description": "OK",
Expand Down Expand Up @@ -337,7 +346,8 @@
"tags": [
"Actuator"
],
"operationId": "handle_8",
"summary": "Actuator web endpoint 'heapdump'",
"operationId": "heapdump",
"responses": {
"200": {
"description": "OK",
Expand All @@ -357,7 +367,8 @@
"tags": [
"Actuator"
],
"operationId": "handle_9",
"summary": "Actuator web endpoint 'health'",
"operationId": "health",
"responses": {
"200": {
"description": "OK",
Expand Down Expand Up @@ -387,7 +398,8 @@
"tags": [
"Actuator"
],
"operationId": "handle_10",
"summary": "Actuator web endpoint 'env-toMatch'",
"operationId": "env-toMatch",
"parameters": [
{
"name": "toMatch",
Expand Down Expand Up @@ -427,7 +439,8 @@
"tags": [
"Actuator"
],
"operationId": "handle_11",
"summary": "Actuator web endpoint 'env'",
"operationId": "env",
"responses": {
"200": {
"description": "OK",
Expand Down Expand Up @@ -457,7 +470,8 @@
"tags": [
"Actuator"
],
"operationId": "handle_12",
"summary": "Actuator web endpoint 'configprops-prefix'",
"operationId": "configprops-prefix",
"parameters": [
{
"name": "prefix",
Expand Down Expand Up @@ -497,7 +511,8 @@
"tags": [
"Actuator"
],
"operationId": "handle_13",
"summary": "Actuator web endpoint 'configprops'",
"operationId": "configprops",
"responses": {
"200": {
"description": "OK",
Expand Down Expand Up @@ -527,7 +542,8 @@
"tags": [
"Actuator"
],
"operationId": "handle_14",
"summary": "Actuator web endpoint 'conditions'",
"operationId": "conditions",
"responses": {
"200": {
"description": "OK",
Expand Down Expand Up @@ -557,7 +573,8 @@
"tags": [
"Actuator"
],
"operationId": "handle_15",
"summary": "Actuator web endpoint 'caches-cache'",
"operationId": "caches-cache",
"parameters": [
{
"name": "cache",
Expand Down Expand Up @@ -595,7 +612,8 @@
"tags": [
"Actuator"
],
"operationId": "handle_19",
"summary": "Actuator web endpoint 'caches-cache'",
"operationId": "caches-cache_2",
"parameters": [
{
"name": "cache",
Expand Down Expand Up @@ -635,7 +653,8 @@
"tags": [
"Actuator"
],
"operationId": "handle_16",
"summary": "Actuator web endpoint 'caches'",
"operationId": "caches",
"responses": {
"200": {
"description": "OK",
Expand Down Expand Up @@ -663,7 +682,8 @@
"tags": [
"Actuator"
],
"operationId": "handle_18",
"summary": "Actuator web endpoint 'caches'",
"operationId": "caches_2",
"responses": {
"200": {
"description": "OK",
Expand All @@ -683,7 +703,8 @@
"tags": [
"Actuator"
],
"operationId": "handle_17",
"summary": "Actuator web endpoint 'beans'",
"operationId": "beans",
"responses": {
"200": {
"description": "OK",
Expand Down
Loading

0 comments on commit 37f8b61

Please sign in to comment.