openapi-generator
openapi-generator copied to clipboard
OpenAPI Generator allows generation of API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3)
#### Bug Report Checklist - [ ] Have you provided a full/minimal spec to reproduce the issue? - [x] Have you validated the input using an OpenAPI validator ([example](https://apidevtools.org/swagger-parser/online/))? -...
This adds an `.sdkmanrc` to the project. I've recently found it the most single valuable tools for version management across different projects, as it can ensure each project has exactly...
When serializing collections, make sure to serialize the members of the collection first, before applying http_build_query or implode. @jebentier (2017/07), @dkarlovi (2017/07), @mandrean (2017/08), @jfastnacht (2017/09), [@ybelenko](https://github.com/ybelenko) (2018/07), @renepardon (2018/12)...
### Is your feature request related to a problem? Please describe. The current specification version, 3.1, supports the `mutualTLS` see: * https://spec.openapis.org/oas/v3.1.0#security-scheme-object * https://learn.openapis.org/specification/security.html#mutual-tls However the generator is not supporting...
Fixes #18517, Gradle builds work again using the test file: https://gist.github.com/Bethibande/c97b0b64e3dc284c056c02fbf3778a9b ### PR checklist - [x] Read the [contribution guidelines](https://github.com/openapitools/openapi-generator/blob/master/CONTRIBUTING.md). - [x] Pull Request title clearly describes the work in...
- Use `errors.As` in errors.go - Fix linting - Spelling mistake - should return concrete classes instead of interface - code inlining ### PR checklist - [x] Read the [contribution...
#### Bug Report Checklist - [x] Have you provided a full/minimal spec to reproduce the issue? - [x] Have you validated the input using an OpenAPI validator ([example](https://apidevtools.org/swagger-parser/online/))? - [x]...
#### Bug Report Checklist - [x] Have you provided a full/minimal spec to reproduce the issue? - [x] Have you validated the input using an OpenAPI validator ([example](https://apidevtools.org/swagger-parser/online/))? - [x]...
Default values for strings are missing double quotes in the golang server code Fixes - fixes #18472 ### PR checklist - [x] Read the [contribution guidelines](https://github.com/openapitools/openapi-generator/blob/master/CONTRIBUTING.md). - [x] Pull Request...
The `instanceOf{{classname}}` function introduced in 93b76dde371b1e3e111040541ef568a329b62be6 makes use of the [Object.values](https://262.ecma-international.org/8.0/#sec-object.values) function introduced in [ECMAScript 2017](https://262.ecma-international.org/8.0), thus breaking compatibility with prior versions such as ES2016 and ES2015. This PR suggests...