chore(deps): update dependency connexion to v2 (master)#145
Open
mend-for-github-com[bot] wants to merge 1 commit into
Open
chore(deps): update dependency connexion to v2 (master)#145mend-for-github-com[bot] wants to merge 1 commit into
mend-for-github-com[bot] wants to merge 1 commit into
Conversation
beb4819 to
20e18aa
Compare
This file contains hidden or 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
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.
This PR contains the following updates:
== 1.1.15→==2.3.0By merging this PR, the below vulnerabilities will be automatically resolved:
Release Notes
spec-first/connexion (connexion)
v2.3.0Compare Source
v2.2.0Compare Source
v2.1.0Compare Source
v2.0.2Compare Source
v2.0.1Compare Source
connexion run ...(#745)v2.0.0Compare Source
Connexion 2.0 supports version 3.0.x of the OpenAPI Specification!
As 2.0 is a major version bump, you can expect some breaking changes from Connexion 1.5.3.
pip install connexion[swagger-ui]old_style_optionshave been removed).Operationinterface has been formalized in theAbstractOperationclass.Operationclass has been renamed toSwagger2Operation.In situations when a query parameter is passed multiple times, and the collectionFormat is either csv or pipes, the right-most value will be used.
For example,
?q=1,2,3&q=4,5,6will result inq = [4, 5, 6].The old behavior is available by setting the collectionFormat to
multi, or by importingdecorators.uri_parsing.AlwaysMultiURIParserand passingparser_class=AlwaysMultiURIParserto your Api.swagger-spec-validatortoopenapi-spec-validator.SwaggerValidationErrornow raise theInvalidSpecificationexception.All spec validation errors should be wrapped with
InvalidSpecification.x-tokenInfoFunc/x-tokenInfoUrlis missing, connexion now denies requests instead of allowing access without security-check.connexion.request.user/flask.request.useris no longer supported, useconnexion.context['user']insteadv1.5.3Compare Source
v1.5.2Compare Source
Bugfix:
v1.5.1Compare Source
v1.5.0Compare Source
v1.4.2Compare Source
This release contains no Python code changes!
v1.4.1Compare Source
v1.4Compare Source
v1.3Compare Source
v1.2Compare Source
Authorizationheader instead of URL params when trying to verify OAuth tokens against TokenInfo endpoint (this might be a BREAKING CHANGE for TokenInfo endpoints not supporting theAuthorizationheader)v1.1.16Compare Source
http.HTTPStatusenums as response status codes