Skip to content

chore(deps): bump adm-zip from 0.5.17 to 0.6.1 in /apps/desktop/app - #13636

Open
dependabot[bot] wants to merge 1 commit into
xfrom
dependabot/npm_and_yarn/apps/desktop/app/adm-zip-0.6.1
Open

dependabot[bot] wants to merge 1 commit into
xfrom
dependabot/npm_and_yarn/apps/desktop/app/adm-zip-0.6.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 20, 2026

Copy link
Copy Markdown
Contributor

Bumps adm-zip from 0.5.17 to 0.6.1.

Release notes

Sourced from adm-zip's releases.

v0.6.1

Full Changelog: cthackers/adm-zip@v0.6.0...v0.6.1

  • Updated dev dependencies
  • Fixed uncaught crash in async decompression on malformed DEFLATE data
  • Fixed addLocalFolder following symlinks out of the archived folder
  • Stripped setuid/setgid/sticky bits from extracted file permissions
  • Enforced the decompression size cap on the async path and for size 0
  • Rejected archives with duplicate entry names
  • Blocked extraction from writing through symlinks inside the target
  • Routed malformed-header parse errors through the async callback
  • Rejected zip entries whose declared data extent runs past the buffer
  • Fixed addLocalFolderPromise hanging on empty folders and swallowing errors
  • Fixed addLocalFolderAsync2 mangling local paths on Windows

v0.6.0

Full Changelog: cthackers/adm-zip@v0.5.18...v0.6.0

