chore: upgrade fflate to 0.4.9 to address CVE-2026-45820 - #1629
Merged
Conversation
Refreshes the yarn.lock entry for fflate (transitive via posthog-js) from 0.4.8 to 0.4.9, which fixes the unzipSync infinite loop on malformed ZIP64 archives. The existing ^0.4.8 range already admits the patched version, so no package.json change is needed. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This comment has been minimized.
This comment has been minimized.
Contributor
License Audit
Weak Copyleft Packages (informational)
Resolved Packages (8)
|
brendan-kellam
enabled auto-merge (squash)
September 9, 2026 18:28
brendan-kellam
disabled auto-merge
September 9, 2026 18:28
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes SOU-2141
Refreshes the
yarn.lockentry forfflatefrom0.4.8to0.4.9to address CVE-2026-45820 (GHSA reported via Dependabot alert 335):unzipSync()can enter an infinite loop when parsing a malformed ZIP64 archive whose central directory entry declarescompressed_size=0xFFFFFFFFwithout the required ZIP64 extra field.Details
fflateis a transitive dependency:posthog-js@1.369.0 → fflate@^0.4.8.^0.4.8range already admits the patched0.4.9, so this is a lockfile refresh only (yarn up -R fflate). Nopackage.jsonchange and noresolutionsoverride is needed.Verification
yarn why fflatenow reports a single instance,fflate@npm:0.4.9.yarn testpasses (2153 tests across queryLanguage, shared, backend, web).🤖 Generated with Claude Code
Note
Low Risk
Lockfile-only security patch for a transitive dependency; no application code or direct API surface changes.
Overview
Bumps the transitive
fflatedependency from 0.4.8 to 0.4.9 via ayarn.lockrefresh (nopackage.jsonchanges), addressing CVE-2026-45820 where malformed ZIP64 archives could causeunzipSync()to hang.Documents the upgrade under Unreleased → Fixed in
CHANGELOG.md.Reviewed by Cursor Bugbot for commit 010c068. Bugbot is set up for automated code reviews on this repo. Configure here.
Summary by cubic
Fixes SOU-2141 by upgrading
fflatefrom0.4.8to0.4.9to address CVE-2026-45820, whereunzipSync()could loop indefinitely on a malformed ZIP64 archive.fflateis a transitive dependency ofposthog-js, and the existing^0.4.8range already allows0.4.9, so nopackage.jsonchange is needed. Updatesyarn.lockand the changelog;yarn why fflatereports a single0.4.9instance and the test suite passes.Written for commit 010c068. Summary will update on new commits.