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): Bump the minor-deps-updates-main group with 5 updates #561

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the minor-deps-updates-main group with 5 updates:

Package From To
@nuxt/kit 3.14.1592 3.15.0
@nuxt/schema 3.14.1592 3.15.0
@wdio/logger 9.1.3 9.4.4
consola 3.2.3 3.3.3
release-it 17.10.0 17.11.0

Updates @nuxt/kit from 3.14.1592 to 3.15.0

Release notes

Sourced from @​nuxt/kit'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
  • 9e20d8d fix(kit): initialize tsconfig paths in addTemplate if undefined (#30348)
  • 5e6b741 chore(deps): update all non-major dependencies (3.x) (#30330)
  • d1bac19 chore(deps): update devdependency ignore to v7 (3.x) (#30342)
  • bdb7e1e chore(deps): update all non-major dependencies (3.x) (#30309)
  • bdca53e chore(deps): update all non-major dependencies (3.x) (#30299)
  • cde98d7 chore(deps): update all non-major dependencies (3.x) (#30281)
  • ef2d3bb chore(deps): update all non-major dependencies (3.x) (#30276)
  • 333d71a docs: update nitro links + fix link checking (#30228)
  • 8ecdc46 chore(deps): update all non-major dependencies (3.x) (#30252)
  • Additional commits viewable in compare view

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 @wdio/logger from 9.1.3 to 9.4.4

Release notes

Sourced from @​wdio/logger's releases.

v9.4.4 (2024-12-19)

💅 Polish

  • wdio-testingbot-service

🏠 Internal

  • eslint-plugin-wdio, wdio-allure-reporter, wdio-appium-service, wdio-browser-runner, wdio-browserstack-service, wdio-cli, wdio-config, wdio-cucumber-framework, wdio-firefox-profile-service, wdio-globals, wdio-jasmine-framework, wdio-json-reporter, wdio-junit-reporter, wdio-lighthouse-service, wdio-local-runner, wdio-logger, wdio-mocha-framework, wdio-protocols, wdio-repl, wdio-reporter, wdio-runner, wdio-sauce-service, wdio-shared-store-service, wdio-smoke-test-cjs-service, wdio-smoke-test-service, wdio-spec-reporter, wdio-static-server-service, wdio-sumologic-reporter, wdio-testingbot-service, wdio-types, wdio-utils, wdio-webdriver-mock-service, webdriver, webdriverio

Committers: 2

v9.4.3 (2024-12-17)

🐛 Bug Fix

💅 Polish

Committers: 4

v9.4.2 (2024-12-12)

🐛 Bug Fix

... (truncated)

Changelog

Sourced from @​wdio/logger's changelog.

v9.4.4 (2024-12-19)

💅 Polish

  • wdio-testingbot-service

🏠 Internal

  • eslint-plugin-wdio, wdio-allure-reporter, wdio-appium-service, wdio-browser-runner, wdio-browserstack-service, wdio-cli, wdio-config, wdio-cucumber-framework, wdio-firefox-profile-service, wdio-globals, wdio-jasmine-framework, wdio-json-reporter, wdio-junit-reporter, wdio-lighthouse-service, wdio-local-runner, wdio-logger, wdio-mocha-framework, wdio-protocols, wdio-repl, wdio-reporter, wdio-runner, wdio-sauce-service, wdio-shared-store-service, wdio-smoke-test-cjs-service, wdio-smoke-test-service, wdio-spec-reporter, wdio-static-server-service, wdio-sumologic-reporter, wdio-testingbot-service, wdio-types, wdio-utils, wdio-webdriver-mock-service, webdriver, webdriverio

Committers: 2

v9.4.3 (2024-12-17)

🐛 Bug Fix

💅 Polish

Committers: 4

v9.4.2 (2024-12-12)

🐛 Bug Fix

... (truncated)

Commits

Updates consola from 3.2.3 to 3.3.3

Release notes

Sourced from consola's releases.

v3.3.3

compare changes

📦 Build

  • Revert "build: update exports for node16 typescript resolution" (2065136) (#329)

v3.3.2

compare changes

📦 Build

  • Patch string-width for node 14 support (421c663)
  • Update exports for node16 typescript resolution (18bc852)

v3.3.1

compare changes

🩹 Fixes

  • fancy: Fallback whenIntl is unavailable (#326)

❤️ Contributors

v3.3.0

compare changes

🚀 Enhancements

  • utils: formatTree utility (#223)
  • formatTree: Support max depth (#267)
  • Print error cause (#308)
  • Export prompt option types (#301)
  • prompt: Configurable cancel strategy (#325)

🩹 Fixes

  • Use initial in select and multiselect prompts (#232)
  • Make box title color same as border (#236)

📖 Documentation

... (truncated)

Changelog

Sourced from consola's changelog.

v3.3.3

compare changes

📦 Build

  • Revert "build: update exports for node16 typescript resolution" (2065136)

❤️ Contributors

v3.3.2

compare changes

📦 Build

  • Patch string-width for node 14 support (421c663)
  • Update exports for node16 typescript resolution (18bc852)

❤️ Contributors

v3.3.1

compare changes

🩹 Fixes

  • fancy: Fallback whenIntl is unavailable (#326)

❤️ Contributors

v3.3.0

compare changes

🚀 Enhancements

  • utils: formatTree utility (#223)
  • Export prompt option types (#301)
  • Support report error cause (#308)
  • prompt: Configurable cancel strategy (#325)
  • formatTree: Support max depth (#267)

🩹 Fixes

... (truncated)

Commits
  • 6734c47 chore(release): v3.3.3
  • 2065136 build: revert "build: update exports for node16 typescript resolution"
  • b5e43be chore(release): v3.3.2
  • 18bc852 build: update exports for node16 typescript resolution
  • 421c663 build: patch string-width for node 14 support
  • 4429f8f chore(release): v3.3.1
  • d9b58df fix(fancy): fallback whenIntl is unavailable (#326)
  • 0502452 chore(release): v3.3.0
  • 0183abc feat(formatTree): support max depth (#267)
  • faa9cbd feat(prompt): configurable cancel strategy (#325)
  • Additional commits viewable in compare view

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

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 minor-deps-updates-main group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@nuxt/kit](https://github.com/nuxt/nuxt/tree/HEAD/packages/kit) | `3.14.1592` | `3.15.0` |
| [@nuxt/schema](https://github.com/nuxt/nuxt/tree/HEAD/packages/schema) | `3.14.1592` | `3.15.0` |
| [@wdio/logger](https://github.com/webdriverio/webdriverio/tree/HEAD/packages/wdio-logger) | `9.1.3` | `9.4.4` |
| [consola](https://github.com/unjs/consola) | `3.2.3` | `3.3.3` |
| [release-it](https://github.com/release-it/release-it) | `17.10.0` | `17.11.0` |


Updates `@nuxt/kit` 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/kit)

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 `@wdio/logger` from 9.1.3 to 9.4.4
- [Release notes](https://github.com/webdriverio/webdriverio/releases)
- [Changelog](https://github.com/webdriverio/webdriverio/blob/main/CHANGELOG.md)
- [Commits](https://github.com/webdriverio/webdriverio/commits/v9.4.4/packages/wdio-logger)

Updates `consola` from 3.2.3 to 3.3.3
- [Release notes](https://github.com/unjs/consola/releases)
- [Changelog](https://github.com/unjs/consola/blob/main/CHANGELOG.md)
- [Commits](unjs/consola@v3.2.3...v3.3.3)

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)

---
updated-dependencies:
- dependency-name: "@nuxt/kit"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-deps-updates-main
- dependency-name: "@nuxt/schema"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-deps-updates-main
- dependency-name: "@wdio/logger"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-deps-updates-main
- dependency-name: consola
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-deps-updates-main
- dependency-name: release-it
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-deps-updates-main
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 30, 2024
@github-actions github-actions bot merged commit 6b65f03 into main Dec 30, 2024
2 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-deps-updates-main-941a7485c9 branch December 30, 2024 19:34
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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants