Skip to content

Tags: elvinx/connexion

Tags

1.2

Toggle 1.2's commit message
FIX a typo causing an ERROR log (spec-first#523)

* FIX a typo causing an ERROR log

A small bug was introduced in spec-first#500 when sanitizing the request query
parameters. Instead of fetching the arguments from `request.query`,
the parameters were sanitized from the `request.form`. This causes an
error log to be printed, as the parameters are not expected for the
query (for example in the case of a POST request).

Fixes spec-first#504

* adds a fixture for testing query param sanitazion

Adds a simple fixture to test form and query parameter sanitazion. This
is mostly related to spec-first#522, in which the `formData` parameters were
treated as query parameters.

* add a test to validate form data params

* introduce testfixtures library

1.1.16

Toggle 1.1.16's commit message
Restoring Flask-Injector support by passing "undocumented" path param…

…eters to the handler (spec-first#526)

* Restored Flask-Injector support

* Added a unit test to verify injection works (spec-first#469)

* Changed unittest to support Python 2

Verified

This tag was signed with the committer’s verified signature.
hjacobs Henning Jacobs

1.1.14

Toggle 1.1.14's commit message
Fix UnicodeEncodeError for query-strings on Python 2 (spec-first#507)

* Fix UnicodeEncodeError for query-strings on Python 2

* Fix test for Python 3.4 and 3.5

1.1.13

Toggle 1.1.13's commit message
setup.py: Use env markers for Python version-specific dependencies (s…

…pec-first#495)

* setup.py: Use env markers for Python version-specific dependencies

Changing package properties dynamically in setup.py means that universal
wheels will actually be built only for the builder's environment, and
might not work properly on different platforms/PYthon versions.

Closes spec-first#493

* travis: Upgrade setuptools before running tests

* reqs: Stop installing pathlib from mercurial in dev mode

The mercurial repo is at 0.8 while the latest release on PyPI is 1.0.1

1.1.12

Toggle 1.1.12's commit message
added setup.cfg (spec-first#492)

1.1.11

Toggle 1.1.11's commit message
Split tokeninfo scope if it is a string (spec-first#477)

* Split tokeninfo scope if it is a string

* Add test for string and array scopes

* Fix isort lint error

Verified

This tag was signed with the committer’s verified signature.
hjacobs Henning Jacobs

1.1.8

Toggle 1.1.8's commit message
Flask request user support (spec-first#432)

* ConnexionRequest.context proxied to flask.request instance

* Add type annotations for FlaskRequestContextProxy

* Sort imports

* Sort imports

* Remove unnecessary code