René's URL Explorer Experiment


Title: Bump the pip group across 3 directories with 7 updates by dependabot[bot] · Pull Request #22 · testfailed/rules_python · GitHub

Open Graph Title: Bump the pip group across 3 directories with 7 updates by dependabot[bot] · Pull Request #22 · testfailed/rules_python

X Title: Bump the pip group across 3 directories with 7 updates by dependabot[bot] · Pull Request #22 · testfailed/rules_python

Description: Bumps the pip group with 4 updates in the /examples/build_file_generation directory: certifi, idna, requests and urllib3. Bumps the pip group with 6 updates in the /examples/pip_parse directory: Package From To certifi 2021.10.8 2024.7.4 idna 2.10 3.7 requests 2.25.1 2.32.2 urllib3 1.26.7 1.26.19 jinja2 3.0.2 3.1.4 setuptools 58.2.0 65.5.1 Bumps the pip group with 1 update in the /examples/pip_repository_annotations directory: wheel. Updates certifi from 2020.12.5 to 2024.7.4 Commits bd81538 2024.07.04 (#295) 06a2cbf Bump peter-evans/create-pull-request from 6.0.5 to 6.1.0 (#294) 13bba02 Bump actions/checkout from 4.1.6 to 4.1.7 (#293) e8abcd0 Bump pypa/gh-action-pypi-publish from 1.8.14 to 1.9.0 (#292) 124f4ad 2024.06.02 (#291) c2196ce --- (#290) fefdeec Bump actions/checkout from 4.1.4 to 4.1.5 (#289) 3c5fb15 Bump actions/download-artifact from 4.1.6 to 4.1.7 (#286) 4a9569a Bump actions/checkout from 4.1.2 to 4.1.4 (#287) 1fc8086 Bump peter-evans/create-pull-request from 6.0.4 to 6.0.5 (#288) Additional commits viewable in compare view Updates idna from 2.10 to 3.7 Release notes Sourced from idna's releases. v3.7 What's Changed Fix issue where specially crafted inputs to encode() could take exceptionally long amount of time to process. [CVE-2024-3651] Thanks to Guido Vranken for reporting the issue. Full Changelog: kjd/idna@v3.6...v3.7 Changelog Sourced from idna's changelog. 3.7 (2024-04-11) ++++++++++++++++ Fix issue where specially crafted inputs to encode() could take exceptionally long amount of time to process. [CVE-2024-3651] Thanks to Guido Vranken for reporting the issue. 3.6 (2023-11-25) ++++++++++++++++ Fix regression to include tests in source distribution. 3.5 (2023-11-24) ++++++++++++++++ Update to Unicode 15.1.0 String codec name is now "idna2008" as overriding the system codec "idna" was not working. Fix typing error for codec encoding "setup.cfg" has been added for this release due to some downstream lack of adherence to PEP 517. Should be removed in a future release so please prepare accordingly. Removed reliance on a symlink for the "idna-data" tool to comport with PEP 517 and the Python Packaging User Guide for sdist archives. Added security reporting protocol for project Thanks Jon Ribbens, Diogo Teles Sant'Anna, Wu Tingfeng for contributions to this release. 3.4 (2022-09-14) ++++++++++++++++ Update to Unicode 15.0.0 Migrate to pyproject.toml for build information (PEP 621) Correct another instance where generic exception was raised instead of IDNAError for malformed input Source distribution uses zeroized file ownership for improved reproducibility Thanks to Seth Michael Larson for contributions to this release. 3.3 (2021-10-13) ++++++++++++++++ Update to Unicode 14.0.0 Update to in-line type annotations Throw IDNAError exception correctly for some malformed input Advertise support for Python 3.10 Improve testing regime on Github ... (truncated) Commits 1d365e1 Release v3.7 c1b3154 Merge pull request #172 from kjd/optimize-contextj 0394ec7 Merge branch 'master' into optimize-contextj cd58a23 Merge pull request #152 from elliotwutingfeng/dev 5beb28b More efficient resolution of joiner contexts 1b12148 Update ossf/scorecard-action to v2.3.1 d516b87 Update Github actions/checkout to v4 c095c75 Merge branch 'master' into dev 60a0a4c Fix typo in GitHub Actions workflow key 5918a0e Merge branch 'master' into dev Additional commits viewable in compare view Updates requests from 2.25.1 to 2.32.2 Release notes Sourced from requests's releases. v2.32.2 2.32.2 (2024-05-21) Deprecations To provide a more stable migration for custom HTTPAdapters impacted by the CVE changes in 2.32.0, we've renamed _get_connection to a new public API, get_connection_with_tls_context. Existing custom HTTPAdapters will need to migrate their code to use this new API. get_connection is considered deprecated in all versions of Requests>=2.32.0. A minimal (2-line) example has been provided in the linked PR to ease migration, but we strongly urge users to evaluate if their custom adapter is subject to the same issue described in CVE-2024-35195. (#6710) v2.32.1 2.32.1 (2024-05-20) Bugfixes Add missing test certs to the sdist distributed on PyPI. v2.32.0 2.32.0 (2024-05-20) 🐍 PYCON US 2024 EDITION 🐍 Security Fixed an issue where setting verify=False on the first request from a Session will cause subsequent requests to the same origin to also ignore cert verification, regardless of the value of verify. (GHSA-9wx4-h78v-vm56) Improvements verify=True now reuses a global SSLContext which should improve request time variance between first and subsequent requests. It should also minimize certificate load time on Windows systems when using a Python version built with OpenSSL 3.x. (#6667) Requests now supports optional use of character detection (chardet or charset_normalizer) when repackaged or vendored. This enables pip and other projects to minimize their vendoring surface area. The Response.text() and apparent_encoding APIs will default to utf-8 if neither library is present. (#6702) Bugfixes Fixed bug in length detection where emoji length was incorrectly calculated in the request content-length. (#6589) Fixed deserialization bug in JSONDecodeError. (#6629) Fixed bug where an extra leading / (path separator) could lead urllib3 to unnecessarily reparse the request URI. (#6644) ... (truncated) Changelog Sourced from requests's changelog. 2.32.2 (2024-05-21) Deprecations To provide a more stable migration for custom HTTPAdapters impacted by the CVE changes in 2.32.0, we've renamed _get_connection to a new public API, get_connection_with_tls_context. Existing custom HTTPAdapters will need to migrate their code to use this new API. get_connection is considered deprecated in all versions of Requests>=2.32.0. A minimal (2-line) example has been provided in the linked PR to ease migration, but we strongly urge users to evaluate if their custom adapter is subject to the same issue described in CVE-2024-35195. (#6710) 2.32.1 (2024-05-20) Bugfixes Add missing test certs to the sdist distributed on PyPI. 2.32.0 (2024-05-20) Security Fixed an issue where setting verify=False on the first request from a Session will cause subsequent requests to the same origin to also ignore cert verification, regardless of the value of verify. (GHSA-9wx4-h78v-vm56) Improvements verify=True now reuses a global SSLContext which should improve request time variance between first and subsequent requests. It should also minimize certificate load time on Windows systems when using a Python version built with OpenSSL 3.x. (#6667) Requests now supports optional use of character detection (chardet or charset_normalizer) when repackaged or vendored. This enables pip and other projects to minimize their vendoring surface area. The Response.text() and apparent_encoding APIs will default to utf-8 if neither library is present. (#6702) Bugfixes Fixed bug in length detection where emoji length was incorrectly calculated in the request content-length. (#6589) Fixed deserialization bug in JSONDecodeError. (#6629) Fixed bug where an extra leading / (path separator) could lead urllib3 to unnecessarily reparse the request URI. (#6644) Deprecations ... (truncated) Commits 88dce9d v2.32.2 c98e4d1 Merge pull request #6710 from nateprewitt/api_rename 92075b3 Add deprecation warning aa1461b Move _get_connection to get_connection_with_tls_context 970e8ce v2.32.1 d6ebc4a v2.32.0 9a40d12 Avoid reloading root certificates to improve concurrent performance (#6667) 0c030f7 Merge pull request #6702 from nateprewitt/no_char_detection 555b870 Allow character detection dependencies to be optional in post-packaging steps d6dded3 Merge pull request #6700 from franekmagiera/update-redirect-to-invalid-uri-test Additional commits viewable in compare view Updates urllib3 from 1.26.5 to 1.26.19 Release notes Sourced from urllib3's releases. 1.26.19 🚀 urllib3 is fundraising for HTTP/2 support urllib3 is raising ~$40,000 USD to release HTTP/2 support and ensure long-term sustainable maintenance of the project after a sharp decline in financial support for 2023. If your company or organization uses Python and would benefit from HTTP/2 support in Requests, pip, cloud SDKs, and thousands of other projects please consider contributing financially to ensure HTTP/2 support is developed sustainably and maintained for the long-haul. Thank you for your support. Changes Added the Proxy-Authorization header to the list of headers to strip from requests when redirecting to a different host. As before, different headers can be set via Retry.remove_headers_on_redirect. Full Changelog: urllib3/urllib3@1.26.18...1.26.19 Note that due to an issue with our release automation, no multiple.intoto.jsonl file is available for this release. 1.26.18 Made body stripped from HTTP requests changing the request method to GET after HTTP 303 "See Other" redirect responses. (GHSA-g4mx-q9vg-27p4) 1.26.17 Added the Cookie header to the list of headers to strip from requests when redirecting to a different host. As before, different headers can be set via Retry.remove_headers_on_redirect. (GHSA-v845-jxx5-vc9f) 1.26.16 Fixed thread-safety issue where accessing a PoolManager with many distinct origins would cause connection pools to be closed while requests are in progress (#2954) 1.26.15 Fix socket timeout value when HTTPConnection is reused (urllib3/urllib3#2645) Remove "!" character from the unreserved characters in IPv6 Zone ID parsing (urllib3/urllib3#2899) Fix IDNA handling of 'x80' byte (urllib3/urllib3#2901) 1.26.14 Fixed parsing of port 0 (zero) returning None, instead of 0 (#2850) Removed deprecated HTTPResponse.getheaders() calls in urllib3.contrib module. 1.26.13 Deprecated the HTTPResponse.getheaders() and HTTPResponse.getheader() methods. Fixed an issue where parsing a URL with leading zeroes in the port would be rejected even when the port number after removing the zeroes was valid. Fixed a deprecation warning when using cryptography v39.0.0. Removed the <4 in the Requires-Python packaging metadata field. 1.26.12 Deprecated the urllib3[secure] extra and the urllib3.contrib.pyopenssl module. Both will be removed in v2.x. See this GitHub issue for justification and info on how to migrate. 1.26.11 If you or your organization rely on urllib3 consider supporting us via GitHub Sponsors. ⚠️ urllib3 v2.0 will drop support for Python 2: Read more in the v2.0 Roadmap Fixed an issue where reading more than 2 GiB in a call to HTTPResponse.read would raise an OverflowError on Python 3.9 and earlier. ... (truncated) Changelog Sourced from urllib3's changelog. 1.26.19 (2024-06-17) Added the Proxy-Authorization header to the list of headers to strip from requests when redirecting to a different host. As before, different headers can be set via Retry.remove_headers_on_redirect. Fixed handling of OpenSSL 3.2.0 new error message for misconfiguring an HTTP proxy as HTTPS. ([#3405](https://github.com/urllib3/urllib3/issues/3405) __) 1.26.18 (2023-10-17) Made body stripped from HTTP requests changing the request method to GET after HTTP 303 "See Other" redirect responses. 1.26.17 (2023-10-02) Added the Cookie header to the list of headers to strip from requests when redirecting to a different host. As before, different headers can be set via Retry.remove_headers_on_redirect. ([#3139](https://github.com/urllib3/urllib3/issues/3139) _) 1.26.16 (2023-05-23) Fixed thread-safety issue where accessing a PoolManager with many distinct origins would cause connection pools to be closed while requests are in progress ([#2954](https://github.com/urllib3/urllib3/issues/2954) _) 1.26.15 (2023-03-10) Fix socket timeout value when HTTPConnection is reused ([#2645](https://github.com/urllib3/urllib3/issues/2645) __) Remove "!" character from the unreserved characters in IPv6 Zone ID parsing ([#2899](https://github.com/urllib3/urllib3/issues/2899) __) Fix IDNA handling of '\x80' byte ([#2901](https://github.com/urllib3/urllib3/issues/2901) __) 1.26.14 (2023-01-11) Fixed parsing of port 0 (zero) returning None, instead of 0. ([#2850](https://github.com/urllib3/urllib3/issues/2850) __) Removed deprecated getheaders() calls in contrib module. Fixed the type hint of PoolKey.key_retries by adding bool to the union. ([#2865](https://github.com/urllib3/urllib3/issues/2865) __) 1.26.13 (2022-11-23) Deprecated the HTTPResponse.getheaders() and HTTPResponse.getheader() methods. Fixed an issue where parsing a URL with leading zeroes in the port would be rejected even when the port number after removing the zeroes was valid. Fixed a deprecation warning when using cryptography v39.0.0. Removed the <4 in the Requires-Python packaging metadata field. 1.26.12 (2022-08-22) Deprecated the urllib3[secure] extra and the urllib3.contrib.pyopenssl module. Both will be removed in v2.x. See this GitHub issue _ ... (truncated) Commits d9d85c8 Release 1.26.19 8528b63 [1.26] Fix downstream tests (#3409) 40b6d16 Merge pull request from GHSA-34jh-p97f-mpxf 29cfd02 Fix handling of OpenSSL 3.2.0 new error message "record layer failure" (#3405) b600643 [1.26] Bump RECENT_DATE (#3404) 7e2d389 [1.26] Fix running CPython 2.7 tests in CI (#3137) 9c2c230 Release 1.26.18 (#3159) b594c5c Merge pull request from GHSA-g4mx-q9vg-27p4 944f0eb [1.26] Use vendored six in urllib3.contrib.securetransport c9016bf Release 1.26.17 Additional commits viewable in compare view Updates certifi from 2021.10.8 to 2024.7.4 Commits bd81538 2024.07.04 (#295) 06a2cbf Bump peter-evans/create-pull-request from 6.0.5 to 6.1.0 (#294) 13bba02 Bump actions/checkout from 4.1.6 to 4.1.7 (#293) e8abcd0 Bump pypa/gh-action-pypi-publish from 1.8.14 to 1.9.0 (#292) 124f4ad 2024.06.02 (#291) c2196ce --- (#290) fefdeec Bump actions/checkout from 4.1.4 to 4.1.5 (#289) 3c5fb15 Bump actions/download-artifact from 4.1.6 to 4.1.7 (#286) 4a9569a Bump actions/checkout from 4.1.2 to 4.1.4 (#287) 1fc8086 Bump peter-evans/create-pull-request from 6.0.4 to 6.0.5 (#288) Additional commits viewable in compare view Updates idna from 2.10 to 3.7 Release notes Sourced from idna's releases. v3.7 What's Changed Fix issue where specially crafted inputs to encode() could take exceptionally long amount of time to process. [CVE-2024-3651] Thanks to Guido Vranken for reporting the issue. Full Changelog: kjd/idna@v3.6...v3.7 Changelog Sourced from idna's changelog. 3.7 (2024-04-11) ++++++++++++++++ Fix issue where specially crafted inputs to encode() could take exceptionally long amount of time to process. [CVE-2024-3651] Thanks to Guido Vranken for reporting the issue. 3.6 (2023-11-25) ++++++++++++++++ Fix regression to include tests in source distribution. 3.5 (2023-11-24) ++++++++++++++++ Update to Unicode 15.1.0 String codec name is now "idna2008" as overriding the system codec "idna" was not working. Fix typing error for codec encoding "setup.cfg" has been added for this release due to some downstream lack of adherence to PEP 517. Should be removed in a future release so please prepare accordingly. Removed reliance on a symlink for the "idna-data" tool to comport with PEP 517 and the Python Packaging User Guide for sdist archives. Added security reporting protocol for project Thanks Jon Ribbens, Diogo Teles Sant'Anna, Wu Tingfeng for contributions to this release. 3.4 (2022-09-14) ++++++++++++++++ Update to Unicode 15.0.0 Migrate to pyproject.toml for build information (PEP 621) Correct another instance where generic exception was raised instead of IDNAError for malformed input Source distribution uses zeroized file ownership for improved reproducibility Thanks to Seth Michael Larson for contributions to this release. 3.3 (2021-10-13) ++++++++++++++++ Update to Unicode 14.0.0 Update to in-line type annotations Throw IDNAError exception correctly for some malformed input Advertise support for Python 3.10 Improve testing regime on Github ... (truncated) Commits 1d365e1 Release v3.7 c1b3154 Merge pull request #172 from kjd/optimize-contextj 0394ec7 Merge branch 'master' into optimize-contextj cd58a23 Merge pull request #152 from elliotwutingfeng/dev 5beb28b More efficient resolution of joiner contexts 1b12148 Update ossf/scorecard-action to v2.3.1 d516b87 Update Github actions/checkout to v4 c095c75 Merge branch 'master' into dev 60a0a4c Fix typo in GitHub Actions workflow key 5918a0e Merge branch 'master' into dev Additional commits viewable in compare view Updates requests from 2.25.1 to 2.32.2 Release notes Sourced from requests's releases. v2.32.2 2.32.2 (2024-05-21) Deprecations To provide a more stable migration for custom HTTPAdapters impacted by the CVE changes in 2.32.0, we've renamed _get_connection to a new public API, get_connection_with_tls_context. Existing custom HTTPAdapters will need to migrate their code to use this new API. get_connection is considered deprecated in all versions of Requests>=2.32.0. A minimal (2-line) example has been provided in the linked PR to ease migration, but we strongly urge users to evaluate if their custom adapter is subject to the same issue described in CVE-2024-35195. (#6710) v2.32.1 2.32.1 (2024-05-20) Bugfixes Add missing test certs to the sdist distributed on PyPI. v2.32.0 2.32.0 (2024-05-20) 🐍 PYCON US 2024 EDITION 🐍 Security Fixed an issue where setting verify=False on the first request from a Session will cause subsequent requests to the same origin to also ignore cert verification, regardless of the value of verify. (GHSA-9wx4-h78v-vm56) Improvements verify=True now reuses a global SSLContext which should improve request time variance between first and subsequent requests. It should also minimize certificate load time on Windows systems when using a Python version built with OpenSSL 3.x. (#6667) Requests now supports optional use of character detection (chardet or charset_normalizer) when repackaged or vendored. This enables pip and other projects to minimize their vendoring surface area. The Response.text() and apparent_encoding APIs will default to utf-8 if neither library is present. (#6702) Bugfixes Fixed bug in length detection where emoji length was incorrectly calculated in the request content-length. (#6589) Fixed deserialization bug in JSONDecodeError. (#6629) Fixed bug where an extra leading / (path separator) could lead urllib3 to unnecessarily reparse the request URI. (#6644) ... (truncated) Changelog Sourced from requests's changelog. 2.32.2 (2024-05-21) Deprecations To provide a more stable migration for custom HTTPAdapters impacted by the CVE changes in 2.32.0, we've renamed _get_connection to a new public API, get_connection_with_tls_context. Existing custom HTTPAdapters will need to migrate their code to use this new API. get_connection is considered deprecated in all versions of Requests>=2.32.0. A minimal (2-line) example has been provided in the linked PR to ease migration, but we strongly urge users to evaluate if their custom adapter is subject to the same issue described in CVE-2024-35195. (#6710) 2.32.1 (2024-05-20) Bugfixes Add missing test certs to the sdist distributed on PyPI. 2.32.0 (2024-05-20) Security Fixed an issue where setting verify=False on the first request from a Session will cause subsequent requests to the same origin to also ignore cert verification, regardless of the value of verify. (GHSA-9wx4-h78v-vm56) Improvements verify=True now reuses a global SSLContext which should improve request time variance between first and subsequent requests. It should also minimize certificate load time on Windows systems when using a Python version built with OpenSSL 3.x. (#6667) Requests now supports optional use of character detection (chardet or charset_normalizer) when repackaged or vendored. This enables pip and other projects to minimize their vendoring surface area. The Response.text() and apparent_encoding APIs will default to utf-8 if neither library is present. (#6702) Bugfixes Fixed bug in length detection where emoji length was incorrectly calculated in the request content-length. (#6589) Fixed deserialization bug in JSONDecodeError. (#6629) Fixed bug where an extra leading / (path separator) could lead urllib3 to unnecessarily reparse the request URI. (#6644) Deprecations ... (truncated) Commits 88dce9d v2.32.2 c98e4d1 Merge pull request #6710 from nateprewitt/api_rename 92075b3 Add deprecation warning aa1461b Move _get_connection to get_connection_with_tls_context 970e8ce v2.32.1 d6ebc4a v2.32.0 9a40d12 Avoid reloading root certificates to improve concurrent performance (#6667) 0c030f7 Merge pull request #6702 from nateprewitt/no_char_detection 555b870 Allow character detection dependencies to be optional in post-packaging steps d6dded3 Merge pull request #6700 from franekmagiera/update-redirect-to-invalid-uri-test Additional commits viewable in compare view Updates urllib3 from 1.26.7 to 1.26.19 Release notes Sourced from urllib3's releases. 1.26.19 🚀 urllib3 is fundraising for HTTP/2 support urllib3 is raising ~$40,000 USD to release HTTP/2 support and ensure long-term sustainable maintenance of the project after a sharp decline in financial support for 2023. If your company or organization uses Python and would benefit from HTTP/2 support in Requests, pip, cloud SDKs, and thousands of other projects please consider contributing financially to ensure HTTP/2 support is developed sustainably and maintained for the long-haul. Thank you for your support. Changes Added the Proxy-Authorization header to the list of headers to strip from requests when redirecting to a different host. As before, different headers can be set via Retry.remove_headers_on_redirect. Full Changelog: urllib3/urllib3@1.26.18...1.26.19 Note that due to an issue with our release automation, no multiple.intoto.jsonl file is available for this release. 1.26.18 Made body stripped from HTTP requests changing the request method to GET after HTTP 303 "See Other" redirect responses. (GHSA-g4mx-q9vg-27p4) 1.26.17 Added the Cookie header to the list of headers to strip from requests when redirecting to a different host. As before, different headers can be set via Retry.remove_headers_on_redirect. (GHSA-v845-jxx5-vc9f) 1.26.16 Fixed thread-safety issue where accessing a PoolManager with many distinct origins would cause connection pools to be closed while requests are in progress (#2954) 1.26.15 Fix socket timeout value when HTTPConnection is reused (urllib3/urllib3#2645) Remove "!" character from the unreserved characters in IPv6 Zone ID parsing (urllib3/urllib3#2899) Fix IDNA handling of 'x80' byte (urllib3/urllib3#2901) 1.26.14 Fixed parsing of port 0 (zero) returning None, instead of 0 (#2850) Removed deprecated HTTPResponse.getheaders() calls in urllib3.contrib module. 1.26.13 Deprecated the HTTPResponse.getheaders() and HTTPResponse.getheader() methods. Fixed an issue where parsing a URL with leading zeroes in the port would be rejected even when the port number after removing the zeroes was valid. Fixed a deprecation warning when using cryptography v39.0.0. Removed the <4 in the Requires-Python packaging metadata field. 1.26.12 Deprecated the urllib3[secure] extra and the urllib3.contrib.pyopenssl module. Both will be removed in v2.x. See this GitHub issue for justification and info on how to migrate. 1.26.11 If you or your organization rely on urllib3 consider supporting us via GitHub Sponsors. ⚠️ urllib3 v2.0 will drop support for Python 2: Read more in the v2.0 Roadmap Fixed an issue where reading more than 2 GiB in a call to HTTPResponse.read would raise an OverflowError on Python 3.9 and earlier. ... (truncated) Changelog Sourced from urllib3's changelog. 1.26.19 (2024-06-17) Added the Proxy-Authorization header to the list of headers to strip from requests when redirecting to a different host. As before, different headers can be set via Retry.remove_headers_on_redirect. Fixed handling of OpenSSL 3.2.0 new error message for misconfiguring an HTTP proxy as HTTPS. ([#3405](https://github.com/urllib3/urllib3/issues/3405) __) 1.26.18 (2023-10-17) Made body stripped from HTTP requests changing the request method to GET after HTTP 303 "See Other" redirect responses. 1.26.17 (2023-10-02) Added the Cookie header to the list of headers to strip from requests when redirecting to a different host. As before, different headers can be set via Retry.remove_headers_on_redirect. ([#3139](https://github.com/urllib3/urllib3/issues/3139) _) 1.26.16 (2023-05-23) Fixed thread-safety issue where accessing a PoolManager with many distinct origins would cause connection pools to be closed while requests are in progress ([#2954](https://github.com/urllib3/urllib3/issues/2954) _) 1.26.15 (2023-03-10) Fix socket timeout value when HTTPConnection is reused ([#2645](https://github.com/urllib3/urllib3/issues/2645) __) Remove "!" character from the unreserved characters in IPv6 Zone ID parsing ([#2899](https://github.com/urllib3/urllib3/issues/2899) __) Fix IDNA handling of '\x80' byte ([#2901](https://github.com/urllib3/urllib3/issues/2901) __) 1.26.14 (2023-01-11) Fixed parsing of port 0 (zero) returning None, instead of 0. ([#2850](https://github.com/urllib3/urllib3/issues/2850) __) Removed deprecated getheaders() calls in contrib module. Fixed the type hint of PoolKey.key_retries by adding bool to the union. ([#2865](https://github.com/urllib3/urllib3/issues/2865) __) 1.26.13 (2022-11-23) Deprecated the HTTPResponse.getheaders() and HTTPResponse.getheader() methods. Fixed an issue where parsing a URL with leading zeroes in the port would be rejected even when the port number after removing the zeroes was valid. Fixed a deprecation warning when using cryptography v39.0.0. Removed the <4 in the Requires-Python packaging metadata field. 1.26.12 (2022-08-22) Deprecated the urllib3[secure] extra and the urllib3.contrib.pyopenssl module. Both will be removed in v2.x. See this GitHub issue _ ... (truncated) Commits d9d85c8 Release 1.26.19 8528b63 [1.26] Fix downstream tests (#3409) 40b6d16 Merge pull request from GHSA-34jh-p97f-mpxf 29cfd02 Fix handling of OpenSSL 3.2.0 new error message "record layer failure" (#3405) b600643 [1.26] Bump RECENT_DATE (#3404) 7e2d389 [1.26] Fix running CPython 2.7 tests in CI (#3137) 9c2c230 Release 1.26.18 (#3159) b594c5c Merge pull request from GHSA-g4mx-q9vg-27p4 944f0eb [1.26] Use vendored six in urllib3.contrib.securetransport c9016bf Release 1.26.17 Additional commits viewable in compare view Updates jinja2 from 3.0.2 to 3.1.4 Release notes Sourced from jinja2's releases. 3.1.4 This is the Jinja 3.1.4 security release, which fixes security issues and bugs but does not otherwise change behavior and should not result in breaking changes. PyPI: https://pypi.org/project/Jinja2/3.1.4/ Changes: https://jinja.palletsprojects.com/en/3.1.x/changes/#version-3-1-4 The xmlattr filter does not allow keys with / solidus, > greater-than sign, or = equals sign, in addition to disallowing spaces. Regardless of any validation done by Jinja, user input should never be used as keys to this filter, or must be separately validated first. GHSA-h75v-3vvj-5mfj 3.1.3 This is a fix release for the 3.1.x feature branch. Fix for GHSA-h5c8-rqwp-cp95. You are affected if you are using xmlattr and passing user input as attribute keys. Changes: https://jinja.palletsprojects.com/en/3.1.x/changes/#version-3-1-3 Milestone: https://github.com/pallets/jinja/milestone/15?closed=1 3.1.2 This is a fix release for the 3.1.0 feature release. Changes: https://jinja.palletsprojects.com/en/3.1.x/changes/#version-3-1-2 Milestone: https://github.com/pallets/jinja/milestone/13?closed=1 3.1.1 Changes: https://jinja.palletsprojects.com/en/3.1.x/changes/#version-3-1-1 Milestone: https://github.com/pallets/jinja/milestone/12?closed=1 3.1.0 This is a feature release, which includes new features and removes previously deprecated features. The 3.1.x branch is now the supported bugfix branch, the 3.0.x branch has become a tag marking the end of support for that branch. We encourage everyone to upgrade, and to use a tool such as pip-tools to pin all dependencies and control upgrades. We also encourage upgrading to MarkupSafe 2.1.1, the latest version at this time. Changes: https://jinja.palletsprojects.com/en/3.1.x/changes/#version-3-1-0 Milestone: https://github.com/pallets/jinja/milestone/8?closed=1 MarkupSafe changes: https://markupsafe.palletsprojects.com/en/2.1.x/changes/#version-2-1-1 3.0.3 Changes: https://jinja.palletsprojects.com/en/3.0.x/changes/#version-3-0-3 Changelog Sourced from jinja2's changelog. Version 3.1.4 Released 2024-05-05 The xmlattr filter does not allow keys with / solidus, > greater-than sign, or = equals sign, in addition to disallowing spaces. Regardless of any validation done by Jinja, user input should never be used as keys to this filter, or must be separately validated first. :ghsa:h75v-3vvj-5mfj Version 3.1.3 Released 2024-01-10 Fix compiler error when checking if required blocks in parent templates are empty. :pr:1858 xmlattr filter does not allow keys with spaces. :ghsa:h5c8-rqwp-cp95 Make error messages stemming from invalid nesting of {% trans %} blocks more helpful. :pr:1918 Version 3.1.2 Released 2022-04-28 Add parameters to Environment.overlay to match __init__. :issue:1645 Handle race condition in FileSystemBytecodeCache. :issue:1654 Version 3.1.1 Released 2022-03-25 The template filename on Windows uses the primary path separator. :issue:1637 Version 3.1.0 Released 2022-03-24 Drop support for Python 3.6. :pr:1534 Remove previously deprecated code. :pr:1544 ... (truncated) Commits dd4a8b5 release version 3.1.4 0668239 Merge pull request from GHSA-h75v-3vvj-5mfj d655030 disallow invalid characters in keys to xmlattr filter a7863ba add ghsa links b5c98e7 start version 3.1.4 da3a9f0 update project files (#1968) 0ee5eb4 satisfy formatter, linter, and strict mypy 20477c6 update project files (#5457) e491223 update pyyaml dev dependency 36f9885 fix pr link Additional commits viewable in compare view Updates setuptools from 58.2.0 to 65.5.1 Release notes Sourced from setuptools's releases. v65.5.1 No release notes provided. v65.5.0 No release notes provided. v65.4.1 No release notes provided. v65.4.0 No release notes provided. v65.3.0 No release notes provided. v65.2.0 No release notes provided. v65.1.1 No release notes provided. v65.1.0 No release notes provided. v65.0.2 No release notes provided. v65.0.1 No release notes provided. v65.0.0 No release notes provided. v64.0.3 No release notes provided. v64.0.2 No release notes provided. v64.0.1 No release notes provided. v64.0.0 No release notes provided. v63.4.3 No release notes provided. v63.4.2 No release notes provided. ... (truncated) Changelog Sourced from setuptools's changelog. v65.5.1 Misc #3638: Drop a test dependency on the mock package, always use :external+python:py:mod:unittest.mock -- by :user:hroncok #3659: Fixed REDoS vector in package_index -- by :user:SCH227 v65.5.0 Changes #3624: Fixed editable install for multi-module/no-package src-layout projects. #3626: Minor refactorings to support distutils using stdlib logging module. Documentation changes #3419: Updated the example version numbers to be compliant with PEP-440 on the "Specifying Your Project’s Version" page of the user guide. Misc #3569: Improved information about conflicting entries in the current working directory and editable install (in documentation and as an informational warning). #3576: Updated version of validate_pyproject. v65.4.1 Misc #3613: Fixed encoding errors in expand.StaticModule when system default encoding doesn't match expectations for source files. #3617: Merge with pypa/distutils@6852b20 including fix for pypa/distutils#181. v65.4.0 Changes #3609: Merge with pypa/distutils@d82d926 including support for DIST_EXTRA_CONFIG in pypa/distutils#177. v65.3.0 ... (truncated) Commits a462cb5 Bump version: 65.5.0 → 65.5.1 de35d8b Merge pull request #3656 from bmorris3/typos 58e23de Update changelog. Ref #3659. 43a9c9b Limit the amount of whitespace to search/backtrack. Fixes #3659. 5791343 Add test capturing failed expectation. Ref #3659. 1f97905 ⚫ Fade to black. 6254567 Remove workaround for emacs. 729b180 ⚫ Fade to black. c068081 Typo corrections f777a40Description has been truncated

Open Graph Description: Bumps the pip group with 4 updates in the /examples/build_file_generation directory: certifi, idna, requests and urllib3. Bumps the pip group with 6 updates in the /examples/pip_parse directory: ...

X Description: Bumps the pip group with 4 updates in the /examples/build_file_generation directory: certifi, idna, requests and urllib3. Bumps the pip group with 6 updates in the /examples/pip_parse directory: ...

Opengraph URL: https://github.com/testfailed/rules_python/pull/22

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:42c6b455-0d18-4bea-b240-3d10a4dc1094
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idED66:22EFB2:439E30F:5BE6607:6980B0CD
html-safe-nonce39c7d0a30fbf89a9f50c0a718e3c9e8a47988afb8dd4c039a68b508d09c07138
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFRDY2OjIyRUZCMjo0MzlFMzBGOjVCRTY2MDc6Njk4MEIwQ0QiLCJ2aXNpdG9yX2lkIjoiOTM5OTUxMDQzMjg5MDY3NzI1IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmacfe8c9ec6857d70d0e4af471198b2817ab8f6ae83adece1e1a7ca582bad57e2ba
hovercard-subject-tagpull_request:1955653357
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/testfailed/rules_python/pull/22/files
twitter:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
og:image:altBumps the pip group with 4 updates in the /examples/build_file_generation directory: certifi, idna, requests and urllib3. Bumps the pip group with 6 updates in the /examples/pip_parse directory: ...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Noned5070894b88d5cf03785c677c23c659b0431dfc2e6df2f35e35f2e0de9ceb94a
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/testfailed/rules_python git https://github.com/testfailed/rules_python.git
octolytics-dimension-user_id12092516
octolytics-dimension-user_logintestfailed
octolytics-dimension-repository_id454473337
octolytics-dimension-repository_nwotestfailed/rules_python
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forktrue
octolytics-dimension-repository_parent_id101780532
octolytics-dimension-repository_parent_nwobazel-contrib/rules_python
octolytics-dimension-repository_network_root_id101780532
octolytics-dimension-repository_network_root_nwobazel-contrib/rules_python
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release821a5a2664fd1c2441fb3caded98e0f525bf913f
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Ftestfailed%2Frules_python%2Fpull%2F22%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Ftestfailed%2Frules_python%2Fpull%2F22%2Ffiles
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=testfailed%2Frules_python
Reloadhttps://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files
Reloadhttps://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files
Reloadhttps://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files
testfailed https://patch-diff.githubusercontent.com/testfailed
rules_pythonhttps://patch-diff.githubusercontent.com/testfailed/rules_python
bazel-contrib/rules_pythonhttps://patch-diff.githubusercontent.com/bazel-contrib/rules_python
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Ftestfailed%2Frules_python
Fork 0 https://patch-diff.githubusercontent.com/login?return_to=%2Ftestfailed%2Frules_python
Star 0 https://patch-diff.githubusercontent.com/login?return_to=%2Ftestfailed%2Frules_python
Code https://patch-diff.githubusercontent.com/testfailed/rules_python
Pull requests 3 https://patch-diff.githubusercontent.com/testfailed/rules_python/pulls
Actions https://patch-diff.githubusercontent.com/testfailed/rules_python/actions
Projects 0 https://patch-diff.githubusercontent.com/testfailed/rules_python/projects
Security 0 https://patch-diff.githubusercontent.com/testfailed/rules_python/security
Insights https://patch-diff.githubusercontent.com/testfailed/rules_python/pulse
Code https://patch-diff.githubusercontent.com/testfailed/rules_python
Pull requests https://patch-diff.githubusercontent.com/testfailed/rules_python/pulls
Actions https://patch-diff.githubusercontent.com/testfailed/rules_python/actions
Projects https://patch-diff.githubusercontent.com/testfailed/rules_python/projects
Security https://patch-diff.githubusercontent.com/testfailed/rules_python/security
Insights https://patch-diff.githubusercontent.com/testfailed/rules_python/pulse
Sign up for GitHub https://patch-diff.githubusercontent.com/signup?return_to=%2Ftestfailed%2Frules_python%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://patch-diff.githubusercontent.com/login?return_to=%2Ftestfailed%2Frules_python%2Fissues%2Fnew%2Fchoose
dependabothttps://patch-diff.githubusercontent.com/apps/dependabot
mainhttps://patch-diff.githubusercontent.com/testfailed/rules_python/tree/main
dependabot/pip/examples/build_file_generation/pip-0b65511918https://patch-diff.githubusercontent.com/testfailed/rules_python/tree/dependabot/pip/examples/build_file_generation/pip-0b65511918
Conversation 0 https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22
Commits 1 https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/commits
Checks 0 https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/checks
Files changed https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files
Please reload this pagehttps://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files
Bump the pip group across 3 directories with 7 updates https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files#top
Show all changes 1 commit https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files
0ff4173 Bump the pip group across 3 directories with 7 updates dependabot[bot] Jul 5, 2024 https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/commits/0ff41732e50f2314c3e6c79903fdcfafb572b880
Clear filters https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files
Please reload this pagehttps://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files
Please reload this pagehttps://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files
requirements.txt https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files#diff-b53fbb4902c1826f90c33925a2ce2aa3c7a5c7226bda13b8d8c5a7f1ed9f232c
requirements_lock.txt https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files#diff-e0bc536f8d337383061ce5167c619d2045658a67accaa6b0c36dd15cb24dd27d
requirements.txt https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files#diff-54e8f3e89ed9e9a8cac2da925d7c59f2ac7b4cde14cdfe257d69982fd43d358a
requirements_lock.txt https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files#diff-8448ac45f0500a4e2191dbc59904ce3443318039d80c7005d20036f10f6c5974
requirements.txt https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files#diff-946f3124e2a1c41dab7f0ffe726e67d15108758f0ea1d597cc0598e11a421f3a
examples/build_file_generation/requirements.txthttps://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files#diff-b53fbb4902c1826f90c33925a2ce2aa3c7a5c7226bda13b8d8c5a7f1ed9f232c
View file https://patch-diff.githubusercontent.com/testfailed/rules_python/blob/0ff41732e50f2314c3e6c79903fdcfafb572b880/examples/build_file_generation/requirements.txt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/{{ revealButtonHref }}
examples/build_file_generation/requirements_lock.txthttps://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files#diff-e0bc536f8d337383061ce5167c619d2045658a67accaa6b0c36dd15cb24dd27d
View file https://patch-diff.githubusercontent.com/testfailed/rules_python/blob/0ff41732e50f2314c3e6c79903fdcfafb572b880/examples/build_file_generation/requirements_lock.txt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files#diff-e0bc536f8d337383061ce5167c619d2045658a67accaa6b0c36dd15cb24dd27d
examples/pip_parse/requirements.txthttps://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files#diff-54e8f3e89ed9e9a8cac2da925d7c59f2ac7b4cde14cdfe257d69982fd43d358a
View file https://patch-diff.githubusercontent.com/testfailed/rules_python/blob/0ff41732e50f2314c3e6c79903fdcfafb572b880/examples/pip_parse/requirements.txt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/{{ revealButtonHref }}
examples/pip_parse/requirements_lock.txthttps://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files#diff-8448ac45f0500a4e2191dbc59904ce3443318039d80c7005d20036f10f6c5974
View file https://patch-diff.githubusercontent.com/testfailed/rules_python/blob/0ff41732e50f2314c3e6c79903fdcfafb572b880/examples/pip_parse/requirements_lock.txt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files#diff-8448ac45f0500a4e2191dbc59904ce3443318039d80c7005d20036f10f6c5974
https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files#diff-8448ac45f0500a4e2191dbc59904ce3443318039d80c7005d20036f10f6c5974
https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files#diff-8448ac45f0500a4e2191dbc59904ce3443318039d80c7005d20036f10f6c5974
https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files#diff-8448ac45f0500a4e2191dbc59904ce3443318039d80c7005d20036f10f6c5974
https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files#diff-8448ac45f0500a4e2191dbc59904ce3443318039d80c7005d20036f10f6c5974
https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files#diff-8448ac45f0500a4e2191dbc59904ce3443318039d80c7005d20036f10f6c5974
examples/pip_repository_annotations/requirements.txthttps://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files#diff-946f3124e2a1c41dab7f0ffe726e67d15108758f0ea1d597cc0598e11a421f3a
View file https://patch-diff.githubusercontent.com/testfailed/rules_python/blob/0ff41732e50f2314c3e6c79903fdcfafb572b880/examples/pip_repository_annotations/requirements.txt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/testfailed/rules_python/pull/22/files#diff-946f3124e2a1c41dab7f0ffe726e67d15108758f0ea1d597cc0598e11a421f3a
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.