v1.15.0
This release delivers two critical security patches, adds runtime support for Deno and Bun, and includes significant CI hardening, documentation improvements, and routine dependency updates.
- Deprecation:
url.parse()usage has been replaced to address Node.js deprecation warnings. If you are on a recent version of Node.js, this resolves console warnings you may have been seeing. (#10625)
- Proxy Handling: Fixed a
no_proxyhostname normalisation bypass that could lead to Server-Side Request Forgery (SSRF). (#10661) - Header Injection: Fixed an unrestricted cloud metadata exfiltration vulnerability via a header injection chain. (#10660)
- Runtime Support: Added compatibility checks and documentation for Deno and Bun environments. (#10652, #10653)
- CI Security: Hardened workflow permissions to least privilege, added the
zizmorsecurity scanner, pinned action versions, and gated npm publishing with OIDC and environment protection. (#10618, #10619, #10627, #10637, #10666) - Dependencies: Bumped
serialize-javascript,handlebars,picomatch,vite, anddenoland/setup-denoto latest versions. Added a 7-day Dependabot cooldown period. (#10574, #10572, #10568, #10663, #10664, #10665, #10669, #10670, #10616) - Documentation: Unified docs, improved
beforeRedirectcredential leakage example, clarifiedwithCredentials/withXSRFTokenbehaviour, HTTP/2 support notes, async/await timeout error handling, header case preservation, and various typo fixes. (#10649, #10624, #7452, #7471, #10654, #10644, #10589) - Housekeeping: Removed stale files, regenerated lockfile, and updated sponsor scripts and blocks. (#10584, #10650, #10582, #10640, #10659, #10668)
- Tests: Added regression coverage for urlencoded
Content-Typecasing. (#10573)
We are thrilled to welcome our new contributors. Thank you for helping improve Axios:
- @raashish1601 (#10573)
- @Kilros0817 (#10625)
- @ashstrc (#10624)
- @Abhi3975 (#10589)
- @theamodhshetty (#7452)
v8.0.7
Please refer to CHANGELOG.md for details.
v2.19.1
This release includes several small refactors to improve performance.
- fix(vanilla/utils/atomWithObservable): use symbol index signature to avoid 'Symbol.observable' type reference by @sukvvon in https://github.com/pmndrs/jotai/pull/3274
- refactor(internals): replace nextDeps with prevDeps by @dmaskasky in https://github.com/pmndrs/jotai/pull/3278
- refactor(internals): reduce recomputeInvalidatedAtoms overhead (performance) by @dmaskasky in https://github.com/pmndrs/jotai/pull/3284
- refactor(internals): reduce flushPending overhead (performance) by @dmaskasky in https://github.com/pmndrs/jotai/pull/3285
- fix(internals): check if atom has dependencies before doing mountDependencies work (performance) by @dmaskasky in https://github.com/pmndrs/jotai/pull/3290
- fix(internals): check if atom has onMount property before queueing processOnMount callback (performance) by @dmaskasky in https://github.com/pmndrs/jotai/pull/3291
- refactor(types): prefer no-any by @dai-shi in https://github.com/pmndrs/jotai/pull/3304
- @aio39 made their first contribution in https://github.com/pmndrs/jotai/pull/3277
Full Changelog: https://github.com/pmndrs/jotai/compare/v2.19.0...v2.19.1
v8.0.6
Please refer to CHANGELOG.md for details.
v4.12.12
This release includes fixes for the following security issues:
Affects: Serve Static middleware. Fixes a path normalization inconsistency where repeated slashes (//) could bypass route-based middleware protections and allow access to protected static files. GHSA-wmmm-f939-6g9c
Affects: toSSG() for Static Site Generation. Fixes a path traversal issue where crafted ssgParams values could write files outside the configured output directory. GHSA-xf4j-xp2r-rqqx
Affects: IP Restriction Middleware. Fixes improper handling of IPv4-mapped IPv6 addresses (e.g. ::ffff:127.0.0.1) that could cause allow/deny rules to be bypassed. GHSA-xpcf-pg52-r92g
Affects: setCookie(), serialize(), and serializeSigned() from hono/cookie. Fixes missing validation of cookie names on the write path, preventing inconsistent handling between parsing and serialization. GHSA-26pp-8wgv-hjvm
Affects: getCookie() from hono/cookie. Fixes a discrepancy in cookie name handling that could allow attacker-controlled cookies to override legitimate ones and bypass prefix protections. GHSA-r5rp-j6wh-rvv4
Users who use Serve Static, Static Site Generation, Cookie utilities, or IP restriction middleware are strongly encouraged to upgrade to this version.
v16.2.1-canary.24
- chore: Upgrade to pnpm 10.x: #92283
- fix(server-hmr): metadata routes overwrite page runtime HMR handler: #92273
- Turbopack: Add a check for node version before allowing workerThreads: #91614
- turbo-persistence: optimize file syncing: #90542
- Bump turborepo from 2.8.11 to 2.9.4: #92425
- Turbopack: Remove
turbo_tasks::apply_effects, useEffects::applyinstead: #91858
Huge thanks to @bgw, @wbinnssmith, and @lukesandberg for helping!
electron v42.0.0-beta.1
Note: This is a beta release. Please file new issues for any bugs you find in it.
This release is published to npm under the beta tag and can be installed via npm install electron@beta, or npm install electron@42.0.0-beta.1.
- Added
allowExtensionsprivilege toprotocol.registerSchemesAsPrivileged()to enable Chrome extensions on custom protocols. #50530 (Also in 40, 41)
- BrowserWindow now enforces min/max size constraints on window creation, even if they conflict with the requested width and height. #50754 (Also in 41)
- Fixed a crash when calling
contentTracing.getTraceBufferUsage()while a trace session is active. #50592 (Also in 39, 40, 41) - Fixed an intermittent
Invoke in DisallowJavascriptExecutionScopecrash on application quit when aWebContents(or other JS-emitting native object) is garbage-collected during shutdown. #50695 (Also in 40, 41) - Fixed an issue on macOS where
show/hideevents andWebContentsvisibility state could be reported incorrectly when multipleWebContentsViews were attached to a window. #50712 (Also in 40, 41) - Fixed an issue where concurrent
getFileHandlerequests on the same path could stall indefinitely. #50671 (Also in 40, 41) - Fixed an issue where custom options in
webContents.print()did not prefill the print dialog on macOS. #50643 - Fixed an issue where margins did not look as expected when printing in silent mode. #50653 (Also in 41)
- Fixed an issue where the
webContents.print()callback may not fire correctly in some cases. #50603 (Also in 41) - Fixed certain DevTools extension panels not showing without a page reload. #50640
- Fixed native notification clicks not focusing the application window on Wayland. #50669
- Fixed the appearance of maximized windows on GNOME in Wayland, especially when non-default GTK themes like Breeze are set. #50644 (Also in 41)
- Removed "representedObject is not a WeakPtrToElectronMenuModelAsNSObject" logging when interacting with macOS menus. #50614 (Also in 41)