-
Notifications
You must be signed in to change notification settings - Fork 64
chore: Bump js-yaml from 3.14.1 to 4.1.1 #608
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
Conversation
|
@copilot Revert the file |
Done! I've:
This is a cleaner approach that uses js-yaml 4.x's native output format directly without post-processing. All 996 tests are passing. |
b940dc5 to
a10ec7a
Compare
Pull Request Test Coverage Report for Build 19499953363Details
💛 - Coveralls |
…to copilot/sub-pr-606
js-yaml 4.x removed
safeDump()(replaced withdump()which is now safe by default) and changed string quoting behavior, causing test failures.Changes
API migration: Replaced
yaml.safeDump()withyaml.dump()insrc/box-command.jsUpdated test fixtures: Modified YAML test fixtures to match js-yaml 4.x native output format:
'https://www.box.com'→https://www.box.com) - js-yaml 4.x no longer quotes URLs098765432109→'098765432109') - js-yaml 4.x quotes these per YAML 1.2 specReverted test file: Restored
test/fixtures/bulk/saveTest.txtto its original stateThis approach uses js-yaml 4.x's native output format directly without post-processing for a cleaner, more maintainable solution. All 996 tests are passing.
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.