-
Notifications
You must be signed in to change notification settings - Fork 74
chore(deps): lock file maintenance #450
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?
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
d75b7bd to
ee7ee82
Compare
ee7ee82 to
52acbc0
Compare
52acbc0 to
b82c990
Compare
b82c990 to
c4676e0
Compare
c4676e0 to
f983472
Compare
f983472 to
530fe10
Compare
530fe10 to
367533e
Compare
commit: |
367533e to
7c390be
Compare
7c390be to
fc4b67c
Compare
30fbf8b to
0f47560
Compare
0f47560 to
c2c6dd3
Compare
c2c6dd3 to
8d6f04b
Compare
8d6f04b to
ae08de2
Compare
ae08de2 to
b8317d2
Compare
b8317d2 to
5533273
Compare
5533273 to
84056c8
Compare
84056c8 to
9eff4eb
Compare
9eff4eb to
02f8116
Compare
| '@nuxt/devtools-ui-kit@2.7.0': | ||
| resolution: {integrity: sha512-sKe1pLsEfTydefK/Ijr54lId32zOzOKffVbDbtEcwXDs96rHI55Vdo+I6PDqKNflvEcQgXdKArX3bGUHssFQvg==} | ||
| peerDependencies: | ||
| '@nuxt/devtools': 2.7.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.
Peer dependency version mismatch: @nuxt/devtools-ui-kit@2.7.0 declares @nuxt/devtools: 2.7.0 as a peer dependency, but @nuxt/devtools@3.1.1 is installed instead.
View Details
📝 Patch Details
diff --git a/client/package.json b/client/package.json
index c0a67e6..2f1913f 100644
--- a/client/package.json
+++ b/client/package.json
@@ -13,7 +13,7 @@
"devDependencies": {
"@iconify-json/carbon": "^1.2.14",
"@nuxt/devtools-kit": "^2.6.5",
- "@nuxt/devtools-ui-kit": "^2.6.5",
+ "@nuxt/devtools-ui-kit": "^3.1.1",
"@nuxt/kit": "^4.1.3",
"nuxt": "^4.1.3",
"vue": "^3.5.22",
diff --git a/package.json b/package.json
index 39eb7f1..095606a 100644
--- a/package.json
+++ b/package.json
@@ -120,7 +120,7 @@
},
"devDependencies": {
"@nuxt/devtools-kit": "^2.6.5",
- "@nuxt/devtools-ui-kit": "^2.6.5",
+ "@nuxt/devtools-ui-kit": "^3.1.1",
"@nuxt/eslint-config": "^1.9.0",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/scripts": "workspace:*",
Analysis
Peer dependency version mismatch: @nuxt/devtools-ui-kit@2.7.0 vs @nuxt/devtools@3.1.1
What fails: Package.json declares @nuxt/devtools-ui-kit: ^2.6.5 which resolves to v2.7.0, but that version has a peer dependency requirement of @nuxt/devtools: 2.7.0 exactly. However, the lock file installs @nuxt/devtools@3.1.1 instead, creating a major version mismatch that violates the peer dependency constraint.
How to reproduce:
# The issue is visible in pnpm-lock.yaml at line 863-872:
# @nuxt/devtools-ui-kit@2.7.0 declares:
# peerDependencies:
# '@nuxt/devtools': 2.7.0
# But @nuxt/devtools@3.1.1 is the installed version (no 2.7.0 exists in lock)
grep -A 3 "@nuxt/devtools-ui-kit@2.7.0" pnpm-lock.yaml
grep "@nuxt/devtools@3.1.1" pnpm-lock.yamlResult: pnpm installs with warnings about unmet peer dependencies. While the project has strict-peer-dependencies=false which allows installation to succeed, the version mismatch indicates an incomplete dependency update when @nuxt/devtools was bumped to v3.x.
Expected: @nuxt/devtools-ui-kit should be upgraded to v3.1.1 which declares @nuxt/devtools: 3.1.1 as its peer dependency, matching the installed version of @nuxt/devtools@3.1.1.
Fix applied: Updated @nuxt/devtools-ui-kit from ^2.6.5 to ^3.1.1 in both root package.json and client/package.json per npm registry documentation which shows v3.1.1 requires @nuxt/devtools@3.1.1.
This PR contains the following updates:
🔧 This Pull Request updates lock files to use the latest dependency versions.
Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.