From 67651f8d051ecd9174301f8b443e75916ee560c5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 3 Mar 2022 10:09:05 +0000 Subject: [PATCH 1/4] Bump pytest from 6.2.5 to 7.0.1 (#2103) Bumps [pytest](https://github.com/pytest-dev/pytest) from 6.2.5 to 7.0.1. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/6.2.5...7.0.1) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 9d1a88640a..22b6a8ce43 100644 --- a/requirements.txt +++ b/requirements.txt @@ -26,7 +26,7 @@ flake8-pie==0.15.0; python_version>='3.7' isort==5.10.1 mypy==0.910 types-certifi==2021.10.8.0 -pytest==6.2.5 +pytest==7.0.1 pytest-asyncio==0.16.0 pytest-trio==0.7.0 trio==0.19.0 From 754b55691dcb561b2a3a55b888792252b4d0d0e6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 4 Mar 2022 19:07:52 +0000 Subject: [PATCH 2/4] Bump flake8-bugbear from 21.9.2 to 22.1.11 (#2100) Bumps [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) from 21.9.2 to 22.1.11. - [Release notes](https://github.com/PyCQA/flake8-bugbear/releases) - [Commits](https://github.com/PyCQA/flake8-bugbear/compare/21.9.2...22.1.11) --- updated-dependencies: - dependency-name: flake8-bugbear dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tom Christie --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 22b6a8ce43..49e0d30191 100644 --- a/requirements.txt +++ b/requirements.txt @@ -21,7 +21,7 @@ black==21.11b1 coverage==6.0.2 cryptography==36.0.1 flake8==3.9.2 -flake8-bugbear==21.9.2 +flake8-bugbear==22.1.11 flake8-pie==0.15.0; python_version>='3.7' isort==5.10.1 mypy==0.910 From 43a1c1c8269cf56a016891aead091acbc3408e81 Mon Sep 17 00:00:00 2001 From: Dan Claudiu Pop Date: Tue, 8 Mar 2022 12:53:15 +0200 Subject: [PATCH 3/4] Add robox to third party packages doc (#2113) * Add robox to third party packages doc * Update third_party_packages.md --- docs/third_party_packages.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/third_party_packages.md b/docs/third_party_packages.md index 2487222f5f..d54b31c40c 100644 --- a/docs/third_party_packages.md +++ b/docs/third_party_packages.md @@ -54,6 +54,12 @@ A utility for record and repeat an http request. This package adds caching functionality to HTTPX +### robox + +[Github](https://github.com/danclaudiupop/robox) + +A library for scraping the web built on top of HTTPX. + ## Gists From c82885ac04f7c3439dfdd4d26614913bf09389c9 Mon Sep 17 00:00:00 2001 From: kk Date: Tue, 15 Mar 2022 00:51:39 +0800 Subject: [PATCH 4/4] Fix cli docs --proxies #2124 (#2125) --- httpx/_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpx/_main.py b/httpx/_main.py index 7bd6b90846..ebcb65214f 100644 --- a/httpx/_main.py +++ b/httpx/_main.py @@ -69,7 +69,7 @@ def print_help() -> None: ) table.add_row( - "--proxy [cyan]URL", + "--proxies [cyan]URL", "Send the request via a proxy. Should be the URL giving the proxy address.", )