Fix: Update yarn.lock after keyv dependency upgrade from 5.3.1 to 5.3.3#35
Merged
warengonzaga merged 9 commits intodevfrom Jul 6, 2025
Merged
Conversation
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-10176064
…3335a0bb02e [Snyk] Security upgrade discord.js from 14.18.0 to 14.20.0
Snyk has created this PR to upgrade @keyv/redis from 4.3.2 to 4.4.0. See this package in yarn: @keyv/redis See this project in Snyk: https://app.snyk.io/org/wgtechlabs/project/4eab2a11-f9a2-4f5e-8cb2-e5b2870b7a5a?utm_source=github&utm_medium=referral&page=upgrade-pr
Snyk has created this PR to upgrade dotenv from 16.4.7 to 16.5.0. See this package in yarn: dotenv See this project in Snyk: https://app.snyk.io/org/wgtechlabs/project/4eab2a11-f9a2-4f5e-8cb2-e5b2870b7a5a?utm_source=github&utm_medium=referral&page=upgrade-pr
…2dca438601789a6 [Snyk] Upgrade dotenv from 16.4.7 to 16.5.0
…2bbfc103674395d [Snyk] Upgrade @keyv/redis from 4.3.2 to 4.4.0
Co-authored-by: warengonzaga <15052701+warengonzaga@users.noreply.github.com>
Co-authored-by: warengonzaga <15052701+warengonzaga@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update lockfile after upgrading keyv to 5.3.3
Fix: Update yarn.lock after keyv dependency upgrade from 5.3.1 to 5.3.3
Jul 5, 2025
warengonzaga
approved these changes
Jul 6, 2025
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.
This PR addresses the Copilot review feedback on PR #31 that requested running the package manager after updating dependency versions to ensure consistent dependency resolution.
Problem
The Snyk security update in PR #31 updated the
keyvdependency inpackage.jsonfrom^5.3.1to^5.3.3, but the lockfile (yarn.lock) was not properly updated by running the package manager. This could lead to inconsistent dependency resolution.Solution
^5.3.1to^5.3.3yarn.lockto properly resolve the new dependency versionChanges
package.json: Updated keyv version requirementyarn.lock: Added proper entry for keyv@^5.3.3 → 5.3.4Dependency Resolution
After the update:
keyv@5.3.4(from^5.3.3)keyv@5.3.2(from^5.3.1)This maintains compatibility while ensuring the security update is properly applied.
Verification
yarn why keyvshows correct resolution)Fixes the dependency resolution issue identified in PR #31 review.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.