-
Notifications
You must be signed in to change notification settings - Fork 7
chore(deps): update all non-major dependencies #17
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
4a7c13b to
dbc3e5c
Compare
dbc3e5c to
95d11fc
Compare
95d11fc to
bfff13f
Compare
bfff13f to
956eb29
Compare
956eb29 to
5c2350f
Compare
| resolution: {integrity: sha512-vFglLeiTnNk8VaCEjctAMQXi8Vi+dc217JLkbiIkOLNLXzOClv1ZLv7QjKplRHG+eq/DKC17WSBKINsjXuYbtQ==} | ||
| peerDependencies: | ||
| '@unovis/ts': 1.6.1 | ||
| '@unovis/ts': 1.6.2 |
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.
The @unovis/vue@1.6.2 peer dependency on @unovis/ts is unsatisfied - it requires version 1.6.2 but the lock file only includes version 1.6.1.
View Details
📝 Patch Details
diff --git a/package.json b/package.json
index 22025fc..908c7db 100644
--- a/package.json
+++ b/package.json
@@ -15,6 +15,7 @@
"@ai-sdk/gateway": "^2.0.9",
"@iconify/vue": "^5.0.0",
"@nuxt/ui": "^4.1.0",
+ "@unovis/ts": "^1.6.2",
"@unovis/vue": "^1.6.2",
"ai": "^5.0.93",
"date-fns": "^4.1.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 22eb3bc..c798107 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -17,9 +17,12 @@ importers:
'@nuxt/ui':
specifier: ^4.1.0
version: 4.1.0(@babel/parser@7.28.5)(db0@0.3.4(drizzle-orm@0.44.7(@opentelemetry/api@1.9.0)(pg@8.16.3)))(embla-carousel@8.6.0)(typescript@5.9.3)(vite@7.2.2(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.1))(vue-router@4.6.3(vue@3.5.24(typescript@5.9.3)))(vue@3.5.24(typescript@5.9.3))(zod@4.1.12)
+ '@unovis/ts':
+ specifier: ^1.6.2
+ version: 1.6.2
'@unovis/vue':
specifier: ^1.6.2
- version: 1.6.2(@unovis/ts@1.6.1)(vue@3.5.24(typescript@5.9.3))
+ version: 1.6.2(@unovis/ts@1.6.2)(vue@3.5.24(typescript@5.9.3))
ai:
specifier: ^5.0.93
version: 5.0.93(zod@4.1.12)
@@ -1572,8 +1575,8 @@ packages:
'@unovis/graphlibrary@2.2.0-2':
resolution: {integrity: sha512-HeEzpd/vDyWiIJt0rnh+2ICXUIuF2N0+Z9OJJiKg0DB+eFUcD+bk+9QPhYHwkFwfxdjDA9fHi1DZ/O/bbV58Nw==}
- '@unovis/ts@1.6.1':
- resolution: {integrity: sha512-h6p9HFmgztlqy+6hn+eAXqjk598QCQ3OAWSYIb3Ii3ljVnzj6vrhunhUuktFRyS0sXC4SK57b/Yf3y+8hCukYg==}
+ '@unovis/ts@1.6.2':
+ resolution: {integrity: sha512-kSOWRiZsU4Kk1yuJSSaJs+zJCKNg3+2A0/6/7/y1Cu5uHggwGPeE3CzKaNOal/Hpc46bnZw2VLI23mY+gDFbeQ==}
'@unovis/vue@1.6.2':
resolution: {integrity: sha512-vFglLeiTnNk8VaCEjctAMQXi8Vi+dc217JLkbiIkOLNLXzOClv1ZLv7QjKplRHG+eq/DKC17WSBKINsjXuYbtQ==}
@@ -5696,7 +5699,7 @@ snapshots:
dependencies:
lodash-es: 4.17.21
- '@unovis/ts@1.6.1':
+ '@unovis/ts@1.6.2':
dependencies:
'@emotion/css': 11.13.5
'@juggle/resize-observer': 3.4.0
@@ -5733,9 +5736,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@unovis/vue@1.6.2(@unovis/ts@1.6.1)(vue@3.5.24(typescript@5.9.3))':
+ '@unovis/vue@1.6.2(@unovis/ts@1.6.2)(vue@3.5.24(typescript@5.9.3))':
dependencies:
- '@unovis/ts': 1.6.1
+ '@unovis/ts': 1.6.2
vue: 3.5.24(typescript@5.9.3)
'@vercel/oidc@3.0.3': {}
Analysis
Missing @unovis/ts dependency causes peer dependency violation
What fails: @unovis/vue@1.6.2 requires @unovis/ts@1.6.2 as peer dependency, but only version 1.6.1 was installed
How to reproduce:
pnpm install --resolution-only --config.strict-peer-dependencies=trueResult: Command fails with ERR_PNPM_PEER_DEP_ISSUES Unmet peer dependencies showing @unovis/vue 1.6.2 └── ✕ unmet peer @unovis/ts@1.6.2: found 1.6.1
Expected: No peer dependency violations for @unovis packages
Fix: Added @unovis/ts@^1.6.2 to dependencies in package.json to satisfy the peer dependency requirement
5c2350f to
c7e0da9
Compare
c7e0da9 to
fc975df
Compare
fc975df to
c00e0c5
Compare
This PR contains the following updates:
^2.0.7->^2.0.9^24.10.0->^24.10.1^1.6.1->^1.6.2^5.0.90->^5.0.93^0.31.6->^0.31.73.0.1-20251110-005841-4cf1b533->3.0.1-20251113-100129-fde97b5410.21.0->10.22.0^8.46.3->^8.46.4^0.16.1->^0.17.0Release Notes
vercel/ai (@ai-sdk/gateway)
v2.0.9Compare Source
Patch Changes
8f8a521: fix(providers): use convertToBase64 for Uint8Array image parts to produce valid data URLs; keep mediaType normalization and URL passthroughv2.0.8Compare Source
Patch Changes
57fb959]2a3fbe6]f5/unovis (@unovis/vue)
v1.6.2Compare Source
What's Changed
Full Changelog: f5/unovis@1.6.1...1.6.2
nitrojs/nitro (nitro)
v3.0.1-20251113-100129-fde97b54Compare Source
v3.0.1-20251113-085428-6134f29dCompare Source
v3.0.1-20251112-134056-7a52fbf4Compare Source
v3.0.1-20251112-131627-5637892aCompare Source
v3.0.1-20251112-131418-b5e871dbCompare Source
v3.0.1-20251112-125743-9141ce69Compare Source
v3.0.1-20251112-102837-7e13b2eaCompare Source
v3.0.1-20251110-184924-a0b65262Compare Source
v3.0.1-20251110-181111-07136d84Compare Source
v3.0.1-20251110-175557-79bc7d3bCompare Source
v3.0.1-20251110-172133-5be5987cCompare Source
v3.0.1-20251110-164346-0ea04a3cCompare Source
v3.0.1-20251110-125717-ef372c1dCompare Source
v3.0.1-20251110-120318-409ecf3cCompare Source
v3.0.1-20251110-120029-c61042adCompare Source
v3.0.1-20251110-114636-6d7c4b0fCompare Source
v3.0.1-20251110-110934-89e686f1Compare Source
v3.0.1-20251110-102933-36971ba8Compare Source
v3.0.1-20251110-093536-c21a33baCompare Source
v3.0.1-20251110-084730-23f7bea2Compare Source
pnpm/pnpm (pnpm)
v10.22.0Compare Source
typescript-eslint/typescript-eslint (typescript-eslint)
v8.46.4Compare Source
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
posva/unplugin-vue-router (unplugin-vue-router)
v0.17.0Compare Source
Code Refactoring
BREAKING CHANGES
This export was creating multiple issues and was not
needed. It was deprecated long time ago and has now been removed. In
most cases you should be able to just import from
vue-routerinstead,but other exports must be adapted:
definePageshouldn't be imported, it's a macro with no runtimeDataLoaderPluginandNavigationResultmust be imported fromunplugin-vue-router/data-loadersdefineBasicLoadermust be imported fromunplugin-vue-router/data-loaders/basicdefineColadaLoadermust be imported fromunplugin-vue-router/data-loaders/pinia-coladaHere is the old declaration of
vue-router/autofor reference:0.16.2 (2025-11-14)
Bug Fixes
Features
0.16.1 (2025-10-30)
Bug Fixes
v0.16.2Compare Source
Code Refactoring
BREAKING CHANGES
This export was creating multiple issues and was not
needed. It was deprecated long time ago and has now been removed. In
most cases you should be able to just import from
vue-routerinstead,but other exports must be adapted:
definePageshouldn't be imported, it's a macro with no runtimeDataLoaderPluginandNavigationResultmust be imported fromunplugin-vue-router/data-loadersdefineBasicLoadermust be imported fromunplugin-vue-router/data-loaders/basicdefineColadaLoadermust be imported fromunplugin-vue-router/data-loaders/pinia-coladaHere is the old declaration of
vue-router/autofor reference:0.16.2 (2025-11-14)
Bug Fixes
Features
0.16.1 (2025-10-30)
Bug Fixes
Configuration
📅 Schedule: Branch creation - "on Monday" (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.