-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps-dev): bump js-yaml from 4.1.0 to 4.3.1 #52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,7 +10,7 @@ | |
| }, | ||
| "devDependencies": { | ||
| "@redocly/cli": "2.40.0", | ||
| "js-yaml": "4.1.0", | ||
| "js-yaml": "4.3.1", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔍 Behavior changes in 4.2.0 could affect spec parsing The lockfile shows Was this helpful? React with 👍 or 👎 to provide feedback. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🟨 CI still pins the pre-patch YAML parser version The dependency was upgraded to 4.3.1 in Was this helpful? React with 👍 or 👎 to provide feedback. |
||
| "openapi-typescript": "7.13.0" | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🟡 Automated checks still install the old library version, so the upgrade has no effect in CI
The version bump was applied to the project's dependency list but not to the continuous-integration step, which still installs the old 4.1.0 build (
npm install ... js-yaml@4.1.0at.github/workflows/foundation-gate.yml:59), so the checks keep running against the outdated copy.Impact: The security and correctness fixes from the new version are never exercised in CI, and the version actually used there silently diverges from the one declared for the project.
Incomplete version bump: package.json vs foundation-gate workflow
package.json:13andpackage-lock.jsonwere updated tojs-yaml@4.3.1, but thespec-lintjob installs its own copy withnpm install --no-save --no-audit --no-fund js-yaml@4.1.0before running.github/scripts/assert-refs.mjs, which importsjs-yaml(.github/scripts/assert-refs.mjs:36). The pinned CI version should be bumped in lockstep.Prompt for agents
Was this helpful? React with 👍 or 👎 to provide feedback.