SCAL-320065: remediate Dependabot security alerts in dev dependencies#558
Merged
Conversation
Contributor
There was a problem hiding this comment.
Code Review
This pull request updates the .gitignore file to exclude non-npm lockfiles (pnpm-lock.yaml and yarn.lock), ensuring the project standardizes on npm. It also upgrades the yaml dependency to ^2.9.0 and the vite devDependency to ^6.4.3 in package.json. There are no review comments to address, and I have no further feedback to provide.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
commit: |
0af33af to
ff64e35
Compare
Dependency security bumps (runtime, customer-facing): - bump ts-deepmerge to ^8.0.0 (CVE-2026-12644). v8 switched to a named export, so update the import in utils.ts; merge() signature unchanged - bump yaml to ^2.9.0 (GHSA-48c2-rrv3-qjmp) - add a test covering the runtime YAML.parse path in AnswerService.getTML to guard against yaml-version regressions Dev-tooling security bumps: - bump vite to ^6.4.3 (dev-server file-read / fs.deny / launch-editor) Remove dead Gatsby docs tooling. The docs site lives in the separate developer-docs repo (its own Gatsby), which consumes only the SDK's generated static/typedoc/typedoc.json. The SDK's Gatsby remnants were unused legacy and the sole source of several transitive alerts: - drop babel-preset-gatsby devDep (clears transitive yaml@1.x and tmp) - drop orphaned command-line-args (only fed the deleted script) - delete scripts/gatsby-commands.js and jest-puppeteer.config.js (referenced by nothing; gatsby/puppeteer not installed) - remove broken build-and-publish script (called non-existent build:gatsby / publish scripts) Lockfile hygiene: - remove unused pnpm-lock.yaml; CI builds with npm only - gitignore pnpm-lock.yaml / yarn.lock to keep npm the single lockfile All in-range, non-breaking bumps; jest toolchain untouched. Verified: 1133 tests passing, rollup build green, and docgen still emits static/typedoc/typedoc.json (the developer-docs contract).
ff64e35 to
0ec4d1a
Compare
sastaachar
approved these changes
Jun 24, 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.
All in-range, non-breaking bumps; jest toolchain left untouched. Verified: 1132 tests passing and rollup build green.