fix(deps): address Dependabot vulnerability alerts for serialize-javascript and hono#948
Merged
jeanduplessis merged 1 commit intomainfrom Mar 10, 2026
Merged
Conversation
…script and hono - Add pnpm override for serialize-javascript >=7.0.3 (GHSA-5c6j-r48x-rmvq, high severity RCE) - Upgrade hono from 4.11.6 to 4.12.2 in kiloclaw/controller (GHSA-6wqw-2p9w-4vw4, GHSA-w332-q679-j88p, GHSA-9r54-q6cx-xmh5, GHSA-gq3j-xvxp-8hrf)
Contributor
Author
Code Review SummaryStatus: No Issues Found | Recommendation: Merge Files Reviewed (4 files)
|
eshurakov
approved these changes
Mar 10, 2026
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.
Summary
Addresses all 5 open Dependabot vulnerability alerts by upgrading affected dependencies:
serialize-javascript>=7.0.3(resolved to 7.0.4)hono4.11.6→4.12.2hono4.11.6→4.12.2hono4.11.6→4.12.2hono4.11.6→4.12.2serialize-javascript (6.0.2 → 7.0.4): Transitive dependency of
terser-webpack-plugin(via webpack/storybook). Added a pnpm override since the parent package pins^6.0.2. Theserialize-javascript@7.0.3entry was already inminimumReleaseAgeExclude.hono (4.11.6 → 4.12.2): Direct dependency in
kiloclaw/controller/package.json, which was pinned at a vulnerable version instead of using the workspace catalog (^4.12.1). Updated to 4.12.2, matching the version already resolved elsewhere in the monorepo.Verification
pnpm install— lockfile updated,serialize-javascriptresolved to 7.0.4,honoresolved to 4.12.2pnpm typecheck— passes across all 29 workspace projectspnpm lint— passes across all workspace projectspnpm format:check— all files conform to Prettier stylepnpm test— all test suites fail due to missing Postgres database in this environment (pre-existing infrastructure issue, not caused by these changes)Visual Changes
N/A
Reviewer Notes
kiloclaw/controlleronly usesHonoandContexttypes — no breaking changes expected.serialize-javascriptv7 is a major bump from v6, but the API is backwards-compatible (the breaking change was dropping Node <18 support and fixing the security vulnerabilities). The pnpm override forces all consumers to use the patched version.