Skip to content

Commit b1d4377

Browse files
committed
code review
1 parent edbf166 commit b1d4377

File tree

223 files changed

+276
-231
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

223 files changed

+276
-231
lines changed

CHANGELOG.md

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

8+
## [2.7.1] - 2025-01-03
9+
10+
### Added
11+
- #2790 - Moving to OpenAPI 3.1 as the default implementation for springdoc-openapi
12+
- #2817 - Obey annotations when flattening ParameterObject fields
13+
- #2826 - Make it possible to mark parameters with @RequestParam annotation to be sent in form instead of query.
14+
- #2822 - Support returning null in ParameterCustomizer
15+
- #2830 - Add support for deprecated fields.
16+
- #2780 - Add Security Schema by AutoConfigure
17+
18+
### Changed
19+
- Upgrade spring-boot to 3.4.1
20+
- Upgrade spring-cloud-function to 4.2.0
21+
- Upgrade swagger-core to 2.2.27
22+
23+
### Fixed
24+
- #2804 - Stable release 2.7.0 depends on Spring Cloud Milestone 4.2.0-M1
25+
- #2828 - Required a bean of type 'org.springframework.data.rest.webmvc.mapping.Associations' that could not be found.
26+
- #2823 - Capturing pattern in identical paths only renders the path element of one method
27+
- #2817 - Automatically add required if a field is @notNull or @NotBlank.
28+
- #2814 - An unresolvable circular reference with management.endpoint.gateway.enabled=true.
29+
- #2798 - Object schema generated for Unit Kotlin type.
30+
- #2797 - Removing operationId via customizer does not work anymore.
31+
- #2833 - Resolve infinite recursion and add example test with OpenAPI v3.1
32+
- #2827 - Ignoring @Parameter(required = false)
33+
834
## [2.7.0] - 2024-23-11
935

1036
### Added

springdoc-openapi-starter-common/src/main/java/org/springdoc/api/AbstractOpenApiResource.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.
@@ -21,7 +21,7 @@
2121
* * * *
2222
* * *
2323
* *
24-
*
24+
*
2525
*/
2626

2727
package org.springdoc.api;

springdoc-openapi-starter-common/src/main/java/org/springdoc/api/ErrorMessage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/api/OpenApiResourceNotFoundException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/annotations/ParameterObject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/annotations/RouterOperation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/annotations/RouterOperations.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/conditions/CacheOrGroupedOpenApiCondition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/conditions/MultipleOpenApiGroupsCondition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/conditions/MultipleOpenApiSupportCondition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/conditions/SpecPropertiesCondition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/SpringDocConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/SpringDocDataRestConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/SpringDocFunctionCatalogConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/SpringDocGroovyConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/SpringDocHateoasConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/SpringDocJacksonKotlinModuleConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/SpringDocJavadocConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/SpringDocKotlinConfiguration.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.
@@ -30,7 +30,6 @@ import io.swagger.v3.oas.annotations.Parameter
3030
import org.springdoc.core.customizers.KotlinDeprecatedPropertyCustomizer
3131
import org.springdoc.core.customizers.ParameterCustomizer
3232
import org.springdoc.core.providers.ObjectMapperProvider
33-
import org.springdoc.core.service.AbstractRequestService.addRequestWrapperToIgnore
3433
import org.springdoc.core.utils.Constants
3534
import org.springdoc.core.utils.SpringDocUtils
3635
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/SpringDocKotlinxConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/SpringDocPageableConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/SpringDocRequiredModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/SpringDocSecurityConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/SpringDocSecurityOAuth2Customizer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/SpringDocSecurityOAuth2EndpointUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/SpringDocSortConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/SpringDocSpecPropertiesConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/SpringDocUIConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/hints/SpringDocDataRestHints.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/hints/SpringDocHints.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/hints/SpringDocSecurityHints.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/oauth2/SpringDocOAuth2AuthorizationServerMetadata.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/oauth2/SpringDocOAuth2Token.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/oauth2/SpringDocOAuth2TokenIntrospection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/oauth2/SpringDocOidcClientRegistrationRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/oauth2/SpringDocOidcClientRegistrationResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configuration/oauth2/SpringDocOidcProviderConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configurer/SpringdocActuatorBeanFactoryConfigurer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

springdoc-openapi-starter-common/src/main/java/org/springdoc/core/configurer/SpringdocBeanFactoryConfigurer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* * *
55
* * * *
66
* * * * *
7-
* * * * * * Copyright 2019-2024 the original author or authors.
7+
* * * * * * Copyright 2019-2025 the original author or authors.
88
* * * * * *
99
* * * * * * Licensed under the Apache License, Version 2.0 (the "License");
1010
* * * * * * you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)