chore: upgrade fflate to 0.4.9 to address CVE-2026-45820 - #1629
Open
claude[bot] wants to merge 2 commits into
Open
chore: upgrade fflate to 0.4.9 to address CVE-2026-45820#1629claude[bot] wants to merge 2 commits into
claude[bot] wants to merge 2 commits into
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>
Contributor
|
@claude[bot] your pull request is missing a changelog! |
Contributor
License Audit❌ Audit failed to produce results. Check the workflow logs for details. |
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 dependency patch for a known ZIP parsing DoS/hang; no application code changes.
Overview
Bumps the locked transitive
fflatedependency from 0.4.8 to 0.4.9 (viaposthog-js) to address CVE-2026-45820, whereunzipSync()could hang on malformed ZIP64 archives. There is nopackage.jsonchange—onlyyarn.lockand an Unreleased changelog entry under Fixed.Reviewed by Cursor Bugbot for commit 8d4d946. 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.9inyarn.lockto 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 this is a lockfile-only change with nopackage.jsonupdates.yarn why fflatereports a single0.4.9instance, and the test suite passes.Written for commit ed93329. Summary will update on new commits.