You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cookie Management Fixes – AsyncSession.add_cookies() now lazily bootstraps the Go backend, infers domains for dict inputs, and respects cookie-jar flags so preflight cookie injection finally works without making a real request first. (2f81808)
TLS Flexibility – New insecure_skip_verify argument on AsyncSession exposes the underlying client option so you can opt out of certificate verification when needed (e.g., for MITM proxies or self-signed cert testing). (6b4d89e)
Upgrade Notes
Existing code continues to work unchanged; new insecure_skip_verify is optional.
If you previously worked around cookie issues by forcing a dummy request, you can remove that workaround.