René's URL Explorer Experiment


Title: chore(deps): Bump httpx from 0.17.1 to 0.18.1 by dependabot[bot] · Pull Request #4 · P1sec/openapi-python-client · GitHub

Open Graph Title: chore(deps): Bump httpx from 0.17.1 to 0.18.1 by dependabot[bot] · Pull Request #4 · P1sec/openapi-python-client

X Title: chore(deps): Bump httpx from 0.17.1 to 0.18.1 by dependabot[bot] · Pull Request #4 · P1sec/openapi-python-client

Description: Bumps httpx from 0.17.1 to 0.18.1. Release notes Sourced from httpx's releases. Version 0.18.1 0.18.1 (29th April, 2021) Changed Update brotli support to use the brotlicffi package (Pull #1605) Ensure that Request(..., stream=...) does not auto-generate any headers on the request instance. (Pull #1607) Fixed Pass through timeout=... in top-level httpx.stream() function. (Pull #1613) Map httpcore transport close exceptions to httpx exceptions. (Pull #1606) Version 0.18.0 0.18.0 (27th April, 2021) The 0.18.x release series formalises our low-level Transport API, introducing the base classes httpx.BaseTransport and httpx.AsyncBaseTransport. See the "Writing custom transports" documentation and the httpx.BaseTransport.handle_request() docstring for more complete details on implementing custom transports. Pull request #1522 includes a checklist of differences from the previous httpcore transport API, for developers implementing custom transports. The following API changes have been issuing deprecation warnings since 0.17.0 onwards, and are now fully deprecated... You should now use httpx.codes consistently instead of httpx.StatusCodes. Use limits=... instead of pool_limits=.... Use proxies={"http://": ...} instead of proxies={"http": ...} for scheme-specific mounting. Changed Transport instances now inherit from httpx.BaseTransport or httpx.AsyncBaseTransport, and should implement either the handle_request method or handle_async_request method. (Pull #1522, #1550) The response.ext property and Response(ext=...) argument are now named extensions. (Pull #1522) The recommendation to not use data= in favour of content= has now been escalated to a deprecation warning. (Pull #1573) Drop Response(on_close=...) from API, since it was a bit of leaking implementation detail. (Pull #1572) When using a client instance, cookies should always be set on the client, rather than on a per-request basis. We prefer enforcing a stricter API here because it provides clearer expectations around cookie persistence, particularly when redirects occur. (Pull #1574) The runtime exception httpx.ResponseClosed is now named httpx.StreamClosed. (#1584) The httpx.QueryParams model now presents an immutable interface. The is a discussion on the design and motivation here. Use client.params = client.params.merge(...) instead of client.params.update(...). The basic query manipulation methods are query.set(...), query.add(...), and query.remove(). (#1600) Added The Request and Response classes can now be serialized using pickle. (#1579) Handle data={"key": [None|int|float|bool]} cases. (Pull #1539) Support httpx.URL(**kwargs), for example httpx.URL(scheme="https", host="www.example.com", path="/'), or httpx.URL("https://www.example.com/", username="tom@gmail.com", password="123 456"). (Pull #1601) Support url.copy_with(params=...). (Pull #1601) Add url.params parameter, returning an immutable QueryParams instance. (Pull #1601) Support query manipulation methods on the URL class. These are url.copy_set_param(), url.copy_add_param(), url.copy_remove_param(), url.copy_merge_params(). (Pull #1601) The httpx.URL class now performs port normalization, so :80 ports are stripped from http URLs and :443 ports are stripped from https URLs. (Pull #1603) The URL.host property returns unicode strings for internationalized domain names. The URL.raw_host property returns byte strings with IDNA escaping applied. (Pull #1590) ... (truncated) Changelog Sourced from httpx's changelog. 0.18.1 (29th April, 2021) Changed Update brotli support to use the brotlicffi package (Pull #1605) Ensure that Request(..., stream=...) does not auto-generate any headers on the request instance. (Pull #1607) Fixed Pass through timeout=... in top-level httpx.stream() function. (Pull #1613) Map httpcore transport close exceptions to httpx exceptions. (Pull #1606) 0.18.0 (27th April, 2021) The 0.18.x release series formalises our low-level Transport API, introducing the base classes httpx.BaseTransport and httpx.AsyncBaseTransport. See the "Writing custom transports" documentation and the httpx.BaseTransport.handle_request() docstring for more complete details on implementing custom transports. Pull request #1522 includes a checklist of differences from the previous httpcore transport API, for developers implementing custom transports. The following API changes have been issuing deprecation warnings since 0.17.0 onwards, and are now fully deprecated... You should now use httpx.codes consistently instead of httpx.StatusCodes. Use limits=... instead of pool_limits=.... Use proxies={"http://": ...} instead of proxies={"http": ...} for scheme-specific mounting. Changed Transport instances now inherit from httpx.BaseTransport or httpx.AsyncBaseTransport, and should implement either the handle_request method or handle_async_request method. (Pull #1522, #1550) The response.ext property and Response(ext=...) argument are now named extensions. (Pull #1522) The recommendation to not use data= in favour of content= has now been escalated to a deprecation warning. (Pull #1573) Drop Response(on_close=...) from API, since it was a bit of leaking implementation detail. (Pull #1572) When using a client instance, cookies should always be set on the client, rather than on a per-request basis. We prefer enforcing a stricter API here because it provides clearer expectations around cookie persistence, particularly when redirects occur. (Pull #1574) The runtime exception httpx.ResponseClosed is now named httpx.StreamClosed. (#1584) The httpx.QueryParams model now presents an immutable interface. There is a discussion on the design and motivation here. Use client.params = client.params.merge(...) instead of client.params.update(...). The basic query manipulation methods are query.set(...), query.add(...), and query.remove(). (#1600) Added The Request and Response classes can now be serialized using pickle. (#1579) Handle data={"key": [None|int|float|bool]} cases. (Pull #1539) Support httpx.URL(**kwargs), for example httpx.URL(scheme="https", host="www.example.com", path="/'), or httpx.URL("https://www.example.com/", username="tom@gmail.com", password="123 456"). (Pull #1601) Support url.copy_with(params=...). (Pull #1601) Add url.params parameter, returning an immutable QueryParams instance. (Pull #1601) Support query manipulation methods on the URL class. These are url.copy_set_param(), url.copy_add_param(), url.copy_remove_param(), url.copy_merge_params(). (Pull #1601) The httpx.URL class now performs port normalization, so :80 ports are stripped from http URLs and :443 ports are stripped from https URLs. (Pull #1603) The URL.host property returns unicode strings for internationalized domain names. The URL.raw_host property returns byte strings with IDNA escaping applied. (Pull #1590) Fixed ... (truncated) Commits 54f4194 Version 0.18.1 (#1617) 589c5a0 Map httpcore transport close exceptions to httpx exceptions. (#1606) 81f385c Add missing timeout=... to top-level httpx.stream() function. (#1613) 4fbf275 Stream tweak (#1607) 760af43 Update brotli support to use the brotlicffi package (#1605) 0c2cb24 Version 0.18.0 (#1576) 0a8b44e Perform port normalization for http, https, ws, wss, and ftp schemes (#1603) c927f3e Code comments for URL model (#1602) e67b0dd Expand URL interface (#1601) 2abb2f2 Immutable QueryParams (#1600) Additional commits viewable in compare view Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase. Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: @dependabot rebase will rebase this PR @dependabot recreate will recreate this PR, overwriting any edits that have been made to it @dependabot merge will merge this PR after your CI passes on it @dependabot squash and merge will squash and merge this PR after your CI passes on it @dependabot cancel merge will cancel a previously requested merge and block automerging @dependabot reopen will reopen this PR if it is closed @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Open Graph Description: Bumps httpx from 0.17.1 to 0.18.1. Release notes Sourced from httpx's releases. Version 0.18.1 0.18.1 (29th April, 2021) Changed Update brotli support to use the brotlicffi package (Pull #16...

X Description: Bumps httpx from 0.17.1 to 0.18.1. Release notes Sourced from httpx's releases. Version 0.18.1 0.18.1 (29th April, 2021) Changed Update brotli support to use the brotlicffi package (Pull...

Opengraph URL: https://github.com/P1sec/openapi-python-client/pull/4

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:3b2a38fb-17b9-2757-816c-ee7f23757bb9
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idD2AA:3E4E6:1AE93:2574E:698104D4
html-safe-noncec27806def9c3587957727b320c2f87823bdd0d802927eb91a1262d8d1acae595
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJEMkFBOjNFNEU2OjFBRTkzOjI1NzRFOjY5ODEwNEQ0IiwidmlzaXRvcl9pZCI6Ijc2NjQxNzM2MDAyMTEwMTA3NzIiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac8a5b028365bacc4785c2d0430996e5bfae4e2794e13e1489aefa476f060b6bbb
hovercard-subject-tagpull_request:627503747
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/P1sec/openapi-python-client/pull/4/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 httpx from 0.17.1 to 0.18.1. Release notes Sourced from httpx's releases. Version 0.18.1 0.18.1 (29th April, 2021) Changed Update brotli support to use the brotlicffi package (Pull #16...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None39fe8101494cbb823c09b619b68c80cd4d05ab7279997038dbe06bb91608abe1
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/P1sec/openapi-python-client git https://github.com/P1sec/openapi-python-client.git
octolytics-dimension-user_id856786
octolytics-dimension-user_loginP1sec
octolytics-dimension-repository_id343377673
octolytics-dimension-repository_nwoP1sec/openapi-python-client
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forktrue
octolytics-dimension-repository_parent_id240776275
octolytics-dimension-repository_parent_nwoopenapi-generators/openapi-python-client
octolytics-dimension-repository_network_root_id240776275
octolytics-dimension-repository_network_root_nwoopenapi-generators/openapi-python-client
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
released5b34a4e4898b066c629879feb4b184bc471d6a7
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/changes#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FP1sec%2Fopenapi-python-client%2Fpull%2F4%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%2FP1sec%2Fopenapi-python-client%2Fpull%2F4%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=P1sec%2Fopenapi-python-client
Reloadhttps://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/changes
Reloadhttps://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/changes
Reloadhttps://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/changes
P1sec https://patch-diff.githubusercontent.com/P1sec
openapi-python-clienthttps://patch-diff.githubusercontent.com/P1sec/openapi-python-client
openapi-generators/openapi-python-clienthttps://patch-diff.githubusercontent.com/openapi-generators/openapi-python-client
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2FP1sec%2Fopenapi-python-client
Fork 0 https://patch-diff.githubusercontent.com/login?return_to=%2FP1sec%2Fopenapi-python-client
Star 1 https://patch-diff.githubusercontent.com/login?return_to=%2FP1sec%2Fopenapi-python-client
Code https://patch-diff.githubusercontent.com/P1sec/openapi-python-client
Pull requests 11 https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pulls
Actions https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/actions
Projects 0 https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/projects
Security 0 https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/security
Insights https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pulse
Code https://patch-diff.githubusercontent.com/P1sec/openapi-python-client
Pull requests https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pulls
Actions https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/actions
Projects https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/projects
Security https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/security
Insights https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pulse
Sign up for GitHub https://patch-diff.githubusercontent.com/signup?return_to=%2FP1sec%2Fopenapi-python-client%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=%2FP1sec%2Fopenapi-python-client%2Fissues%2Fnew%2Fchoose
dependabothttps://patch-diff.githubusercontent.com/apps/dependabot
mainhttps://patch-diff.githubusercontent.com/P1sec/openapi-python-client/tree/main
dependabot/pip/httpx-0.18.1https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/tree/dependabot/pip/httpx-0.18.1
Conversation 0 https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4
Commits 1 https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/commits
Checks 0 https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/checks
Files changed https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/files
Please reload this pagehttps://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/changes
chore(deps): Bump httpx from 0.17.1 to 0.18.1 https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/changes#top
Show all changes 1 commit https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/files
a746d44 chore(deps): Bump httpx from 0.17.1 to 0.18.1 dependabot[bot] Apr 30, 2021 https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/commits/a746d441c1d1e8a2510c6a4ca4bcb93bb6019ec5
Clear filters https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/files
Please reload this pagehttps://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/changes
Please reload this pagehttps://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/changes
poetry.lock https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/changes#diff-f53a023eedfa3fbf2925ec7dc76eecdc954ea94b7e47065393dbad519613dc89
pyproject.toml https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/changes#diff-50c86b7ed8ac2cf95bd48334961bf0530cdc77b5a56f852c5c61b89d735fd711
poetry.lockhttps://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/changes#diff-f53a023eedfa3fbf2925ec7dc76eecdc954ea94b7e47065393dbad519613dc89
View file https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/blob/a746d441c1d1e8a2510c6a4ca4bcb93bb6019ec5/poetry.lock
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/changes
pyproject.tomlhttps://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/changes#diff-50c86b7ed8ac2cf95bd48334961bf0530cdc77b5a56f852c5c61b89d735fd711
View file https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/blob/a746d441c1d1e8a2510c6a4ca4bcb93bb6019ec5/pyproject.toml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/changes#diff-50c86b7ed8ac2cf95bd48334961bf0530cdc77b5a56f852c5c61b89d735fd711
https://patch-diff.githubusercontent.com/P1sec/openapi-python-client/pull/4/changes#diff-50c86b7ed8ac2cf95bd48334961bf0530cdc77b5a56f852c5c61b89d735fd711
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.