Skip to content

Commit 5bced1d

Browse files
chore: release (#19)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent fb026a2 commit 5bced1d

4 files changed

Lines changed: 32 additions & 3 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"packages/flarelette-jwt-ts": "1.9.0",
3-
"packages/flarelette-jwt-py": "1.9.0"
3+
"packages/flarelette-jwt-py": "1.10.0"
44
}

packages/flarelette-jwt-py/CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# Changelog
22

3+
## [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)
4+
5+
6+
### Features
7+
8+
* 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))
9+
10+
11+
### Bug Fixes
12+
13+
* 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))
14+
* jwt type corrections and documentation updates ([cf5b1d6](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/cf5b1d6e555c8b1b6257855274a7a19246f94e7a))
15+
* lazy-load js module and add ci smoke test to prevent import failures ([1f74caa](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/1f74caacb6ae2bc1cb0366f59cc96e0c4b16d234))
16+
* 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))
17+
18+
19+
### Miscellaneous
20+
21+
* add sync:docs script and documentation for readme syncing ([6630372](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/6630372a5ee5a42e193be5d7d688661f2cfefff2))
22+
* 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))
23+
* release main ([#10](https://github.com/chrislyons-dev/flarelette-jwt-kit/issues/10)) ([77ac4f8](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/77ac4f89a6a389707250533468ae85b2d01c1573))
24+
* release main ([#12](https://github.com/chrislyons-dev/flarelette-jwt-kit/issues/12)) ([f54b710](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/f54b710a99d275fc37da70171554d6c59308d230))
25+
* release main ([#14](https://github.com/chrislyons-dev/flarelette-jwt-kit/issues/14)) ([bcff81d](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/bcff81d7f7305229c8af3c5b6deb25cc14ede05d))
26+
* release main ([#15](https://github.com/chrislyons-dev/flarelette-jwt-kit/issues/15)) ([d9c2137](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/d9c21372e515281ac2729ddcba34279a61b4d96d))
27+
* release main ([#17](https://github.com/chrislyons-dev/flarelette-jwt-kit/issues/17)) ([2f1d95e](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/2f1d95e6c96a7deec8dce647d37c11d2a977b51b))
28+
* release main ([#3](https://github.com/chrislyons-dev/flarelette-jwt-kit/issues/3)) ([0ece844](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/0ece84484d28eaabc46f1a4fa53002969ba79877))
29+
* sync versions, add badges, and setup gh pages docs ([a9f0c06](https://github.com/chrislyons-dev/flarelette-jwt-kit/commit/a9f0c063d23060b9131d136c8da711acde1a98ed))
30+
* 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))
31+
332
## [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)
433

534

packages/flarelette-jwt-py/flarelette_jwt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from .util import ParsedJwt, is_expiring_soon, map_scopes_to_permissions, parse
2424
from .verify import verify
2525

26-
__version__ = "1.9.0"
26+
__version__ = "1.10.0"
2727

2828
__all__ = [
2929
# Types

packages/flarelette-jwt-py/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "flarelette-jwt"
7-
version = "1.9.0"
7+
version = "1.10.0"
88
description = "Environment-driven JWT authentication for Cloudflare Workers Python with secret-name indirection"
99
readme = "README.md"
1010
requires-python = ">=3.11"

0 commit comments

Comments
 (0)