Skip to content

Tags: spec-first/connexion

Tags

3.3.0

Toggle 3.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Remove Fern from sponsors (#2091)

2.15.1

Toggle 2.15.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
(v2) Add missing dependency packaging at min version 25 (#2086)

The recent switch from setup.py to pyproject.toml omitted dependency
`packaging`

Fixes #2085

Changes proposed in this pull request:
 - Restore package `packaging` to main project dependencies

2.15.1rc1

Toggle 2.15.1rc1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
(v2) Add missing dependency packaging at min version 25 (#2086)

The recent switch from setup.py to pyproject.toml omitted dependency
`packaging`

Fixes #2085

Changes proposed in this pull request:
 - Restore package `packaging` to main project dependencies

2.15.0

Toggle 2.15.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
(v2) chore(requirements): drop unused dependencies (#2060)

These were lifted from the v3 branch wholesale, but are not actually in
use in v2.

Changes proposed in this pull request:

 - drop a2wsgi, httpx, uvicorn, typing-extensions direct dependencies
 - typing-extensions still exists as a transitive dependency

2.15.0rc3

Toggle 2.15.0rc3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
(v2) chore(requirements): drop unused dependencies (#2060)

These were lifted from the v3 branch wholesale, but are not actually in
use in v2.

Changes proposed in this pull request:

 - drop a2wsgi, httpx, uvicorn, typing-extensions direct dependencies
 - typing-extensions still exists as a transitive dependency

2.15.0rc2

Toggle 2.15.0rc2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Roll back Flask version pin for improved compatibility (#2058)

Add minimum-version tox env using Python 3.9
Upgrade minimum versions of libraries
Restore tox pre-commit checks

Per requests from the community, this change keeps Flask v2

2.15.0rc1

Toggle 2.15.0rc1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Upgrade dependencies on v2 banch (#1992)

Fixes #1969

    The main goal was upgrading werkzeug for CVE-2024-34069.
After switching to python 3.12, it proved more difficult with changes to
    setuptools, etc. I decided to pull the pyproject from the main, and
utilize that, alone with updated dependencies. Small changes were needed
    in various api changes, notably:
    
    - flask change of request_ctx
    - swagger_ui_bundle version change, default_template_dir change
    - aiohttp middleware api slightly changed
    - flask json change, using flask.json.provider
    
    I believe these changes will have minimal impact to users, but the
changes are likely breaking for some, specifically, the move to latest
    flask.

---------

Signed-off-by: Mike Marchetti <mfmarche@gmail.com>

3.2.0

Toggle 3.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update example for latest version of SQLAlchemy (#2011)

Pass argument that disables SQLite thread check when creating the engine
Revise request-processing functions to work within a database session
context
Drop TODO from the example README

Co-authored-by: Christopher Lott <chrisinmtown@users.noreply.github.com>

3.1.0

Toggle 3.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Log handled errors to warning (#1926)

Fixes #1925.

Changes proposed in this pull request:

 - Log handled errors to `warning` instead of `error`.
- Log validation errors to `info` because the intent of the log lines in
informational. The error is handled by raising a new error.

---------

Co-authored-by: Alex Fechner <alex.fechner@stryker.com>

3.0.6

Toggle 3.0.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix file upload for base64 encoded files (#1843)

Fixes #1825 

Files can be encoded as bytes or base64 ([openapi
docs](https://swagger.io/docs/specification/describing-request-body/file-upload/)),
we were only handling bytes before.