restdocs-spec
                                
                                
                                
                                    restdocs-spec copied to clipboard
                            
                            
                            
                        A maven plugin for generating Open API and Postman Collection specifications using Spring Restdocs.
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/BerkleyTechnologyServices/restdocs-spec). ## Config Migration Needed - [ ]...
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.fasterxml.jackson:jackson-bom](https://redirect.github.com/FasterXML/jackson-bom) | `2.16.1` -> `2.19.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/)...
Hello! Did you support WebTestClient? Because I received an empty openapi-2.0.json: { "swagger" : "2.0", "info" : { "description" : "Description", "version" : "0.0.1-SNAPSHOT", "title" : "title" }, "host" :...
I'm trying to use the new SubSchema attribute which was introduced in latest restdocs-api-spec https://github.com/ePages-de/restdocs-api-spec/pull/246 But when using it, I get an exception: Attribute example: ``` fieldWithPath("data").attributes(Attributes.key("schemaName").value("cookbookTest123")).description("Cookbook") ``` Exception: ```...
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github/codeql-action](https://redirect.github.com/github/codeql-action) | action | major | `v2` -> `v3` | --- ### Release...
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-java](https://redirect.github.com/actions/setup-java) | action | major | `v3` -> `v4` | --- ### Release...
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://redirect.github.com/actions/checkout) | action | major | `v3` -> `v4` | --- ### Release...
I'm trying to use ConstrainedFields for Bean Validation @Min, @Max but unable to get it to work. ``` 0.21 0.16.4 ``` As you can see below, SRequestDTO has property 'cc'...
Hello! This piece of code: ``` ResourceSnippetDetails details = resourceDetails() .requestSchema(new Schema(requestSchemaName)) .responseSchema(new Schema(responseSchemaName)); given() .spec(this.spec) .filter(document("{class-name}/{method-name}", details, null, preprocessResponse(prettyPrint()), requestFields( fieldWithPath("[]").description("Blah")) .andWithPrefix("[].", fieldWithPath("id").description("ID") .type(JsonFieldType.NUMBER), fieldWithPath("name").description("Name") .type(JsonFieldType.STRING)) ) ); ```...
I'm trying to use ConstrainedFields for Bean Validation but unable to get it to work. ```xml 0.9.9 0.18 ``` As you can see below, CreateBookRequestDto has property 'author' and it...