| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-08-18 | 1.9 kB | |
| v10.4.0 source code.tar.gz | 2026-08-18 | 205.1 kB | |
| v10.4.0 source code.zip | 2026-08-18 | 253.3 kB | |
| Totals: 3 Items | 460.3 kB | 3 | |
Fixed
-
Fixed TypeScript builds by explicitly including Node.js and Mocha type definitions
-
Fixed connection failures with undici 8.x (
InvalidArgumentError: invalid content-length header) on the defaultglobalThis.fetchpath (not only when usingconfig.agentOptions) by removing manualContent-Lengthheader handling by default and lettingfetchset it from the request body. (#855) -
Fixed connection failures never being retried.
isSystemErrorrejected the error objects thrown by undici because their immediate prototype is notError.prototype, so a refused connection producedisSafeToRetry: nulland the retry gate — which also governs host failover — was never entered (#867). -
Fixed
config.maxRetrieshaving no effect. It was destructured out of the config without being re-added to the connection's common request options, so the retry budget always fell back tohosts.length - 1, and setting it tofalsedid not disable retries (#867). -
Fixed a possible stack overflow while constructing a
FetchFailedErrorwhen the error'scausechain is cyclic (#867).
Added
- Added
config.forceContentLength(defaultfalse). Set totrueif you seeECONNRESETin Next.js 15 production builds when usingnext/headerscookies()(#831). Do not enable this when using undici 8.x unless required — it restores explicitContent-Lengthhandling that can conflict with strict undici header validation.
Deprecated
- Marked
Databasemethods removed in ArangoDB 4.0 as deprecated (DE-1170); see docs/arangodb-v4-removed-methods.md.