Skip to content

Tags: zmievsa/cadwyn

Tags

6.2.2

Toggle 6.2.2's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Bump version to 6.2.2

Co-Authored-By: Claude Opus 4.6 <[email protected]>

6.2.1

Toggle 6.2.1's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Bump version to 6.2.1

Co-Authored-By: Claude Opus 4.6 <[email protected]>

6.2.0

Toggle 6.2.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Add custom static asset URL support for Swagger UI and ReDoc (#361)

Allow overriding CDN URLs for docs JS, CSS, and favicon assets
via swagger_js_url, swagger_css_url, swagger_favicon_url,
redoc_js_url, and redoc_favicon_url parameters on Cadwyn.

Closes #361

Co-Authored-By: Claude Opus 4.6 <[email protected]>

6.1.1

Toggle 6.1.1's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Fix compatibility with Starlette 1.0.0 and upgrade dependencies

Starlette 1.0.0 removed the deprecated TemplateResponse(name, context)
calling convention. Switch to kwargs-based call that works on both old
and new Starlette. Also remove test for JSON body without Content-Type
which is no longer supported by FastAPI 0.132.0+.

Bump version to 6.1.1.

Co-Authored-By: Claude Opus 4.6 <[email protected]>

6.1.0

Toggle 6.1.0's commit message

Verified

This commit was signed with the committer’s verified signature.
zmievsa Stanislav Zmiev
Fix up changelog versioning

6.0.4

Toggle 6.0.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
improve documentation-16 (#355)

6.0.3

Toggle 6.0.3's commit message

Verified

This commit was signed with the committer’s verified signature.
zmievsa Stanislav Zmiev
Bump version to 6.0.3 and update changelog for FastAPI compatibility

6.0.2

Toggle 6.0.2's commit message

Verified

This commit was signed with the committer’s verified signature.
zmievsa Stanislav Zmiev
Bump version to 6.0.2 and update changelog for recent fixes

6.0.1

Toggle 6.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix AttributeError when using callable class dependencies with future…

… annotations (#322)

When using `from __future__ import annotations` with callable class
instances as route dependencies, Cadwyn would crash with an
AttributeError
because it tried to access `call.__globals__` directly.

For callable class instances, the `__globals__` attribute exists on the
`__call__` method, not on the instance itself. The fix checks if the
callable is a regular function using `is_regular_function()`, and if
not,
retrieves the globals from `call.__call__.__globals__` instead.

Fixes #321

---------

Co-authored-by: Claude <[email protected]>

6.0.0

Toggle 6.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add support for fastapi>=0.128.0 (#317)