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: bump the development group with 6 updates #23

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2025

Bumps the development group with 6 updates:

Package From To
release-it 17.10.0 17.11.0
@nuxt/devtools 1.6.4 1.7.0
@nuxt/schema 3.14.1592 3.15.0
@types/node 22.10.2 22.10.3
nuxt 3.14.1592 3.15.0
typescript 5.6.3 5.7.2

Updates release-it from 17.10.0 to 17.11.0

Release notes

Sourced from release-it's releases.

Release 17.11.0

  • Update dependencies (182e992)
  • GitLab Generic Package Repository for assets (#1189) (54399c9)
  • fix(gitlab): don't set Content-Type header when uploading release assets (#1183) (04a36d2)
  • Fixed GitBase.getLatestVersion to computed formatted tagTemplate before using it for latestTag computation (#1170) (09d7d1b)
  • Add git-cliff example (#1176) (b161114)
  • Move configuration options to existing doc pages + table format, shorten (28213bf)
  • Add docs for configuration options (#1155) (667cd6a)
  • Improve docs on Tag Match (#1165) (716b44f)
Commits
  • 2ec1d60 Release 17.11.0
  • 182e992 Update dependencies
  • 54399c9 GitLab Generic Package Repository for assets (#1189)
  • 04a36d2 fix(gitlab): don't set Content-Type header when uploading release assets (#1183)
  • 09d7d1b Fixed GitBase.getLatestVersion to computed formatted tagTemplate before using...
  • b161114 Add git-cliff example (#1176)
  • 28213bf Move configuration options to existing doc pages + table format, shorten
  • 667cd6a Add docs for configuration options (#1155)
  • 716b44f Improve docs on Tag Match (#1165)
  • See full diff in compare view

Updates @nuxt/devtools from 1.6.4 to 1.7.0

Release notes

Sourced from @​nuxt/devtools's releases.

v1.7.0

   🚀 Features

    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)
Commits

Updates @nuxt/schema from 3.14.1592 to 3.15.0

Release notes

Sourced from @​nuxt/schema'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
  • 0c25dc7 chore(deps): update all non-major dependencies (3.x) (#30351)
  • 5e6b741 chore(deps): update all non-major dependencies (3.x) (#30330)
  • d1bac19 chore(deps): update devdependency ignore to v7 (3.x) (#30342)
  • ceac86e fix(schema): gate inline style change behind v4 check
  • 58b6b72 perf(nuxt): remove useId from composable key plugin (#30328)
  • bdb7e1e chore(deps): update all non-major dependencies (3.x) (#30309)
  • a4e77a1 perf(schema): only inline styles for vue components (#30305)
  • cde98d7 chore(deps): update all non-major dependencies (3.x) (#30281)
  • aa79b3a feat(nuxt): add mode: 'navigation' to callOnce (#30260)
  • Additional commits viewable in compare view

Updates @types/node from 22.10.2 to 22.10.3

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 typescript from 5.6.3 to 5.7.2

Release notes

Sourced from typescript's releases.

TypeScript 5.7

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.7 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.7 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • d701d90 Bump version to 5.7.2 and LKG
  • 0503a63 🤖 Pick PR #60450 (Move to file: fix detection of refe...) into release-5.7 (#...
  • 3140dbb 🤖 Pick PR #60488 (Stub out copilotRelated command) into release-5.7 (#60495)
  • c1216de Update LKG
  • 3ee2b95 🤖 Pick PR #60415 (Fix false positive rewriteRelativeI...) into release-5.7 (#...
  • 44bd3f2 Bump version to 5.7.1-rc and LKG
  • 5925c81 Update LKG
  • 84d58cf Merge remote-tracking branch 'origin/main' into release-5.7
  • 0ec4d30 Fixing exception on unsaved file (#60362)
  • 11b2930 Add compatible overloads that accept ArrayBuffer to BigInt64Array/BigUint64Ar...
  • Additional commits viewable in compare view

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

Bumps the development group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [release-it](https://github.com/release-it/release-it) | `17.10.0` | `17.11.0` |
| [@nuxt/devtools](https://github.com/nuxt/devtools/tree/HEAD/packages/devtools) | `1.6.4` | `1.7.0` |
| [@nuxt/schema](https://github.com/nuxt/nuxt/tree/HEAD/packages/schema) | `3.14.1592` | `3.15.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.10.2` | `22.10.3` |
| [nuxt](https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt) | `3.14.1592` | `3.15.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.3` | `5.7.2` |


Updates `release-it` from 17.10.0 to 17.11.0
- [Release notes](https://github.com/release-it/release-it/releases)
- [Changelog](https://github.com/release-it/release-it/blob/main/CHANGELOG.md)
- [Commits](release-it/release-it@17.10.0...17.11.0)

Updates `@nuxt/devtools` from 1.6.4 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/schema` 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/schema)

Updates `@types/node` from 22.10.2 to 22.10.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

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 `typescript` from 5.6.3 to 5.7.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.6.3...v5.7.2)

---
updated-dependencies:
- dependency-name: release-it
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
- dependency-name: "@nuxt/devtools"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
- dependency-name: "@nuxt/schema"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development
- dependency-name: nuxt
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 1, 2025
@github-actions github-actions bot merged commit dcd16ed into main Jan 1, 2025
2 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/development-6c38c00cde branch January 1, 2025 15:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants