Skip to content

Commit 50b2fa8

Browse files
committedMar 20, 2025
swagger-core upgrade to 2.2.29
1 parent eed01f3 commit 50b2fa8

Some content is hidden

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

78 files changed

+791
-710
lines changed
 

‎pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
6161
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
6262
<nexus-staging-maven-plugin>1.6.8</nexus-staging-maven-plugin>
63-
<swagger-api.version>2.2.28</swagger-api.version>
63+
<swagger-api.version>2.2.29</swagger-api.version>
6464
<swagger-ui.version>5.20.0</swagger-ui.version>
6565
<gmavenplus-plugin.version>1.13.1</gmavenplus-plugin.version>
6666
<jjwt.version>0.9.1</jjwt.version>

‎springdoc-openapi-starter-common/src/main/java/org/springdoc/core/customizers/DataRestDelegatingMethodParameterCustomizer.java

+5
Original file line numberDiff line numberDiff line change
@@ -1029,6 +1029,11 @@ public Extension[] extensions() {
10291029
public String ref() {
10301030
return parameter.ref();
10311031
}
1032+
1033+
@Override
1034+
public Class<?>[] validationGroups() {
1035+
return new Class[0];
1036+
}
10321037
};
10331038
return Optional.of(parameterNew);
10341039
}

0 commit comments

Comments
 (0)
Failed to load comments.