-
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
c00e0c5 to
04a177c
Compare
04a177c to
69d84bf
Compare
69d84bf to
5942a93
Compare
5942a93 to
1371c8b
Compare
1371c8b to
b3a6c18
Compare
b3a6c18 to
f7cd003
Compare
f7cd003 to
214363e
Compare
214363e to
efedf09
Compare
This PR contains the following updates:
^2.0.7->^2.0.11^4.1.0->^4.2.0^24.10.0->^24.10.1^1.6.1->^1.6.2^6.0.1->^6.0.2^5.0.90->^5.0.95^0.31.6->^0.31.73.0.1-20251110-005841-4cf1b533->3.0.1-20251118-175529-0316c6c610.21.0->10.22.0^8.46.3->^8.47.0^0.16.1->^0.17.0^8.0.3->^8.0.5^3.1.3->^3.1.4Release Notes
vercel/ai (@ai-sdk/gateway)
v2.0.11Compare Source
Patch Changes
097b452: feat(openai, azure): add configurable file ID prefixes for Responses APIfileIdPrefixesoption to OpenAI Responses API configurationassistant-prefixed file IDs (replacing previousfile-prefix support)file-prefixfileIdPrefixesis undefined, gracefully falling back to base64 processing0853d6b: fix(provider/azure): add deployment-based URL support for transcription compatibilityUpdated dependencies [
097b452]Updated dependencies [
87cf954]Updated dependencies [
a3d98a9]Updated dependencies [
38ac190]Updated dependencies [
110d167]Updated dependencies [
8d3c747]v2.0.10Compare Source
Patch Changes
a274b01]b48e0ff]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]nuxt/ui (@nuxt/ui)
v4.2.0Compare Source
⚠ BREAKING CHANGES
Features
data-slotattributes (#5447) (dd81d46)previewprop (#5443) (2af82e7)scrollableprop (#5306) (240897e)theme.prefixoption (#5341) (7fca5d7)estimateSizeas function (ebc8568)Bug Fixes
leadingslot (#5405) (b61127a)disabledprop (a8f2156), closes #5300locale/dirprops proxy (#5432) (a6efa7a)nestedprop type handling and simplify logic (#5360) (8d5c26f)modelModifiersgeneric (#5361) (5c347af)vue-routerandinertia(637ef58)experimental.componentDetection(5a5ac45)modelValue/defaultValuein vertical orientation (cffaaaa), closes #5392inline-blockclass to icon (#5317) (fc36f69)update:modelValueemit type (#5349) (4cb0638)thbased on column meta (#5418) (620defa)import.meta.env.SSRto supportvite-ssg(#5347) (8f38c04)f5/unovis (@unovis/vue)
v1.6.2Compare Source
What's Changed
Full Changelog: f5/unovis@1.6.1...1.6.2
vitejs/vite-plugin-vue (@vitejs/plugin-vue)
v6.0.2Bug Fixes
Miscellaneous Chores
drizzle-team/drizzle-orm (drizzle-kit)
v0.31.7: drizzle-kit@0.31.7Compare Source
Bug fixes
nitrojs/nitro (nitro)
v3.0.1-20251118-175529-0316c6c6Compare Source
v3.0.1-20251118-173517-7eb23543Compare Source
v3.0.1-20251117-115950-87e718daCompare Source
v3.0.1-20251117-115147-87e718daCompare Source
v3.0.1-20251116-233618-ae257c09Compare Source
v3.0.1-20251116-223140-b9920d49Compare Source
v3.0.1-20251116-171456-64898bbcCompare Source
v3.0.1-20251116-164626-65799949Compare Source
v3.0.1-20251116-154428-b8b68d1bCompare Source
v3.0.1-20251116-145822-c2b81c72Compare Source
v3.0.1-20251116-142138-25872617Compare Source
v3.0.1-20251116-134446-b005d480Compare Source
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.0: pnpm 10.22Compare Source
Minor Changes
Added support for
trustPolicyExclude#10164.You can now list one or more specific packages or versions that pnpm should allow to install, even if those packages don't satisfy the trust policy requirement. For example:
Allow to override the
enginesfield on publish by thepublishConfig.enginesfield.Patch Changes
Platinum Sponsors
Gold Sponsors
typescript-eslint/typescript-eslint (typescript-eslint)
v8.47.0Compare 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.
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
vuejs/devtools (vite-plugin-vue-devtools)
v8.0.5Compare Source
🐞 Bug Fixes
View changes on GitHub
v8.0.4Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
vuejs/language-tools (vue-tsc)
v3.1.4Compare Source
Bug Fixes
@ts-expect-errordirective on components with loose props checks (#5750) - Thanks to @serkodev and @KazariEX!v-else(#5753) - Thanks to @serkodev and @KazariEX!Other Changes
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.