Skip to content

Commit fbbff7a

Browse files
committed
bump: version 0.2.1 → 0.3.0
1 parent bdd80e8 commit fbbff7a

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## 0.3.0 (2025-10-15)
2+
3+
### BREAKING CHANGE
4+
5+
- remove using of api.create_api_key_security, now use only create_depends_api_key
6+
- change signature of domain.init and svc.create and break change sql schema (add key_secret_first String(4) nullable and add key_secret_last String(4) nullable)
7+
8+
### Feat
9+
10+
- **domain**: add first and last key secret for help user
11+
- **api**: added the ability to use an HTTPBearer to comply with the rfc6750 standard
12+
- **mock**: add mock api key hasher for tests purpose
13+
14+
### Fix
15+
16+
- **api**: ensure that security have autoerror=False for respect RFC 9110/7235
17+
18+
### Refactor
19+
20+
- **all**: create specific modules for typing
21+
- **api**: remove depreated function create_api_key_security, update docs
22+
123
## 0.2.1 (2025-10-13)
224

325
### Fix

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "fastapi-api-key"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
description = "Add your description here"
55
readme = "README.md"
66
authors = [

tests/test_regression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def test_version():
2323

2424
assert hasattr(module, "__version__")
2525
assert isinstance(module.__version__, str)
26-
assert module.__version__ == "0.2.1" # Replace with the expected version
26+
assert module.__version__ == "0.3.0" # Replace with the expected version
2727

2828

2929
@pytest.mark.parametrize(

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)