This release fixes a security vulnerability (CVE-2026-39244), resolves several long-standing bugs, ships built-in TypeScript types, and includes two behavior changes worth reading before you upgrade.

  • extractEntryTo(dirEntry, target, maintainEntryPath = false) now preserves subdirectories instead of flattening files into the target folder by basename (which also silently overwrote same-named files). (#306)
  • Extraction no longer fails when the modification time can't be set — utimes is now best-effort. (#379)
  • Minimum Node.js is now 14 (the code already required it; engines was incorrectly >=12).
  • CVE-2026-39244 — a crafted archive declaring a huge uncompressed size could force an unbounded Buffer.alloc and OOM the process; allocation is now bounded by the data actually present. Reported by Daniel Púa (devploit), Anh Hong, and José Antonio Zamudio Amaya. (#568)
  • Hardened entry-name lookup against object injection (proto names). Prototype-less table.
  • Data-descriptor regression rejecting valid archives (#548, #533, #554)
  • Directory permissions not restored on extract (#530)
  • Infinite recursion on symlink loops in addLocalFolder (#541)
  • Uncaught process crash in writeFileToAsync on write failure (#470, #459, #402)
  • Empty name on directory entries (#466)
  • test() always returned false for archives with files
  • ~6× faster entry sorting for large archives
  • Built-in TypeScript definitions (types.d.ts) — you can drop @​types/adm-zip

v0.5.18

What's Changed

New Contributors

Full Changelog: cthackers/adm-zip@v0.5.17...v0.5.18

Changelog

Sourced from adm-zip's changelog.

0.6.0 / 2026-07-10

Security

  • Fixed CVE-2026-39244: a crafted archive declaring a huge uncompressed size could force an unbounded Buffer.alloc (memory exhaustion / DoS) before any validation. Allocation is now bounded by the data actually present — STORED output is sized from the real bytes, DEFLATED output is grown by the inflater and capped at the declared size (#568)
  • Hardened the internal entry-name lookup table against object injection: entry names come from untrusted archives, and a name such as __proto__ previously resolved to Object.prototype, crashing addFile and hiding the entry from getEntry/readFile. The table is now prototype-less

Bug fixes

  • Fixed a regression (0.5.15) that rejected valid archives using a data descriptor (general-purpose bit 3). The payload is now validated against the authoritative central-directory CRC instead of requiring/parsing the trailing descriptor (#548, #533, #554)
  • Fixed extractAllTo/extractAllToAsync not restoring directory permissions with keepOriginalPermission; directory modes are applied after their contents are written, deepest path first, and no longer lock the extractor out of a restrictive directory (#530)
  • Fixed infinite recursion in addLocalFolder when a folder contains a symlink pointing back to an ancestor (e.g. workspace node_modules); the walk now tracks resolved real paths and skips already-visited directories (#541)
  • Fixed an uncaught exception (ERR_INVALID_ARG_TYPE) that crashed the process when writeFileToAsync could not open the target file (bad permissions, invalid filename, exhausted file descriptors); write failures are now reported through the callback and write errors are no longer silently swallowed (#470, #459, #402)
  • Fixed directory entries reporting an empty name (e.g. a/b/c/ now returns c) (#466)
  • Fixed extractEntryTo flattening subdirectories when maintainEntryPath is false; the structure below the extracted directory is now preserved instead of collapsing (and overwriting) files by basename (#306)
  • Fixed a failed utimes aborting extraction; setting the modification time is now best-effort and never fails extraction of already-written content (#379)
  • Fixed test() always returning false for any archive containing a file (it indexed the entries array with an entry object instead of reading the entry); it now correctly verifies each entry's CRC

Performance

  • Faster entry sorting when writing archives with many entries: names are decoded once instead of on every comparison (about 6× faster sort for large archives)

Added

  • Bundled TypeScript type definitions (types.d.ts), so @types/adm-zip is no longer required

Notes

  • Behavior change: extractEntryTo(dir, target, /* maintainEntryPath */ false) now preserves subdirectories beneath the extracted directory rather than flattening them
  • Behavior change: extraction no longer fails when the modification time cannot be set

0.5.4 / 2021-03-08

  • Fixed relative paths
  • Added zipcrypto encryption
  • Lower verMade for macOS when generating zip file

0.5.3 / 2021-02-07

  • Fixed filemode when unzipping

0.5.2 / 2021-01-27

  • Fixed path traversal issue (GHSL-2020-198)

0.5.1 / 2020-11-27

  • Incremented version (cthackers)
  • Fixed outFileName (cthackers)

0.5.0 / 2020-11-19

  • Added extra parameter to extractEntryTo so target filename can be renamed (cthackers)

... (truncated)

Commits
  • cb2cf9b Fixed addLocalFolderAsync2 mangling local paths on Windows
  • 54902b6 Fixed addLocalFolderPromise hanging on empty folders and swallowing errors
  • 73131bd Fixed CI
  • 758898d Rejected zip entries whose declared data extent runs past the buffer
  • 74b6e9f Routed malformed-header parse errors through the async callback
  • eaa35fa Blocked extraction from writing through symlinks inside the target
  • 1e015e3 Increment version
  • 05101d4 Rejected archives with duplicate entry names
  • 4916006 Enforced the decompression size cap on the async path and for size 0
  • 6a63c33 Stripped setuid/setgid/sticky bits from extracted file permissions
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 20, 2026
@dependabot
dependabot Bot requested a review from ezailWang as a code owner September 20, 2026 09:23
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Sep 20, 2026
@dependabot dependabot Bot added the javascript Pull requests that update Javascript code label Sep 20, 2026
@socket-security

socket-security Bot commented Sep 20, 2026

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Addednpm/​adm-zip@​0.6.11001009887100

View full report

@dependabot
dependabot Bot changed the base branch from claude/market-details-tabbar-issue-b5d418 to x September 20, 2026 10:13
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/apps/desktop/app/adm-zip-0.6.1 branch from 2e290b5 to db0e09c Compare September 20, 2026 10:13
@dependabot
dependabot Bot changed the base branch from x to claude/market-details-tabbar-issue-b5d418 September 20, 2026 23:29
@dependabot
dependabot Bot changed the base branch from claude/market-details-tabbar-issue-b5d418 to x September 21, 2026 01:14
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/apps/desktop/app/adm-zip-0.6.1 branch from db0e09c to 4a96142 Compare September 21, 2026 01:14
@dependabot
dependabot Bot changed the base branch from x to fix/ok-63686-ios-pro2-stale-bond-app September 21, 2026 06:08
@dependabot
dependabot Bot changed the base branch from fix/ok-63686-ios-pro2-stale-bond-app to x September 21, 2026 06:14
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/apps/desktop/app/adm-zip-0.6.1 branch from 4a96142 to bd0fdb9 Compare September 21, 2026 06:14
@dependabot
dependabot Bot changed the base branch from x to fix/ios-ble-stale-bond-peer-disconnect September 21, 2026 08:38
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/apps/desktop/app/adm-zip-0.6.1 branch from bd0fdb9 to 3de9c9c Compare September 21, 2026 08:38
@dependabot
dependabot Bot changed the base branch from fix/ios-ble-stale-bond-peer-disconnect to x September 21, 2026 08:46
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/apps/desktop/app/adm-zip-0.6.1 branch from 3de9c9c to 8941cc4 Compare September 21, 2026 08:46
@dependabot
dependabot Bot changed the base branch from x to feat/onramper-headless-buy September 21, 2026 11:41
@dependabot dependabot Bot changed the title chore(deps): bump adm-zip from 0.5.17 to 0.6.1 in /apps/desktop/app build(deps): bump adm-zip from 0.5.17 to 0.6.1 in /apps/desktop/app Sep 21, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/apps/desktop/app/adm-zip-0.6.1 branch from 8941cc4 to a2cc0bc Compare September 21, 2026 11:41
@dependabot
dependabot Bot changed the base branch from feat/onramper-headless-buy to x September 21, 2026 12:26
@dependabot dependabot Bot changed the title build(deps): bump adm-zip from 0.5.17 to 0.6.1 in /apps/desktop/app chore(deps): bump adm-zip from 0.5.17 to 0.6.1 in /apps/desktop/app Sep 21, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/apps/desktop/app/adm-zip-0.6.1 branch from a2cc0bc to 98100e2 Compare September 21, 2026 12:26
@dependabot
dependabot Bot changed the base branch from x to codex/fix-ios-native-list-dispose September 21, 2026 14:50
Base automatically changed from codex/fix-ios-native-list-dispose to x September 22, 2026 09:02
Bumps [adm-zip](https://github.com/cthackers/adm-zip) from 0.5.17 to 0.6.1.
- [Release notes](https://github.com/cthackers/adm-zip/releases)
- [Changelog](https://github.com/cthackers/adm-zip/blob/master/history.md)
- [Commits](cthackers/adm-zip@v0.5.17...v0.6.1)

---
updated-dependencies:
- dependency-name: adm-zip
  dependency-version: 0.6.1
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/apps/desktop/app/adm-zip-0.6.1 branch from 98100e2 to 4a0a82a Compare September 22, 2026 10:53

This branch has not been deployed

No deployments
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants