Skip to content

Bump curl-cffi from 0.7.4 to 0.11.2 #528

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 6, 2025

Bumps curl-cffi from 0.7.4 to 0.11.2.

Release notes

Sourced from curl-cffi's releases.

v0.11.2

Minor breaking change

The response.cookies object now contains only cookies from current request. If you are using the following patterns and hit a redirect, you will need a session.

import curl_cffi
r = curl_cffi.get("https://httpbin.org/redirect")
❌ Cookie from previous redirect may be lost.
do_something(r.cookies)
s = curl_cffi.Session()
r = s.get("https://httpbin.org/redirect")
✅ Use a session instead, to retrive all cookies in the session
do_something(s.cookies)

What's Changed

Full Changelog: lexiforest/curl_cffi@v0.11.1...v0.11.2

v0.11.1

No release notes provided.

v0.11.0

Added support for HTTP/3, except for Windows.

>>> import curl_cffi
>>> from curl_cffi import CurlHttpVersion
>>> r = curl_cffi.get("https://cloudflare-quic.com", http_version=CurlHttpVersion.V3ONLY)
>>> r.status_code
200
>>> r.http_version == CurlHttpVersion.V3
True

Also added new targets: tor145, safari184, safari184_ios, chrome136.

What's Changed

... (truncated)

Changelog

Sourced from curl-cffi's changelog.

Change Log

Please see the GitHub Releases <https://github.com/lexiforest/curl_cffi/releases>_ page for details.

v0.11

  • v0.11
    • Added support for http3
    • Added tor145, new safari and chrome targets

v0.10

  • v0.10.0
    • Added support for using curl_cffi directly

v0.9

  • v0.9.0
    • Brought back Windows support
    • Added support for Firefox
    • Added support for Chrome 133a

v0.8

  • v0.8.0
    • Added more recent impersonate versions, Safari 18.0 for iOS and macOS, Chrome 131.
    • Added quote parameter for setting which letter should be quoted in URL.
    • Added response_class parameter for using a customized Response class.

v0.7

  • v0.7.3

    • Bugfixes.
  • v0.7.2

    • Added requests-like exception hierarchy.
  • v0.7.1

    • Added Cookies.get_dict(), for compatibility with requests.
    • Fixed type conversion in C shim, by @​qishipai.
    • Fixed cookie subdomains attribute.
  • v0.7.0

    • Added more recent impersonate versions, up to Chrome 124.

... (truncated)

Commits
  • 9dc749a Bump version
  • 1cef1aa Add discard_cookies option to disable cookie store (#489)
  • d70eecb Add toggle for firefox specific extensions (#576)
  • d6cda20 Fallback to latin-1 for redirected url in Location header (#575)
  • c12405b Only include cookies in current request in response.cookies (#572)
  • b5fbcda Fix cffi alloc for ws in python
  • 29090e8 Fix curl_ws_* types in cffi interface
  • efc2307 Enable CI building on latest linux and macOS runners
  • 1aeda9a Allow using string for setting http version (#566)
  • 8b4ee6d Add missing windows build on CI
  • Additional commits viewable in compare view

Dependabot compatibility score

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

Bumps [curl-cffi](https://github.com/lexiforest/curl_cffi) from 0.7.4 to 0.11.2.
- [Release notes](https://github.com/lexiforest/curl_cffi/releases)
- [Changelog](https://github.com/lexiforest/curl_cffi/blob/main/docs/changelog.rst)
- [Commits](lexiforest/curl_cffi@v0.7.4...v0.11.2)

---
updated-dependencies:
- dependency-name: curl-cffi
  dependency-version: 0.11.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Jun 6, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 9, 2025

Superseded by #529.

@dependabot dependabot bot closed this Jun 9, 2025
@dependabot dependabot bot deleted the dependabot/pip/curl-cffi-0.11.2 branch June 9, 2025 10:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants