Skip to content
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

chore(deps): update nuxt & vue dependencies (main) #3314

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 17, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nuxt/fonts ^0.10.0 -> ^0.10.3 age adoption passing confidence
@nuxt/image (source) ^1.8.1 -> ^1.9.0 age adoption passing confidence
@nuxt/kit (source) ^3.15.2 -> ^3.15.3 age adoption passing confidence
@nuxt/schema (source) ^3.15.2 -> ^3.15.3 age adoption passing confidence
@nuxt/ui-pro ^1.4.3 -> ^1.7.0 age adoption passing confidence
nuxt (source) ^3.15.2 -> ^3.15.3 age adoption passing confidence
nuxt (source) ^3.14.1592 -> ^3.15.3 age adoption passing confidence

Release Notes

nuxt/fonts (@​nuxt/fonts)

v0.10.3

Compare Source

compare changes

🩹 Fixes
  • devtools: Re-broadcast all fonts when adding new ones (#​405)
  • Parse nested CSS correctly (#​384)
📖 Documentation
  • Add examples to local file lookup docs (#​398)
  • Call out limited default font-weights (#​399)
  • Update tailwind v4 example (#​410)
🏡 Chore
  • release: V0.10.2 (a7f0a7d)
  • Default bumpType to patch in changelog script (#​402)
❤️ Contributors

v0.10.2

Compare Source

compare changes

🩹 Fixes
  • Write stub files in cache to trigger public asset handling (#​352)
  • De-default custom provider imports (#​353)
✅ Tests
  • Set coverage.include path (36e5e08)
❤️ Contributors

v0.10.1

Compare Source

compare changes

🩹 Fixes
  • Mark module.d.mts as type entrypoint (be6fafc)
🏡 Chore
  • Remove playwright caching (39ec80f)
✅ Tests
  • Update with latest provider snapshots (5923b12)
🤖 CI
  • Run test suite on windows (#​339)
❤️ Contributors
nuxt/image (@​nuxt/image)

v1.9.0

Compare Source

1.9.0 is the next minor release.

👉 Changelog

compare changes

🚀 Enhancements
  • nuxt-img: Add custom slot for full control of rendering (#​1626)
  • amplify: Add additional modifiers (#​1656)
  • strapi5: Add new provider with formats (#​1621)
🔥 Performance
  • Remove node-fetch-native dependency (d667025)
  • Use direct imports from #app/nuxt and #imports (70ef740)
🩹 Fixes
  • prismic: Use unsplash image proxy where necessary (#​1614)
  • Set up non-default ipx providers if options.ipx is set (#​1618)
  • Emit error events from <NuxtImg> placeholder (#​1640)
  • Add strapi5 to list of built-in providers (1079a03)
📖 Documentation
  • Update link to downloads count badge (392991b)
  • Improve cloudflare provider page (#​1601)
  • Make clearer that xxl is not a tailwind size (#​1632)
  • Add note about the alt prop (#​1628)
  • Capitalize title (#​1649)
  • Update strapi links (#​1650)
🏡 Chore
  • Update version link (fa18501)
  • docs: Remove unneeded icons config (150db3e)
  • Add knip and installed-check + clean up workspace deps (736102b)
  • Dedupe lockfile (ddc355b)
✅ Tests
  • Await file snapshot assertions (0e20cce)
  • Add strapi5 snapshots (3415daa)
🤖 CI
❤️ Contributors
nuxt/nuxt (@​nuxt/kit)

v3.15.3

Compare Source

3.15.3 is the next regularly scheduled patch release.

👀 Highlights
CORS configuration for dev server

Alongside a range of improvements, we've also shipped a significant fix to impose CORS origin restrictions on the dev server. This applies to your Vite or Webpack/Rspack dev middleware only.

This is a significant/breaking change we would not normally ship in a patch but it is a security fix (see GHSA-4gf7-ff8x-hq99 and GHSA-2452-6xj8-jh47) and we urge you to update ASAP.

You can configure the allowed origins and other CORS options via the devServer.cors options in your nuxt.config, which may be relevant if you are developing with a custom hostname:

export default defineNuxtConfig({
  devServer: {
    cors: {
      origin: ['https://custom-origin.com'],
    },
  },
})
✅ Upgrading

As usual, our recommendation for upgrading is to run:

npx nuxi@latest upgrade --force

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

👉 Changelog

compare changes

🔥 Performance
  • kit,nuxt: Don't resolve paths from local layers/modules (#​30650)
  • nuxt: Reduce number of mkdirSync calls (#​30651)
  • nuxt: Reduce unnecessary template updating (#​30684)
  • kit: Reduce duplication between findPath and resolvePath (#​30682)
  • kit: Run components compat check synchronously (#​30685)
  • nuxt: Early return from annotation for non-object syntax plugins (#​30683)
  • nuxt: Enable Transition component only on client side (#​30720)
🩹 Fixes
  • vite: Override previous #app-manifest alias (#​30618)
  • kit,nuxt,schema,vite: Improve watching behaviour (#​30620)
  • nuxt: Fall back to plugin.src for variable name generation (#​30649)
  • schema: Allow overriding dev/test environment value (#​30667)
  • vite: Drop unneeded call to invalidate module (d2a95c542)
  • vite: Add back invalidateModule call (9bd71e498)
  • nuxt: Do not warn about [[ optional dynamic params (#​30619)
  • vite: Inline shared folder in dev mode (#​30690)
  • nuxt: Deep clone extracted page meta (#​30717)
  • vite,webpack: Restrict access via cors to local origins + allow configuration via devServer.cors (406db5b4d)
💅 Refactors
  • vite: Drop externality and use vite internal config (#​30634)
📖 Documentation
  • Add link to custom useFetch example (#​30629)
  • Fix example command (#​30628)
  • Fix links to nuxi source code (4fabe0025)
  • Add description for prefetch and other details of NuxtLink (#​30614)
  • Update nuxt/content example (542987627)
  • Adjust examples, type and description for addRouteMiddleware (#​30656)
  • Explain how to use ClientOnly with onMounted hook (#​30670)
  • Update links to unhead source (eb5344b43)
  • Add more context about navigation mode in callOnce composable (#​30612)
  • Add example on how to disable default routes for ssg (#​30729)
📦 Build
  • schema: Use new inlineDependencies option (01adefcec)
🏡 Chore
🤖 CI
  • Run bundle size assertion outside of matrix (#​30688)
  • Reenable nuxt benchmarking (#​30711)
❤️ Contributors
nuxt/ui-pro (@​nuxt/ui-pro)

v1.7.0

Compare Source

v1.6.0

Compare Source

v1.5.0

Compare Source

v1.4.4

Compare Source


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 is behind base branch, 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.

@renovate renovate bot force-pushed the renovate/main-nuxt-and-vue-dependencies branch 9 times, most recently from 58ed70c to 1bb21df Compare January 24, 2025 11:32
@renovate renovate bot force-pushed the renovate/main-nuxt-and-vue-dependencies branch from 1bb21df to 0b99e54 Compare January 25, 2025 02:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants