Skip to content

Update dependency curl-cffi to v0.15.0#576

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/curl-cffi-0.x
Open

Update dependency curl-cffi to v0.15.0#576
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/curl-cffi-0.x

Conversation

@renovate

@renovate renovate Bot commented May 14, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
curl-cffi ==0.10.0==0.15.0 age confidence

Release Notes

lexiforest/curl_cffi (curl-cffi)

v0.15.0

Compare Source

🎉 Another release with significant changes!

Highlights

  • http/3 fingerprints, added for Chrome 145, 146 and Firefox 147. To verify http3 fingerprints, visit https://fp.impersonate.pro
  • http/3 proxy support with socks5 udp proxy server.
  • New CLI tool, just called curl-cffi, easier http debugging for both humans and agents. See docs. We also added a skill.
  • Compatibility optimization, curl_cffi is now fully static. Especially for macOS, no dependencies needed and compatible with macOS since 11.0.
  • ⚠️ Security improvement. If you are accepting urls from others and returning the response to them, you are vulnerable to redirection-based SSRF. Disable allow_redirects or at lease set allow_redirects="safe", see the advisory and the docs.
  • Performance optimization: WebSocket improvement and free-threading support.
  • Android is officially supported, closing a 3-years-old issue.
  • New impersonation behaviors, the cookie header behavior and POST boundary are now made exactly the same as browsers. These are not part of tls or http binary fingerprints, but are exploited by WAFs, too.

The list of proxy vendors with udp sock5 support is very limited, so I set up 2 servers for testing. You can simply run:

curl-cffi get https://fp.impersonate.pro/api/http3 --proxy socks5://imp:curl-cffi@206.189.95.199:1080 --http3-only
curl-cffi get https://fp.impersonate.pro/api/http3 --proxy socks5://imp:curl-cffi@24.144.88.46:1080 --http3-only

If you need more udp socks5 servers from us, click the 👀 emoji to vote.

What's Changed

New Contributors

Full Changelog: lexiforest/curl_cffi@v0.14.0...v0.15.0

v0.14.0

Compare Source

This release contains a few changes that might break the code for some people, hopefully not too many:

  1. Async websocket is completed rewritten, great performance boost, but a few breaking API.
  2. macOS requirement is now 15.0+, the same as GitHub actions builder, due to bundled c-ares.
  3. Python requirement is now 3.10+, as we planned.

Personal notes:

I have been holding this version for a while, thinking that I should fix the unintentional macOS version upgrade and implement pro features within this release. But it turns out that 2025 has been a fruitful, but exhausting year for me. Significant number of PRs have been merged since last release, so let's make them available for all.

What's Changed

New Contributors

Full Changelog: lexiforest/curl_cffi@v0.13.0...v0.14.0

v0.13.0

Compare Source

bugfixes

Fixed asyncio timeout issue, if you are experiencing this, please update to 0.13.

What's Changed

New Contributors

Full Changelog: lexiforest/curl_cffi@v0.12.0...v0.13.0

v0.12.0

Compare Source

What's Changed

  • Fix WebSocket send fails on second message after sending large message by @​ferdimsu in #​570
  • Added Safari 26.0 targets.

New Contributors

Full Changelog: lexiforest/curl_cffi@v0.11.4...v0.12.0

v0.11.4

Compare Source

What's Changed

  • bugfix: move curl_options to the end of setopt by @​lexiforest in #​580
  • Added windows http/3 support.

Full Changelog: lexiforest/curl_cffi@v0.11.3...v0.11.4

v0.11.3

Compare Source

Fixed tor fingerprints.

v0.11.2

Compare Source

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

Compare Source

v0.11.0

Compare Source

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

New Contributors

Full Changelog: lexiforest/curl_cffi@v0.10.0...v0.11.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, 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.

@renovate renovate Bot force-pushed the renovate/curl-cffi-0.x branch from e2e1996 to 7f1e639 Compare May 14, 2025 20:22
@renovate renovate Bot changed the title Update dependency curl-cffi to v0.11.0 Update dependency curl-cffi to v0.11.1 May 14, 2025
@renovate renovate Bot force-pushed the renovate/curl-cffi-0.x branch from 7f1e639 to 500155c Compare June 5, 2025 10:57
@renovate renovate Bot changed the title Update dependency curl-cffi to v0.11.1 Update dependency curl-cffi to v0.11.2 Jun 5, 2025
@renovate renovate Bot changed the title Update dependency curl-cffi to v0.11.2 Update dependency curl-cffi to v0.11.3 Jun 9, 2025
@renovate renovate Bot force-pushed the renovate/curl-cffi-0.x branch from 500155c to fb2f79c Compare June 9, 2025 06:17
@renovate renovate Bot changed the title Update dependency curl-cffi to v0.11.3 Update dependency curl-cffi to v0.11.4 Jun 19, 2025
@renovate renovate Bot force-pushed the renovate/curl-cffi-0.x branch from fb2f79c to 25c2ead Compare June 19, 2025 11:51
@renovate renovate Bot force-pushed the renovate/curl-cffi-0.x branch from 25c2ead to 5c2a968 Compare July 11, 2025 06:40
@renovate renovate Bot changed the title Update dependency curl-cffi to v0.11.4 Update dependency curl-cffi to v0.12.0 Jul 11, 2025
@renovate renovate Bot force-pushed the renovate/curl-cffi-0.x branch from 5c2a968 to 0de72f9 Compare August 6, 2025 16:32
@renovate renovate Bot changed the title Update dependency curl-cffi to v0.12.0 Update dependency curl-cffi to v0.13.0 Aug 6, 2025
@renovate renovate Bot force-pushed the renovate/curl-cffi-0.x branch 2 times, most recently from d084fca to 72deeea Compare August 24, 2025 13:36
@renovate renovate Bot force-pushed the renovate/curl-cffi-0.x branch from 72deeea to 7bd1ebd Compare December 16, 2025 05:16
@renovate renovate Bot changed the title Update dependency curl-cffi to v0.13.0 Update dependency curl-cffi to v0.14.0 Dec 16, 2025
@renovate

renovate Bot commented Dec 16, 2025

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: uv.lock
Command failed: uv lock --upgrade-package curl-cffi
warning: The `tool.uv.dev-dependencies` field (used in `pyproject.toml`) is deprecated and will be removed in a future release; use `dependency-groups.dev` instead
Using CPython 3.14.6 interpreter at: /opt/containerbase/tools/python/3.14.6/bin/python3
  × No solution found when resolving dependencies for split (markers:
  │ python_full_version == '3.9.*'):
  ╰─▶ Because the requested Python version (>=3.9) does not satisfy
      Python>=3.10 and curl-cffi==0.15.0 depends on Python>=3.10, we can
      conclude that curl-cffi==0.15.0 cannot be used.
      And because your project depends on curl-cffi==0.15.0, we can conclude
      that your project's requirements are unsatisfiable.

hint: While the active Python version is 3.14, the resolution failed for other Python versions supported by your project. Consider limiting your project's supported Python versions using `requires-python`.
hint: The `requires-python` value (>=3.9) includes Python versions that are not supported by your dependencies (e.g., curl-cffi==0.15.0 only supports >=3.10). Consider using a more restrictive `requires-python` value (like >=3.10).

@renovate renovate Bot force-pushed the renovate/curl-cffi-0.x branch from 7bd1ebd to e53f43d Compare April 3, 2026 13:28
@renovate renovate Bot changed the title Update dependency curl-cffi to v0.14.0 Update dependency curl-cffi to v0.15.0 Apr 3, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants