René's URL Explorer Experiment


Title: Update dependency urllib3 to v2.6.3 [SECURITY] by renovate[bot] · Pull Request #39 · protoconf/client-python · GitHub

Open Graph Title: Update dependency urllib3 to v2.6.3 [SECURITY] by renovate[bot] · Pull Request #39 · protoconf/client-python

X Title: Update dependency urllib3 to v2.6.3 [SECURITY] by renovate[bot] · Pull Request #39 · protoconf/client-python

Description: This PR contains the following updates: Package Change Age Confidence urllib3 (changelog) ==2.2.2 → ==2.6.3 GitHub Vulnerability Alerts CVE-2025-50181 urllib3 handles redirects and retries using the same mechanism, which is controlled by the Retry object. The most common way to disable redirects is at the request level, as follows: resp = urllib3.request("GET", "https://httpbin.org/redirect/1", redirect=False) print(resp.status) # 302 However, it is also possible to disable redirects, for all requests, by instantiating a PoolManager and specifying retries in a way that disable redirects: import urllib3 http = urllib3.PoolManager(retries=0) # should raise MaxRetryError on redirect http = urllib3.PoolManager(retries=urllib3.Retry(redirect=0)) # equivalent to the above http = urllib3.PoolManager(retries=False) # should return the first response resp = http.request("GET", "https://httpbin.org/redirect/1") However, the retries parameter is currently ignored, which means all the above examples don't disable redirects. Affected usages Passing retries on PoolManager instantiation to disable redirects or restrict their number. By default, requests and botocore users are not affected. Impact Redirects are often used to exploit SSRF vulnerabilities. An application attempting to mitigate SSRF or open redirect vulnerabilities by disabling redirects at the PoolManager level will remain vulnerable. Remediation You can remediate this vulnerability with the following steps: Upgrade to a patched version of urllib3. If your organization would benefit from the continued support of urllib3 1.x, please contact sethmichaellarson@gmail.com to discuss sponsorship or contribution opportunities. Disable redirects at the request() level instead of the PoolManager() level. CVE-2025-50182 urllib3 supports being used in a Pyodide runtime utilizing the JavaScript Fetch API or falling back on XMLHttpRequest. This means you can use Python libraries to make HTTP requests from your browser or Node.js. Additionally, urllib3 provides a mechanism to control redirects. However, the retries and redirect parameters are ignored with Pyodide; the runtime itself determines redirect behavior. Affected usages Any code which relies on urllib3 to control the number of redirects for an HTTP request in a Pyodide runtime. Impact Redirects are often used to exploit SSRF vulnerabilities. An application attempting to mitigate SSRF or open redirect vulnerabilities by disabling redirects may remain vulnerable if a Pyodide runtime redirect mechanism is unsuitable. Remediation If you use urllib3 in Node.js, upgrade to a patched version of urllib3. Unfortunately, browsers provide no suitable way which urllib3 can use: XMLHttpRequest provides no control over redirects, the Fetch API returns opaqueredirect responses lacking data when redirects are controlled manually. Expect default browser behavior for redirects. CVE-2025-66418 Impact urllib3 supports chained HTTP encoding algorithms for response content according to RFC 9110 (e.g., Content-Encoding: gzip, zstd). However, the number of links in the decompression chain was unbounded allowing a malicious server to insert a virtually unlimited number of compression steps leading to high CPU usage and massive memory allocation for the decompressed data. Affected usages Applications and libraries using urllib3 version 2.5.0 and earlier for HTTP requests to untrusted sources unless they disable content decoding explicitly. Remediation Upgrade to at least urllib3 v2.6.0 in which the library limits the number of links to 5. If upgrading is not immediately possible, use preload_content=False and ensure that resp.headers["content-encoding"] contains a safe number of encodings before reading the response content. CVE-2025-66471 Impact urllib3's streaming API is designed for the efficient handling of large HTTP responses by reading the content in chunks, rather than loading the entire response body into memory at once. When streaming a compressed response, urllib3 can perform decoding or decompression based on the HTTP Content-Encoding header (e.g., gzip, deflate, br, or zstd). The library must read compressed data from the network and decompress it until the requested chunk size is met. Any resulting decompressed data that exceeds the requested amount is held in an internal buffer for the next read operation. The decompression logic could cause urllib3 to fully decode a small amount of highly compressed data in a single operation. This can result in excessive resource consumption (high CPU usage and massive memory allocation for the decompressed data; CWE-409) on the client side, even if the application only requested a small chunk of data. Affected usages Applications and libraries using urllib3 version 2.5.0 and earlier to stream large compressed responses or content from untrusted sources. stream(), read(amt=256), read1(amt=256), read_chunked(amt=256), readinto(b) are examples of urllib3.HTTPResponse method calls using the affected logic unless decoding is disabled explicitly. Remediation Upgrade to at least urllib3 v2.6.0 in which the library avoids decompressing data that exceeds the requested amount. If your environment contains a package facilitating the Brotli encoding, upgrade to at least Brotli 1.2.0 or brotlicffi 1.2.0.0 too. These versions are enforced by the urllib3[brotli] extra in the patched versions of urllib3. Credits The issue was reported by @​Cycloctane. Supplemental information was provided by @​stamparm during a security audit performed by 7ASecurity and facilitated by OSTIF. CVE-2026-21441 Impact urllib3's streaming API is designed for the efficient handling of large HTTP responses by reading the content in chunks, rather than loading the entire response body into memory at once. urllib3 can perform decoding or decompression based on the HTTP Content-Encoding header (e.g., gzip, deflate, br, or zstd). When using the streaming API, the library decompresses only the necessary bytes, enabling partial content consumption. However, for HTTP redirect responses, the library would read the entire response body to drain the connection and decompress the content unnecessarily. This decompression occurred even before any read methods were called, and configured read limits did not restrict the amount of decompressed data. As a result, there was no safeguard against decompression bombs. A malicious server could exploit this to trigger excessive resource consumption on the client (high CPU usage and large memory allocations for decompressed data; CWE-409). Affected usages Applications and libraries using urllib3 version 2.6.2 and earlier to stream content from untrusted sources by setting preload_content=False when they do not disable redirects. Remediation Upgrade to at least urllib3 v2.6.3 in which the library does not decode content of redirect responses when preload_content=False. If upgrading is not immediately possible, disable redirects by setting redirect=False for requests to untrusted source. Release Notes urllib3/urllib3 (urllib3) v2.6.3 Compare Source ================== Fixed a high-severity security issue where decompression-bomb safeguards of the streaming API were bypassed when HTTP redirects were followed. (GHSA-38jv-5279-wg99 __) Started treating Retry-After times greater than 6 hours as 6 hours by default. (#​3743 __) Fixed urllib3.connection.VerifiedHTTPSConnection on Emscripten. (#​3752 __) v2.6.2 Compare Source ================== Fixed HTTPResponse.read_chunked() to properly handle leftover data in the decoder's buffer when reading compressed chunked responses. (#​3734 __) v2.6.1 Compare Source ================== Restore previously removed HTTPResponse.getheaders() and HTTPResponse.getheader() methods. (#​3731 __) v2.6.0 Compare Source ================== Security Fixed a security issue where streaming API could improperly handle highly compressed HTTP content ("decompression bombs") leading to excessive resource consumption even when a small amount of data was requested. Reading small chunks of compressed data is safer and much more efficient now. (GHSA-2xpw-w6gg-jr37 __) Fixed a security issue where an attacker could compose an HTTP response with virtually unlimited links in the Content-Encoding header, potentially leading to a denial of service (DoS) attack by exhausting system resources during decoding. The number of allowed chained encodings is now limited to 5. (GHSA-gm62-xv2j-4w53 __) .. caution:: If urllib3 is not installed with the optional urllib3[brotli] extra, but your environment contains a Brotli/brotlicffi/brotlipy package anyway, make sure to upgrade it to at least Brotli 1.2.0 or brotlicffi 1.2.0.0 to benefit from the security fixes and avoid warnings. Prefer using urllib3[brotli] to install a compatible Brotli package automatically. If you use custom decompressors, please make sure to update them to respect the changed API of urllib3.response.ContentDecoder. Features Enabled retrieval, deletion, and membership testing in HTTPHeaderDict using bytes keys. (#​3653 __) Added host and port information to string representations of HTTPConnection. (#​3666 __) Added support for Python 3.14 free-threading builds explicitly. (#​3696 __) Removals Removed the HTTPResponse.getheaders() method in favor of HTTPResponse.headers. Removed the HTTPResponse.getheader(name, default) method in favor of HTTPResponse.headers.get(name, default). (#​3622 __) Bugfixes Fixed redirect handling in urllib3.PoolManager when an integer is passed for the retries parameter. (#​3649 __) Fixed HTTPConnectionPool when used in Emscripten with no explicit port. (#​3664 __) Fixed handling of SSLKEYLOGFILE with expandable variables. (#​3700 __) Misc Changed the zstd extra to install backports.zstd instead of zstandard on Python 3.13 and before. (#​3693 __) Improved the performance of content decoding by optimizing BytesQueueBuffer class. (#​3710 __) Allowed building the urllib3 package with newer setuptools-scm v9.x. (#​3652 __) Ensured successful urllib3 builds by setting Hatchling requirement to >= 1.27.0. (#​3638 __) v2.5.0 Compare Source ================== Features Added support for the compression.zstd module that is new in Python 3.14. See PEP 784 _ for more information. (#​3610 __) Added support for version 0.5 of hatch-vcs (#​3612 __) Bugfixes Fixed a security issue where restricting the maximum number of followed redirects at the urllib3.PoolManager level via the retries parameter did not work. Made the Node.js runtime respect redirect parameters such as retries and redirects. Raised exception for HTTPResponse.shutdown on a connection already released to the pool. (#​3581 __) Fixed incorrect CONNECT statement when using an IPv6 proxy with connection_from_host. Previously would not be wrapped in []. (#​3615 __) v2.4.0 Compare Source ================== Features Applied PEP 639 by specifying the license fields in pyproject.toml. (#​3522 __) Updated exceptions to save and restore more properties during the pickle/serialization process. (#​3567 __) Added verify_flags option to create_urllib3_context with a default of VERIFY_X509_PARTIAL_CHAIN and VERIFY_X509_STRICT for Python 3.13+. (#​3571 __) Bugfixes Fixed a bug with partial reads of streaming data in Emscripten. (#​3555 __) Misc Switched to uv for installing development dependecies. (#​3550 __) Removed the multiple.intoto.jsonl asset from GitHub releases. Attestation of release files since v2.3.0 can be found on PyPI. (#​3566 __) v2.3.0 Compare Source ================== Features Applied PEP 639 by specifying the license fields in pyproject.toml. (#​3522 __) Updated exceptions to save and restore more properties during the pickle/serialization process. (#​3567 __) Added verify_flags option to create_urllib3_context with a default of VERIFY_X509_PARTIAL_CHAIN and VERIFY_X509_STRICT for Python 3.13+. (#​3571 __) Bugfixes Fixed a bug with partial reads of streaming data in Emscripten. (#​3555 __) Misc Switched to uv for installing development dependecies. (#​3550 __) Removed the multiple.intoto.jsonl asset from GitHub releases. Attestation of release files since v2.3.0 can be found on PyPI. (#​3566 __) v2.2.3 Compare Source ================== Features Added support for Python 3.13. (#​3473 __) Bugfixes Fixed the default encoding of chunked request bodies to be UTF-8 instead of ISO-8859-1. All other methods of supplying a request body already use UTF-8 starting in urllib3 v2.0. (#​3053 __) Fixed ResourceWarning on CONNECT with Python < 3.11.4 by backporting python/cpython#103472. (#​3252 __) Adjust tolerance for floating-point comparison on Windows to avoid flakiness in CI (#​3413 __) Fixed a crash where certain standard library hash functions were absent in restricted environments. (#​3432 __) Fixed mypy error when adding to HTTPConnection.default_socket_options. (#​3448 __) HTTP/2 (experimental) HTTP/2 support is still in early development. Excluded Transfer-Encoding: chunked from HTTP/2 request body (#​3425 __) Added version checking for h2 (https://pypi.org/project/h2/) usage. Now only accepting supported h2 major version 4.x.x. (#​3290 __) Added a probing mechanism for determining whether a given target origin supports HTTP/2 via ALPN. (#​3301 __) Add support for sending a request body with HTTP/2 (#​3302 __) Deprecations and Removals Note for downstream distributors: the _version.py file has been removed and is now created at build time by hatch-vcs. (#​3412 __) Drop support for end-of-life PyPy3.8 and PyPy3.9. (#​3475 __) Configuration 📅 Schedule: Branch creation - "" (UTC), 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 this update again. If you want to rebase/retry this PR, check this box This PR was generated by Mend Renovate. View the repository job log.

Open Graph Description: This PR contains the following updates: Package Change Age Confidence urllib3 (changelog) ==2.2.2 → ==2.6.3 GitHub Vulnerability Alerts CVE-2025-50181 urllib3 handles redirects and retr...

X Description: This PR contains the following updates: Package Change Age Confidence urllib3 (changelog) ==2.2.2 → ==2.6.3 GitHub Vulnerability Alerts CVE-2025-50181 urllib3 handles redirects and retr...

Opengraph URL: https://github.com/protoconf/client-python/pull/39

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:91e3cd53-d243-301b-1ce6-b5ef4fc3bd26
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id9ED6:5A3B5:2041E3C:2B409D6:69807389
html-safe-nonced22d666d1de5b72309f0e9232cc939a0484e0eca2ed45985fcac8fddc1e0f199
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5RUQ2OjVBM0I1OjIwNDFFM0M6MkI0MDlENjo2OTgwNzM4OSIsInZpc2l0b3JfaWQiOiI3Mzg4NDUxMDUyMzM4ODQwNDEiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacfa4ec012e5a74d91fc8b9adbe835c7bf32a6068ed216fb47fe0ab0335835872f
hovercard-subject-tagpull_request:2603833971
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/protoconf/client-python/pull/39/files
twitter:imagehttps://avatars.githubusercontent.com/in/2740?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/2740?s=400&v=4
og:image:altThis PR contains the following updates: Package Change Age Confidence urllib3 (changelog) ==2.2.2 → ==2.6.3 GitHub Vulnerability Alerts CVE-2025-50181 urllib3 handles redirects and retr...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None0959b1a93ca48b0c88b3bddbdfd04ca43f388cb1a8293105a28c5ef6e8079db8
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/protoconf/client-python git https://github.com/protoconf/client-python.git
octolytics-dimension-user_id51154987
octolytics-dimension-user_loginprotoconf
octolytics-dimension-repository_id820059494
octolytics-dimension-repository_nwoprotoconf/client-python
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id820059494
octolytics-dimension-repository_network_root_nwoprotoconf/client-python
turbo-body-classeslogged-out env-production page-responsive
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release78307334c66591a8f87f493dd2968126b34961dd
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/protoconf/client-python/pull/39/files#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fprotoconf%2Fclient-python%2Fpull%2F39%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%2Fprotoconf%2Fclient-python%2Fpull%2F39%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=protoconf%2Fclient-python
Reloadhttps://patch-diff.githubusercontent.com/protoconf/client-python/pull/39/files
Reloadhttps://patch-diff.githubusercontent.com/protoconf/client-python/pull/39/files
Reloadhttps://patch-diff.githubusercontent.com/protoconf/client-python/pull/39/files
protoconf https://patch-diff.githubusercontent.com/protoconf
client-pythonhttps://patch-diff.githubusercontent.com/protoconf/client-python
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fprotoconf%2Fclient-python
Fork 0 https://patch-diff.githubusercontent.com/login?return_to=%2Fprotoconf%2Fclient-python
Star 3 https://patch-diff.githubusercontent.com/login?return_to=%2Fprotoconf%2Fclient-python
Code https://patch-diff.githubusercontent.com/protoconf/client-python
Issues 1 https://patch-diff.githubusercontent.com/protoconf/client-python/issues
Pull requests 15 https://patch-diff.githubusercontent.com/protoconf/client-python/pulls
Actions https://patch-diff.githubusercontent.com/protoconf/client-python/actions
Projects 0 https://patch-diff.githubusercontent.com/protoconf/client-python/projects
Security 0 https://patch-diff.githubusercontent.com/protoconf/client-python/security
Insights https://patch-diff.githubusercontent.com/protoconf/client-python/pulse
Code https://patch-diff.githubusercontent.com/protoconf/client-python
Issues https://patch-diff.githubusercontent.com/protoconf/client-python/issues
Pull requests https://patch-diff.githubusercontent.com/protoconf/client-python/pulls
Actions https://patch-diff.githubusercontent.com/protoconf/client-python/actions
Projects https://patch-diff.githubusercontent.com/protoconf/client-python/projects
Security https://patch-diff.githubusercontent.com/protoconf/client-python/security
Insights https://patch-diff.githubusercontent.com/protoconf/client-python/pulse
Sign up for GitHub https://patch-diff.githubusercontent.com/signup?return_to=%2Fprotoconf%2Fclient-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=%2Fprotoconf%2Fclient-python%2Fissues%2Fnew%2Fchoose
renovatehttps://patch-diff.githubusercontent.com/apps/renovate
mainhttps://patch-diff.githubusercontent.com/protoconf/client-python/tree/main
renovate/pypi-urllib3-vulnerabilityhttps://patch-diff.githubusercontent.com/protoconf/client-python/tree/renovate/pypi-urllib3-vulnerability
Conversation 0 https://patch-diff.githubusercontent.com/protoconf/client-python/pull/39
Commits 1 https://patch-diff.githubusercontent.com/protoconf/client-python/pull/39/commits
Checks 2 https://patch-diff.githubusercontent.com/protoconf/client-python/pull/39/checks
Files changed https://patch-diff.githubusercontent.com/protoconf/client-python/pull/39/files
Please reload this pagehttps://patch-diff.githubusercontent.com/protoconf/client-python/pull/39/files
Update dependency urllib3 to v2.6.3 [SECURITY] https://patch-diff.githubusercontent.com/protoconf/client-python/pull/39/files#top
Show all changes 1 commit https://patch-diff.githubusercontent.com/protoconf/client-python/pull/39/files
e874be9 Update dependency urllib3 to v2.6.3 [SECURITY] renovate[bot] Jan 8, 2026 https://patch-diff.githubusercontent.com/protoconf/client-python/pull/39/commits/e874be90fd163c926766282b8e1fc0c71eedf1e3
Clear filters https://patch-diff.githubusercontent.com/protoconf/client-python/pull/39/files
Please reload this pagehttps://patch-diff.githubusercontent.com/protoconf/client-python/pull/39/files
Please reload this pagehttps://patch-diff.githubusercontent.com/protoconf/client-python/pull/39/files
requirements-test.txthttps://patch-diff.githubusercontent.com/protoconf/client-python/pull/39/files#diff-685da804fbcac569d75387e475e57d1de687a54c6c41b3aa4057694cfb5abc4b
View file https://patch-diff.githubusercontent.com/protoconf/client-python/blob/e874be90fd163c926766282b8e1fc0c71eedf1e3/requirements-test.txt
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/protoconf/client-python/pull/39/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/protoconf/client-python/pull/39/files#diff-685da804fbcac569d75387e475e57d1de687a54c6c41b3aa4057694cfb5abc4b
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.