-
Notifications
You must be signed in to change notification settings - Fork 6k
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
Enabled supportsInheritance for Objective-C generator. #3896
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* fix enum in sintra and nancyfx * add isContainer check for sinatra allowable value * fix EOL in nancyfx enum template
When the setter is taking an array as argument we cannot use `in_array()` to validate if the values are part of the allowed enum values. Instead we use `array_diff()` for containers now.
Fix spelling in ruby ApiClient: Configuraiton -> Configuration
[GO] Fixing compilation issue when pathParams is not presented
[Java] Fix @JsonCreator annotation issue with Java API clients using gson
updated versions for release
[PHP] add enum test cases for PHP generator (java)
* Add maven-javadoc-plugin to all Java clients. * Update sample petstores for other Java clients. * Fix unknown parameter on api_client's update_params_for_auth method. * Revert "Fix unknown parameter on api_client's update_params_for_auth method." To be moved to a separate PR. This reverts commit 1ee1866.
support Title as model name for any inline object
[PHP] Fix enum validation in container setters
Change-Id: I6711e96d4b119b2cf78860d4eb43fc178edae372
* [typescript-angular2] npm publish missing files * [typescript-angular2] build to dist folder
Fix NullPointerException if there are no other properties
[jmeter] #3800 Fixing testCases and paramName
…chubert/swagger-codegen into jimschubert-csharp/property-validations
[JMeter] add JMeter petstore sample
Triple mustache is required because annotations may contain chars like "=" that would be mistakenly encoded.
* add undertow generator * add apiException * add undertow server code gen * reovery sprintboot sample * update handler * output swagger.json and handler template change * remove api template * remove api.mustache * update pom.xml * update readme * add config files * add basePath to the handler and upgrade to 0.1.1 framework * add additional files for release * fixed the mvn verify issue * update one template to fix compile error for fake petstore
Fixed Swaagger -> Swagger
* use tag to organize flask controller * fix typo in python flask code gen * fix operationId for flask generator
Fixed typo in Readme
Use triple mustache for vendorExtensions.extraAnnotation
Fix NullPointerException when the oauth flow is missing
[Typescript][Angular2] Fix required properties in the model
Thanks for the PR but your commit (as shown in the Commits tab) is not linked to your Github account, which means this PR won't count as your contribution in https://github.com/swagger-api/swagger-codegen/graphs/contributors. Let me know if you need help fixing it. |
I'll create a new pull request with the correct e-mail address, thanks! |
I've submitted new request |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description of the PR
Enabled inheritance for objective-c to prevent property duplication when using allOf and discriminator.