mirror of
https://github.com/tenrok/axios.git
synced 2026-06-17 19:21:29 +03:00
931cc8f010
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: jasonsaayman <4814473+jasonsaayman@users.noreply.github.com> Co-authored-by: Jason Saayman <jasonsaayman@gmail.com>
2.2 KiB
2.2 KiB
Pre-Release Changelog
Unreleased
New Features
- HTTP Adapter - Zstandard: Added automatic zstd decompression on Node.js versions that support it.
zstdis only advertised in the defaultAccept-Encodingheader whentransitional.advertiseZstdAcceptEncoding: trueis set. (#6792)
Bug Fixes
- AxiosHeaders: Silently skip empty response header names emitted by some React Native Android responses instead of throwing. (#6959, #10875)
- Config Security: Ignore inherited
paramsandparamsSerializervalues when resolving request config, preventing prototype-pollution gadgets from changing serialized URLs. (#10922) - Fetch Adapter - Auth: Support HTTP Basic credentials embedded in request URLs, including UTF-8 credentials, while stripping credentials before constructing the fetch
Requestand preservingconfig.authprecedence. (#10896) - Types: Add the missing readonly
name: 'CanceledError'declaration to CommonJSCanceledErrortypings to match the ESM declarations. (#10922) - Types: Correct the CommonJS
isCanceltype guard to narrow cancellation errors toCanceledError<T>, matching the ESM declaration. (#10952) - HTTP Adapter - Auth on Redirect: HTTP Basic credentials supplied via
config.authare now restored on same-origin redirects, fixing a regression caused byfollow-redirects>= 1.15.8 that brokePOSTrequests answered with a 303 Location. Cross-origin redirects continue to drop credentials, preserving the existing T-R2 mitigation inTHREATMODEL.md. (#6929) - HTTP Adapter - Proxy TLS: Preserve
httpsAgentTLS options such ascaandrejectUnauthorizedfor HTTPS origins reached through a CONNECT proxy tunnel. (#10953) - HTTP Adapter - Socket Path: Ignore inherited
socketPathandallowedSocketPathsconfig values when building Node.js requests, preventing prototype-pollution SSRF via Unix sockets. (#10901) - React Native FormData: Clear the default
Content-Typeheader for React NativeFormDatarequests so Android can build multipart bodies with the correct boundary. (#10898) - Request Data: Preserve enumerable symbol keys when merging plain request data before
transformRequest. (#6392)