Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"packages/flarelette-jwt-ts": "1.9.0",
"packages/flarelette-jwt-py": "1.9.0"
"packages/flarelette-jwt-py": "1.10.0"
}
29 changes: 29 additions & 0 deletions packages/flarelette-jwt-py/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# Changelog

## [1.10.0](https://github.com/chrislyons-dev/flarelette-jwt-kit/compare/flarelette-jwt-py-v1.9.0...flarelette-jwt-py-v1.10.0) (2025-11-02)


### Features

* initial merge of flarelette-jwt-kit (ts+py) - env-driven hs512/eddsa, jwks, policy builder ([be132e2](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/be132e2ac12a1460843a8a1739386c7905deaee1))


### Bug Fixes

* configure unique component tags for monorepo releases ([#11](https://github.com/chrislyons-dev/flarelette-jwt-kit/issues/11)) ([6e57f26](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/6e57f26cdef06f3008c9204301c66e599f1ec718))
* jwt type corrections and documentation updates ([cf5b1d6](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/cf5b1d6e555c8b1b6257855274a7a19246f94e7a))
* lazy-load js module and add ci smoke test to prevent import failures ([1f74caa](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/1f74caacb6ae2bc1cb0366f59cc96e0c4b16d234))
* present a consistent public interface, synchronize builds ([#16](https://github.com/chrislyons-dev/flarelette-jwt-kit/issues/16)) ([fa9b5f9](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/fa9b5f96f799cfd551359408bdcc1c5f20b4d595))


### Miscellaneous

* add sync:docs script and documentation for readme syncing ([6630372](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/6630372a5ee5a42e193be5d7d688661f2cfefff2))
* configure grouped releases and sync versions to 1.9.0 ([#18](https://github.com/chrislyons-dev/flarelette-jwt-kit/issues/18)) ([fb026a2](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/fb026a22a0d62638276318fcf05b56b70d32c4db))
* release main ([#10](https://github.com/chrislyons-dev/flarelette-jwt-kit/issues/10)) ([77ac4f8](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/77ac4f89a6a389707250533468ae85b2d01c1573))
* release main ([#12](https://github.com/chrislyons-dev/flarelette-jwt-kit/issues/12)) ([f54b710](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/f54b710a99d275fc37da70171554d6c59308d230))
* release main ([#14](https://github.com/chrislyons-dev/flarelette-jwt-kit/issues/14)) ([bcff81d](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/bcff81d7f7305229c8af3c5b6deb25cc14ede05d))
* release main ([#15](https://github.com/chrislyons-dev/flarelette-jwt-kit/issues/15)) ([d9c2137](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/d9c21372e515281ac2729ddcba34279a61b4d96d))
* release main ([#17](https://github.com/chrislyons-dev/flarelette-jwt-kit/issues/17)) ([2f1d95e](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/2f1d95e6c96a7deec8dce647d37c11d2a977b51b))
* release main ([#3](https://github.com/chrislyons-dev/flarelette-jwt-kit/issues/3)) ([0ece844](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/0ece84484d28eaabc46f1a4fa53002969ba79877))
* sync versions, add badges, and setup gh pages docs ([a9f0c06](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/a9f0c063d23060b9131d136c8da711acde1a98ed))
* sync versions, add badges, and setup gh pages docs ([#9](https://github.com/chrislyons-dev/flarelette-jwt-kit/issues/9)) ([65eb899](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/65eb89915b66ede9dc7123c13ced29eeb12d8f6a))

## [1.8.4](https://github.com/chrislyons-dev/flarelette-jwt-kit/compare/flarelette-jwt-py-v1.8.3...flarelette-jwt-py-v1.8.4) (2025-11-02)


Expand Down
2 changes: 1 addition & 1 deletion packages/flarelette-jwt-py/flarelette_jwt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from .util import ParsedJwt, is_expiring_soon, map_scopes_to_permissions, parse
from .verify import verify

__version__ = "1.9.0"
__version__ = "1.10.0"

__all__ = [
# Types
Expand Down
2 changes: 1 addition & 1 deletion packages/flarelette-jwt-py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "flarelette-jwt"
version = "1.9.0"
version = "1.10.0"
description = "Environment-driven JWT authentication for Cloudflare Workers Python with secret-name indirection"
readme = "README.md"
requires-python = ">=3.11"
Expand Down