-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Spring REST Docs 3.0.0 (#211) #225
Support Spring REST Docs 3.0.0 (#211) #225
Conversation
According to spring-rest-docs 'requestParameters' are replaced by 'queryParameters' and 'formParameters'. If 'requestParameters' are used to document the API, this must be replaced by one of the new functions Upgrades (needed to use spring-rest-docs 3.0.0): * gradle 7.6 * kotlin 1.7.10 * spring-boot 3.0.2 * java 17
33be220
to
3540b3a
Compare
I just figured out that I missed the plugin part at least. I gonna change this PR to a draft again. Sorry for any inconvenience. |
Tested with upgraded sample app, which is not finally done but can be seen in this branch. |
56ed8e8
to
0cf4133
Compare
Thanks a lot for this effort! |
You are welcome. We are using this project for quite some time so thanks for maintaining. |
According to spring-rest-docs 'requestParameters' are replaced by 'queryParameters' and 'formParameters'.
If 'requestParameters' are used to document the API, this must be replaced by one of the new functions
Upgrades (needed to use spring-rest-docs 3.0.0):
Relates to #211