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

fix(deps): bump the nuxt group with 4 updates #342

Merged
merged 2 commits into from
Dec 30, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 30, 2024

Bumps the nuxt group with 4 updates: @nuxt/ui-pro, nuxt, @nuxt/devtools and @nuxt/eslint.

Updates @nuxt/ui-pro from 1.5.0 to 1.6.0

Commits

Updates nuxt from 3.14.1592 to 3.15.0

Release notes

Sourced from nuxt's releases.

v3.15.0

👀 Highlights

❄️ Snowfall!

Happy holidays! You'll notice when you start Nuxt that (if you're in the Northern Hemisphere) there's some snow on the loading screen (#29871).

⚡️ Vite 6 included

Nuxt v3.15 includes Vite 6 for the first time. Although this is a major version, we expect that this won't be a breaking change for Nuxt users (see full migration guide). However, please take care if you have dependencies that rely on a particular Vite version.

One of the most significant changes with Vite 6 is the new Environment API, which we hope to use in conjunction with Nitro to improve the server dev environment. Watch this space!

You can read the full list of changes in the Vite 6 changelog.

🪵 Chromium devtools improvements

We talk a lot about the Nuxt DevTools, but v3.15 ships with better integration in dev mode for Chromium-based browser devtools.

We now use the Chrome DevTools extensibility API to add support for printing nuxt hook timings in the browser devtools performance panel.

CleanShot 2024-11-14 at 15 05 22@2x

🗺️ Navigation mode for callOnce

callOnce is a built-in Nuxt composable for running code only once. For example, if the code runs on the server it won't run again on the client. But sometimes you do want code to run on every navigation - just avoid the initial server/client double load. For this, there's a new mode: 'navigation' option that will run the code only once per navigation. (See #30260 for more info.)

await callOnce(() => counter.value++, { mode: 'navigation' })

🥵 HMR for templates, pages + page metadata

We now implement hot module reloading for Nuxt's virtual files (like routes, plugins, generated files) as well as for the content of page metadata (within a definePageMeta macro) (#30113).

This should mean you have a faster experience in development, as well as not needing to reload the page when making changes to your routes.

📋 Page meta enhancements

We now support extracting extra page meta keys (likely used by module authors) via experimental.extraPageMetaExtractionKeys (#30015). This enables module authors to use this information at build time, in the pages:resolved hook.

We also now support local functions in definePageMeta (#30241). This means you can do something like this:

function validateIdParam(route) {
  return !!(route.params.id && !isNaN(Number(route.params.id)))
}
definePageMeta({
validate: validateIdParam,
</tr></table>

... (truncated)

Commits
  • 1acc9a0 v3.15.0
  • b1cf578 fix(nuxt): initialise import.meta.hot.data
  • fb1f24f fix(nuxt): treat client useAsyncData calls as async boundaries (#30343)
  • 9a8e34d chore: document div wrapper in client-only page (#30359)
  • c4ce09b chore(deps): update dependency nuxi to ^3.17.2 (3.x) (#30357)
  • 5e6b741 chore(deps): update all non-major dependencies (3.x) (#30330)
  • d1bac19 chore(deps): update devdependency ignore to v7 (3.x) (#30342)
  • 4171a10 fix(nuxt): do not resolve deep imports for @vitest/
  • 0496513 chore: remove outdated comment (#30324)
  • bdb7e1e chore(deps): update all non-major dependencies (3.x) (#30309)
  • Additional commits viewable in compare view

Updates @nuxt/devtools from 1.6.3 to 1.7.0

Release notes

Sourced from @​nuxt/devtools's releases.

v1.7.0

   🚀 Features

    View changes on GitHub

v1.6.4

   🐞 Bug Fixes

    View changes on GitHub
Changelog

Sourced from @​nuxt/devtools's changelog.

1.7.0 (2024-12-26)

Features

  • improves vscode integration, support multiple backends (#763) (463f6ad)

1.6.4 (2024-12-12)

Bug Fixes

Commits

Updates @nuxt/eslint from 0.7.2 to 0.7.4

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added the dependabot 🤖 Pull requests that update a dependency file label Dec 30, 2024
@dependabot dependabot bot added this to the vNext milestone Dec 30, 2024
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/nuxt-acaeca9fb5 branch 2 times, most recently from 78ceb5a to a62be64 Compare December 30, 2024 01:23
Bumps the nuxt group with 4 updates: [@nuxt/ui-pro](https://github.com/nuxt/ui-pro), [nuxt](https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt), [@nuxt/devtools](https://github.com/nuxt/devtools/tree/HEAD/packages/devtools) and [@nuxt/eslint](https://github.com/nuxt/eslint/tree/HEAD/packages/module).


Updates `@nuxt/ui-pro` from 1.5.0 to 1.6.0
- [Commits](https://github.com/nuxt/ui-pro/commits)

Updates `nuxt` from 3.14.1592 to 3.15.0
- [Release notes](https://github.com/nuxt/nuxt/releases)
- [Commits](https://github.com/nuxt/nuxt/commits/v3.15.0/packages/nuxt)

Updates `@nuxt/devtools` from 1.6.3 to 1.7.0
- [Release notes](https://github.com/nuxt/devtools/releases)
- [Changelog](https://github.com/nuxt/devtools/blob/main/CHANGELOG.md)
- [Commits](https://github.com/nuxt/devtools/commits/v1.7.0/packages/devtools)

Updates `@nuxt/eslint` from 0.7.2 to 0.7.4
- [Release notes](https://github.com/nuxt/eslint/releases)
- [Commits](https://github.com/nuxt/eslint/commits/v0.7.4/packages/module)

---
updated-dependencies:
- dependency-name: "@nuxt/ui-pro"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuxt
- dependency-name: nuxt
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuxt
- dependency-name: "@nuxt/devtools"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: nuxt
- dependency-name: "@nuxt/eslint"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: nuxt
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/nuxt-acaeca9fb5 branch from a62be64 to 5ea15e1 Compare December 30, 2024 01:39
Copy link
Contributor

@nogic1008 nogic1008 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dependabot squash and merge

@dependabot dependabot bot merged commit b2dcfca into main Dec 30, 2024
6 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/nuxt-acaeca9fb5 branch December 30, 2024 02:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependabot 🤖 Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant