Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 3, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nuxt/kit (source) ^4.1.2 -> ^4.1.3 age adoption passing confidence
@nuxt/schema (source) ^4.1.2 -> ^4.1.3 age adoption passing confidence
@stacksjs/bumpx ^0.1.84 -> ^0.1.86 age adoption passing confidence
@types/react (source) ^19.2.0 -> ^19.2.2 age adoption passing confidence
@types/react-dom (source) ^19.2.0 -> ^19.2.1 age adoption passing confidence
buddy-bot ^0.9.7 -> ^0.9.8 age adoption passing confidence
bumpp ^10.2.3 -> ^10.3.1 age adoption passing confidence
bun-git-hooks ^0.2.19 -> ^0.3.1 age adoption passing confidence
nuxt (source) ^4.1.2 -> ^4.1.3 age adoption passing confidence
vite (source) ^7.1.3 -> ^7.1.9 age adoption passing confidence
vue-tsc (source) ^3.1.0 -> ^3.1.1 age adoption passing confidence

Release Notes

nuxt/nuxt (@​nuxt/kit)

v4.1.3

Compare Source

4.1.3 is a regularly scheduled patch release.

✅ Upgrading

Our recommendation for upgrading is to run:

npx nuxt upgrade --dedupe

This will deduplicate your lockfile as well, and help ensure that you pull in updates from other dependencies that Nuxt relies on, particularly in the unjs ecosystem.

👉 Changelog

compare changes

🔥 Performance
  • vite: Use rolldown's replace plugin when applicable (#​33258)
🩹 Fixes
  • kit: Add default values when adding type references in prepare:types hook (#​33239)
  • nuxt: Augment app config in server context (#​33287)
  • nuxt: Make lazy component types compatible with h (#​33046)
  • vite: Deduplicate inlined server style chunks (#​33308)
  • nuxt: Support head option on useHead (#​33318)
  • nuxt: Do not relativise importmap if cdnURL is set (#​33333)
  • nuxt: Resolve aliases in imports.dirs (#​33334)
  • nuxt: Add missing element/vnode props for <NuxtLink> (#​33335)
  • nuxt: Do not generate server placeholder components (#​33345)
  • nuxt: Dedupe generated component names (#​33346)
  • webpack: Test watch instance before closing it (0e5a0a5a0)
  • nuxt: Correctly handle island rendering error (#​33302)
  • nuxt: Support v-slot:fallback longform syntax in <DevOnly> (#​33368)
  • nuxt: Support typeFrom when generating auto-import type templates (#​33373)
  • nuxt: Don't trigger scroll when changing trailing slash (#​33358)
  • nuxt: Add stubs for new scripts from @nuxt/scripts (bed410d60)
  • nuxt: Prevent duplicate execution on key change in useAsyncData (#​33325)
  • nuxt: Make middleware _path property configurable for HMR (#​33379)
  • nuxt: Handle non-immediate useAsyncData with different key on ssr (#​33341)
💅 Refactors
  • nuxt: Improve implementation of error composables (#​33234)
  • nuxt: Resolve path of typed-router.d.ts early for consistency (#​33285)
  • nuxt: Move server references to nitro:prepare:types hook (#​33286)
  • nuxt: Place filename into componentsIslandsTemplate definition (#​33394)
  • nuxt,vite: Use environment-api compatible plugins (#​33403)
📖 Documentation
  • Add 4.x prefix to all internal links (#​33264)
  • Fix more links (#​33265)
  • Update usage instructions for Windows users (#​33284)
  • Update app config paths to use app/app.config.ts (#​33297)
  • Remove d suffix in example (#​33298)
  • Move directory structure to top-level (#​33299)
  • Add information about useFetch reactivity (#​33317)
  • Add more 4.x prefixes in urls (47ea684c7)
  • Lint code samples within docs (#​33271)
  • Remove duplicated documentation from nuxt.config page (b438d44e1)
  • Remove docs for outdated asyncData configuration (3e4a999e6)
  • Note prepare command NODE_ENV behavior (#​33330)
  • Update nuxt command pages (#​33336)
🏡 Chore
✅ Tests
  • nuxt: Set locale to en for nuxt-time tests (#​33343)
  • Double gotoPath timeout in CI (f1e5a2d4c)
🤖 CI
  • Add provenance action to check for downgrades in provenance (5ada6861e)
  • Pass commit sha when triggering ecosystem ci (399df6bab)
❤️ Contributors
stacksjs/bumpx (@​stacksjs/bumpx)

v0.1.86

Compare Source

No significant changes

    View changes on GitHub

v0.1.85

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
stacksjs/buddy-bot (buddy-bot)

v0.9.8

Compare Source

antfu-collective/bumpp (bumpp)

v10.3.1

Compare Source

No significant changes

    View changes on GitHub

v10.3.0

Compare Source

   🚀 Features
    View changes on GitHub
stacksjs/bun-git-hooks (bun-git-hooks)

v0.3.1

Compare Source

No significant changes

    View changes on GitHub

v0.3.0

Compare Source

No significant changes

    View changes on GitHub
vitejs/vite (vite)

v7.1.9

Compare Source

Reverts

v7.1.8

Compare Source

Bug Fixes
Documentation
Miscellaneous Chores

v7.1.7

Compare Source

Bug Fixes
  • build: fix ssr environment emitAssets: true when sharedConfigBuild: true (#​20787) (4c4583c)
  • client: use CSP nonce when rendering error overlay (#​20791) (9bc9d12)
  • deps: update all non-major dependencies (#​20811) (9f2247c)
  • glob: handle glob imports from folders starting with dot (#​20800) (105abe8)
  • hmr: trigger prune event when import is removed from non hmr module (#​20768) (9f32b1d)
  • hmr: wait for import.meta.hot.prune callbacks to complete before running other HMRs (#​20698) (98a3484)

v7.1.6

Compare Source

Bug Fixes
  • deps: update all non-major dependencies (#​20773) (88af2ae)
  • esbuild: inject esbuild helper functions with minified $ variables correctly (#​20761) (7e8e004)
  • fallback terser to main thread when nameCache is provided (#​20750) (a679a64)
  • types: strict env typings fail when skipLibCheck is false (#​20755) (cc54e29)
Miscellaneous Chores

v7.1.5

Compare Source

Bug Fixes

v7.1.4

Compare Source

Bug Fixes
Miscellaneous Chores
Code Refactoring
vuejs/language-tools (vue-tsc)

v3.1.1

Compare Source

Features
  • feat(language-server): support --tsdk command line arg (#​5691)
Bug Fixes
  • fix(language-core): tolerate non-literal export default (#​5675) - Thanks to @​KazariEX!
  • fix(language-core): use component instance props as fallthrough attributes (#​5686) - Thanks to @​KazariEX!
  • fix(typescript-plugin): determine if variable is Ref by RefSymbol property (#​5687) - Thanks to @​KazariEX!
  • fix(language-core): exclude effect of comments on root node (#​5689) - Thanks to @​KazariEX!
  • fix(typescript-plugin): place __vue__ in project instead of program (#​5690)
  • fix(component-type-helpers): remove deprecated $scopedSlots support for Vue 2
  • fix(language-core): replace markdown links after sfc blocks processing (#​5695) - Thanks to @​KazariEX!
  • fix(language-core): do not report unused error on __VLS_export (#​5696) - Thanks to @​KazariEX!
Other Changes
  • refactor(language-core): reimplement writeGlobalTypes without side effects

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

netlify bot commented Oct 3, 2025

Deploy Preview for ts-maps failed. Why did it fail? →

Name Link
🔨 Latest commit a079e41
🔍 Latest deploy log https://app.netlify.com/projects/ts-maps/deploys/68e54f8f8e1f3600085bf358

Copy link

pkg-pr-new bot commented Oct 3, 2025

Open in StackBlitz

npm i https://pkg.pr.new/stacksjs/ts-maps@398

commit: a079e41

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 78662e4 to 7284df9 Compare October 6, 2025 02:31
@renovate renovate bot added minor and removed patch labels Oct 6, 2025
@renovate renovate bot changed the title chore(deps): update dependency vite to ^7.1.9 chore(deps): update all non-major dependencies Oct 6, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 73b0613 to 80ea10e Compare October 6, 2025 18:07
@renovate renovate bot added patch and removed minor labels Oct 6, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 62b22ac to f6966fe Compare October 7, 2025 06:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f6966fe to a079e41 Compare October 7, 2025 17:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants