Skip to content

Commit f44e67f

Browse files
feat: support httpx 0.27 (#974)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [httpx](https://togithub.com/encode/httpx) ([changelog](https://togithub.com/encode/httpx/blob/master/CHANGELOG.md)) | `>=0.20.0,<0.27.0` -> `>=0.20.0,<0.28.0` | [![age](https://developer.mend.io/api/mc/badges/age/pypi/httpx/0.27.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/httpx/0.27.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/httpx/0.26.0/0.27.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/httpx/0.26.0/0.27.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [httpx](https://togithub.com/encode/httpx) ([changelog](https://togithub.com/encode/httpx/blob/master/CHANGELOG.md)) | `>= 0.20.0, < 0.27.0` -> `>=0.20.0, <0.28.0` | [![age](https://developer.mend.io/api/mc/badges/age/pypi/httpx/0.27.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/httpx/0.27.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/httpx/0.26.0/0.27.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/httpx/0.26.0/0.27.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>encode/httpx (httpx)</summary> ### [`v0.27.0`](https://togithub.com/encode/httpx/blob/HEAD/CHANGELOG.md#0270-21st-February-2024) [Compare Source](https://togithub.com/encode/httpx/compare/0.26.0...0.27.0) ##### Deprecated - The `app=...` shortcut has been deprecated. Use the explicit style of `transport=httpx.WSGITransport()` or `transport=httpx.ASGITransport()` instead. ##### Fixed - Respect the `http1` argument while configuring proxy transports. ([#&#8203;3023](https://togithub.com/encode/httpx/issues/3023)) - Fix RFC 2069 mode digest authentication. ([#&#8203;3045](https://togithub.com/encode/httpx/issues/3045)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/openapi-generators/openapi-python-client). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMDAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIwMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Dylan Anthony <[email protected]>
1 parent dbdbe33 commit f44e67f

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

end_to_end_tests/golden-record/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ include = ["CHANGELOG.md", "my_test_api_client/py.typed"]
1212

1313
[tool.poetry.dependencies]
1414
python = "^3.8"
15-
httpx = ">=0.20.0,<0.27.0"
15+
httpx = ">=0.20.0,<0.28.0"
1616
attrs = ">=21.3.0"
1717
python-dateutil = "^2.8.0"
1818

end_to_end_tests/metadata_snapshots/pdm.pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = []
66
readme = "README.md"
77
requires-python = ">=3.8,<4.0"
88
dependencies = [
9-
"httpx>=0.20.0,<0.27.0",
9+
"httpx>=0.20.0,<0.28.0",
1010
"attrs>=21.3.0",
1111
"python-dateutil>=2.8.0",
1212
]

end_to_end_tests/metadata_snapshots/poetry.pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ include = ["CHANGELOG.md", "test_3_1_features_client/py.typed"]
1212

1313
[tool.poetry.dependencies]
1414
python = "^3.8"
15-
httpx = ">=0.20.0,<0.27.0"
15+
httpx = ">=0.20.0,<0.28.0"
1616
attrs = ">=21.3.0"
1717
python-dateutil = "^2.8.0"
1818

end_to_end_tests/metadata_snapshots/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
long_description_content_type="text/markdown",
1414
packages=find_packages(),
1515
python_requires=">=3.8, <4",
16-
install_requires=["httpx >= 0.20.0, < 0.27.0", "attrs >= 21.3.0", "python-dateutil >= 2.8.0, < 3"],
16+
install_requires=["httpx >= 0.20.0, < 0.28.0", "attrs >= 21.3.0", "python-dateutil >= 2.8.0, < 3"],
1717
package_data={"test_3_1_features_client": ["py.typed"]},
1818
)

end_to_end_tests/test-3-1-golden-record/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ include = ["CHANGELOG.md", "test_3_1_features_client/py.typed"]
1212

1313
[tool.poetry.dependencies]
1414
python = "^3.8"
15-
httpx = ">=0.20.0,<0.27.0"
15+
httpx = ">=0.20.0,<0.28.0"
1616
attrs = ">=21.3.0"
1717
python-dateutil = "^2.8.0"
1818

integration-tests/pdm.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integration-tests/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "A client library for accessing OpenAPI Test Server"
55
authors = []
66
readme = "README.md"
77
dependencies = [
8-
"httpx>=0.20.0,<0.27.0",
8+
"httpx>=0.20.0,<0.28.0",
99
"attrs>=21.3.0",
1010
"python-dateutil>=2.8.0",
1111
]

openapi_python_client/templates/pyproject.toml.jinja

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ include = ["CHANGELOG.md", "{{ package_name }}/py.typed"]
1919
2020
{% if pdm %}
2121
dependencies = [
22-
"httpx>=0.20.0,<0.27.0",
22+
"httpx>=0.20.0,<0.28.0",
2323
"attrs>=21.3.0",
2424
"python-dateutil>=2.8.0",
2525
]
@@ -31,7 +31,7 @@ package-type = "library"
3131

3232
[tool.poetry.dependencies]
3333
python = "^3.8"
34-
httpx = ">=0.20.0,<0.27.0"
34+
httpx = ">=0.20.0,<0.28.0"
3535
attrs = ">=21.3.0"
3636
python-dateutil = "^2.8.0"
3737
{% endif %}

openapi_python_client/templates/setup.py.jinja

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ setup(
1313
long_description_content_type="text/markdown",
1414
packages=find_packages(),
1515
python_requires=">=3.8, <4",
16-
install_requires=["httpx >= 0.20.0, < 0.27.0", "attrs >= 21.3.0", "python-dateutil >= 2.8.0, < 3"],
16+
install_requires=["httpx >= 0.20.0, < 0.28.0", "attrs >= 21.3.0", "python-dateutil >= 2.8.0, < 3"],
1717
package_data={"{{ package_name }}": ["py.typed"]},
1818
)

pdm.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies = [
1212
"pydantic>=2.1.1,<3.0.0",
1313
"attrs>=21.3.0",
1414
"python-dateutil>=2.8.1,<3.0.0",
15-
"httpx>=0.20.0,<0.27.0",
15+
"httpx>=0.20.0,<0.28.0",
1616
"PyYAML>=6.0,<7.0",
1717
"ruff>=0.1.2,<1.0.0",
1818
"typing-extensions>=4.8.0,<5.0.0",

0 commit comments

Comments
 (0)