Skip to content

Commit

Permalink
Bump yarl to 1.9.6 (home-assistant#124955)
Browse files Browse the repository at this point in the history
* Bump yarl to 1.9.5

changelog: aio-libs/yarl@v1.9.4...v1.9.5

* remove default port since mocker does exact matching and yarl now normalizes this

* 1.9.6
  • Loading branch information
bdraco authored Aug 31, 2024
1 parent 5fa23b1 commit 7210cc1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion homeassistant/package_constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ urllib3>=1.26.5,<2
voluptuous-openapi==0.0.5
voluptuous-serialize==2.6.0
voluptuous==0.15.2
yarl==1.9.4
yarl==1.9.6
zeroconf==0.133.0

# Constrain pycryptodome to avoid vulnerability
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ dependencies = [
"voluptuous==0.15.2",
"voluptuous-serialize==2.6.0",
"voluptuous-openapi==0.0.5",
"yarl==1.9.4",
"yarl==1.9.6",
]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ urllib3>=1.26.5,<2
voluptuous==0.15.2
voluptuous-serialize==2.6.0
voluptuous-openapi==0.0.5
yarl==1.9.4
yarl==1.9.6
2 changes: 1 addition & 1 deletion tests/components/dremel_3d_printer/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def connection() -> None:
"""Mock Dremel 3D Printer connection."""
with requests_mock.Mocker() as mock:
mock.post(
f"http://{HOST}:80/command",
f"http://{HOST}/command",
response_list=[
{"text": load_fixture("dremel_3d_printer/command_1.json")},
{"text": load_fixture("dremel_3d_printer/command_2.json")},
Expand Down

0 comments on commit 7210cc1

Please sign in to comment.