Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 14, 2025

This PR contains the following updates:

Package Change Age Confidence
curl-cffi ==0.10.0 -> ==0.13.0 age confidence

Release Notes

lexiforest/curl_cffi (curl-cffi)

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: 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 from 0de72f9 to d084fca Compare August 19, 2025 16:44
@renovate renovate bot force-pushed the renovate/curl-cffi-0.x branch from d084fca to 72deeea Compare August 24, 2025 13:36
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.

1 participant