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/SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Reporting issues affecting the confidentiality, integrity or availability.

| Version | Supported |
|---------| ------------------ |
| 0.6.x | :white_check_mark: |
| 0.8.x | :white_check_mark: |

## Reporting a Vulnerability

Expand Down
2 changes: 1 addition & 1 deletion aiopenapi3/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.7.1"
__version__ = "0.8.0a1"
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# uv export --no-dev --no-hashes --no-editable -o requirements.txt
.
annotated-types==0.7.0
anyio==4.7.0
anyio==4.8.0
certifi==2024.12.14
dnspython==2.7.0
email-validator==2.2.0
exceptiongroup==1.2.2 ; python_full_version < '3.11'
h11==0.14.0
httpcore==1.0.7
httpx==0.27.2
httpx==0.28.1
idna==3.10
jmespath==1.0.1
more-itertools==10.5.0
Expand Down
2 changes: 2 additions & 0 deletions tests/tls_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ def self_signed(*args, **kwargs) -> httpx.AsyncClient:
ctx = ssl.create_default_context(ssl.Purpose.SERVER_AUTH, cafile=certs["org"]["issuer"])
if (cert := kwargs.get("cert", None)) is not None:
ctx.load_cert_chain(certfile=cert[0], keyfile=cert[1])
kwargs.pop("cert")
return httpx.AsyncClient(*args, verify=ctx, **kwargs)

api = await aiopenapi3.OpenAPI.load_async(
Expand Down Expand Up @@ -217,6 +218,7 @@ def self_signed_(*args, **kwargs) -> httpx.Client:
ctx = ssl.create_default_context(ssl.Purpose.SERVER_AUTH, cafile=certs["org"]["issuer"])
if (cert := kwargs.get("cert", None)) is not None:
ctx.load_cert_chain(certfile=cert[0], keyfile=cert[1])
kwargs.pop("cert")
return httpx.Client(*args, verify=ctx, **kwargs)

client = await asyncio.to_thread(
Expand Down
37 changes: 18 additions & 19 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading