File tree Expand file tree Collapse file tree 2 files changed +46
-1
lines changed
Expand file tree Collapse file tree 2 files changed +46
-1
lines changed Original file line number Diff line number Diff line change 11# CHANGELOG
22
33
4+ ## v1.3.7 (2026-02-17)
5+
6+ ### Bug Fixes
7+
8+ * fix: ` home-page ` key error in metadata (#45 )
9+
10+ * Update __ init__ .py
11+
12+ Replace:
13+ ```
14+ __uri__ = metadata["home-page"]
15+ ```
16+ with:
17+ ``` __uri__ = metadata.get("home-page") or metadata.get("Home-Page", "")
18+ ```
19+
20+ * Address nitpick comment
21+
22+ * fix: typing fails: PackageMetadata has no attribute "get" [ attr-defined]
23+
24+ Use Message semantics (.get() is typed)
25+
26+ * Address netpick comments
27+
28+ * fix: ERROR collecting tests/test_cli.py in build 3.11
29+
30+ * fix: build 3.10 error: Incompatible types in assignment (expression has type "PackageMetadata", variable has type "Optional[ Message] ") [ assignment]
31+
32+ * Fix typing: stop calling .get() on PackageMetadata (for mypy)
33+
34+ * chore: bump pre-commit to >=3.2 for hook stage compatibility ([ ` 6da3ced ` ] ( https://github.com/alandtse/auth_capture_proxy/commit/6da3cedac5f75d0ca635472c5e2ea85958d3f306 ) )
35+
36+ ### Build System
37+
38+ * build: fix tox ([ ` e6410bb ` ] ( https://github.com/alandtse/auth_capture_proxy/commit/e6410bb11cb4d7ee400b59feb995a741c8990a6e ) )
39+
40+ ### Chores
41+
42+ * chore: fix config version ([ ` e6d48c6 ` ] ( https://github.com/alandtse/auth_capture_proxy/commit/e6d48c6887d070c7f170d3494af2d13fdbb3a58f ) )
43+
44+ ### Refactoring
45+
46+ * refactor: migrate to pep621 ([ ` bd2f8a8 ` ] ( https://github.com/alandtse/auth_capture_proxy/commit/bd2f8a88b74e113a748bf173a30c45bcd5d02ff9 ) )
47+
48+
449## v1.3.6 (2026-02-08)
550
651### Bug Fixes
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44
55[project ]
66name = " authcaptureproxy"
7- version = " 1.3.6 "
7+ version = " 1.3.7 "
88description = " A Python project to create a proxy to capture authentication information from a webpage. This is useful to capture oauth login details without access to a third-party oauth."
99readme = " README.md"
1010authors = [
You can’t perform that action at this time.
0 commit comments