Skip to content

Commit d0ea9f8

Browse files
Merge branch 'master' into master
2 parents c92f587 + d46fa57 commit d0ea9f8

4 files changed

Lines changed: 19 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,15 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7-
## 0.27.1 (22st August, 2024)
7+
## 0.27.2 (27th August, 2024)
88

9-
## Added
9+
### Fixed
10+
11+
* Reintroduced supposedly-private `URLTypes` shortcut. (#2673)
12+
13+
## 0.27.1 (27th August, 2024)
14+
15+
### Added
1016

1117
* Support for `zstd` content decoding using the python `zstandard` package is added. Installable using `httpx[zstd]`. (#3139)
1218

httpx/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__title__ = "httpx"
22
__description__ = "A next generation HTTP client, for Python 3."
3-
__version__ = "0.27.1"
3+
__version__ = "0.27.2"

httpx/_types.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@
4343
],
4444
)
4545

46+
URLTypes = Union["URL", str]
47+
4648
QueryParamTypes = Union[
4749
"QueryParams",
4850
Mapping[str, Union[PrimitiveData, Sequence[PrimitiveData]]],

requirements.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@
99
chardet==5.2.0
1010

1111
# Documentation
12-
mkdocs==1.6.0
12+
mkdocs==1.6.1
1313
mkautodoc==0.2.0
14-
mkdocs-material==9.5.30
14+
mkdocs-material==9.5.34
1515

1616
# Packaging
1717
build==1.2.1
1818
twine==5.1.1
1919

2020
# Tests & Linting
21-
coverage[toml]==7.6.0
21+
coverage[toml]==7.6.1
2222
cryptography==43.0.0
23-
mypy==1.11.0
24-
pytest==8.3.1
25-
ruff==0.5.4
26-
trio==0.26.0
23+
mypy==1.11.2
24+
pytest==8.3.2
25+
ruff==0.6.3
26+
trio==0.26.2
2727
trio-typing==0.10.0
2828
trustme==1.1.0
29-
uvicorn==0.30.3
29+
uvicorn==0.30.6

0 commit comments

Comments
 (0)