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 all non-major dependencies #262

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 30, 2021

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@nuxt-themes/docus ^1.10.1 -> ^1.15.1 age adoption passing confidence dependencies minor
@nuxt/kit (source) ^3.3.2 -> ^3.15.4 age adoption passing confidence dependencies minor
@nuxt/module-builder ^0.2.1 -> ^0.8.4 age adoption passing confidence devDependencies minor
@nuxthq/studio (source) ^0.10.0 -> ^0.14.1 age adoption passing confidence dependencies minor
eslint (source) ^8.37.0 -> ^8.57.1 age adoption passing confidence devDependencies minor
nuxt (source) ^3.3.2 -> ^3.15.4 age adoption passing confidence devDependencies minor
nuxt (source) ^3.3.2 -> ^3.15.4 age adoption passing confidence dependencies minor
playwright (source) ^1.32.1 -> ^1.50.1 age adoption passing confidence devDependencies minor
pnpm (source) 8.1.0 -> 8.15.9 age adoption passing confidence packageManager minor
pnpm/action-setup v2.2.4 -> v2.4.1 age adoption passing confidence action minor
release-it ^15.9.3 -> ^15.11.0 age adoption passing confidence devDependencies minor
svgo (source) ^3.0.2 -> ^3.3.2 age adoption passing confidence dependencies minor
vitest (source) ^0.29.8 -> ^0.34.6 age adoption passing confidence devDependencies minor

Release Notes

nuxt-themes/docus (@​nuxt-themes/docus)

v1.15.1

Compare Source

What's Changed

New Contributors

Full Changelog: nuxt-themes/docus@v1.15.0...v1.15.1

v1.15.0

Compare Source

What's Changed

New Contributors

Full Changelog: nuxt-themes/docus@v1.14.9...v1.15.0

v1.14.9

Compare Source

v1.14.8

Compare Source

v1.14.7

Compare Source

What's Changed

New Contributors

Full Changelog: nuxt-themes/docus@v1.14.6...v1.14.7

v1.14.6

Compare Source

  • fix(search): handle back docsearch properly (b5f3108)
  • fix(footer): handle icons value for credits (e1ed5c8)

Full Changelog: nuxt-themes/docus@v1.14.5...v1.14.6

v1.14.5

Compare Source

What's Changed

Full Changelog: nuxt-themes/docus@v1.14.4...v1.14.5

v1.14.4

Compare Source

v1.14.3

Compare Source

  • fix: no need to have client-only for AppSearch (bb9c50f)

Full Changelog: nuxt-themes/docus@v1.14.2...v1.14.3

v1.14.2

Compare Source

What's Changed

Full Changelog: nuxt-themes/docus@v1.14.1...v1.14.2

v1.14.1

Compare Source

  • fix: add AppSearch only on client-side (b3a93ef)

v1.14.0

Compare Source

What's Changed

CleanShot.2023-07-12.at.10.22.36.mp4

Full Changelog: nuxt-themes/docus@v1.13.1...v1.14.0

v1.13.1

Compare Source

  • fix: ignore pinceau routes to generate without failing (3e728b5)

v1.13.0

Compare Source

What's Changed

New Contributors

Full Changelog: nuxt-themes/docus@v1.12.3...v1.13.0

v1.12.3

Compare Source

  • fix: use public runtime config for DocSearch (2d0a25a)

v1.12.2

Compare Source

v1.12.1

Compare Source

v1.12.0

Compare Source

  • chore(lockfile): upgrade lockfile (ead6d06)
  • docs: logo customization (#​905) (b52509e)
  • feat(rel): add rel support for textLinks and iconLinks too (838003d)
  • Merge branch 'main' of github.com:nuxtlabs/docus (9d20ec9)
  • feat: allow rel for socials links to be configured (#​899) (fbd0971)
  • chore(deps): up (117bd8b)
  • chore(clean): clean comments (a710a9a)
  • chore(deployment): add github action (97d6bb5)
  • 1 deletion by Nuxt Studio (e277328)
  • chore(deployment): add github action (b85ff39)
  • chore(fix): iconLinks in starter (5d2eff5)
  • feat(nuxt): fix nuxt version in starter (c62df23)
  • chore(devtools): add devtools to starter (8000f2c)
  • feat(starter): move docus-starter inside this repository (#​904) (a8af7e6)

v1.11.1

Compare Source

v1.11.0

Compare Source

nuxt/nuxt (@​nuxt/kit)

v3.15.4

Compare Source

3.15.4 is the next patch release.

✅ 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

🩹 Fixes
  • nuxt: Improve error logging when parsing with acorn (#​30754)
  • nuxt: Clear island uid before saving into the payload (#​30767)
  • kit: Load @nuxt/schema from nuxt package dir (#​30774)
  • nuxt: Allow restarting nuxt on paths outside srcDir (#​30771)
  • nuxt: Don't warn about calling useRoute in SFC setup (#​30788)
  • webpack: Disallow cross-site requests in no-cors mode (#​30757)
  • vite: Restore externality for dev server externals (#​30802)
💅 Refactors
  • vite: Use new rollup chunk.names for asset names (#​30780)
❤️ Contributors

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

v3.15.2

Compare Source

3.15.2 is the next regularly scheduled patch release.

👀 Highlights
🔥 Startup performance improvements

It is worth noting that this release includes some pretty significant performance improvements which you should notice particularly in the startup time. In my tests in the nuxt monorepo,

fixture time to vite build complete (v3.15.1) time to vite build complete (v3.15.2)
minimal 850ms 710ms
everything bagel 3,021ms 1,690ms

There's more improvement to do here but hopefully these are good numbers!

📦 CLI refactor

To improve performance within Nuxt projects, we've published a new @nuxt/cli distribution of nuxi, which is used under-the-hood in nuxt (see issue). This should behave exactly the same and nothing needs to be updated in your projects (for example, you will continue to use the nuxi or nuxt commands). The only significant change is that it no longer inlines dependencies. Feedback is welcome 🙏

✅ 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
  • nuxt: Remove code duplication in client-only (#​30460)
  • nuxt: Use lighter @nuxt/cli dependency (#​30526)
  • kit: Remove iterations when resolving module path (#​30562)
  • nuxt: Avoid checking fs for existence of scanned pages (#​30581)
  • nuxt: Defer version/config warnings to after build (#​30567)
🩹 Fixes
  • nuxt: Collect all identifiers before extracting page metadata (#​30478)
  • nuxt: Don't hoist identifiers declared locally in definePageMeta when extracting page metadata (#​30490)
  • kit: Reorder #build to the end of tsConfig paths (#​30520)
  • nuxt: Use fullPath instead of empty string in router hmr (#​30500)
  • Relax nuxt version constraints to current (23b968289)
  • nuxt: Add import protection for @nuxt/cli (618bbc6da)
  • kit: Fully resolve plugin paths when normalising them (#​30540)
  • nuxt: Call page:loading:end only once with nested pages (#​29009)
  • nuxt: Warn about ignored char while parsing route segment (#​30396)
  • nuxt: Allow url-specific chars in vfs (#​30584)
  • nuxt: Do not warn about invalid characters in route groups/catchalls (0249c74bc)
  • vite: Provide fallback alias for #app-manifest (#​30587)
  • nuxt: Avoid invoking shouldPrefetch on the server side (#​30591)
  • nuxt: Decode id before resolving relative imports (#​30599)
💅 Refactors
  • kit,nuxt,webpack: Reduce reassignments (#​30589)
📖 Documentation
  • Document --dev option for the module command (#​30477)
  • Document the add layer command (#​30476)
  • Update v4 release date (#​30514)
  • Ensure correct type for url in useFetch (#​30531)
  • Update link to @nuxt/module-builder source (509cf4a5c)
  • Add status detail and enhance getCachedData readability (#​30536)
  • Update hash link to correct heading (#​30543)
  • Update links to unhead source (fef3a59bb)
  • Adjust example and additional instructions of useNuxtData (#​30570)
  • Resolve many twoslash errors (#​30573)
  • Add context for useAsyncData side effects (#​30479)
  • Update examples to use function declarations for clarity (#​30588)
🏡 Chore
  • Control dependency import into nuxt/app (1adf3e31f)
  • Ignore automated renovate node engines updates (6895993fb)
🤖 CI
  • Don't block release on fixtures + add pkg.pr.new (#​30548)
  • Remove concurrency group from release-pr job (8ac54ff10)
❤️ Contributors

v3.15.1

Compare Source

3.15.1 is the next regularly scheduled patch release.

✅ 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
  • nuxt: Skip experimental async context transform in client build (#​30360)
  • schema: Drop unneeded type-only schema dependencies (#​30411)
  • rspack,webpack: Drop lodash-es dependency (#​30409)
  • nuxt: Drop pathe browser dep for deep server components (#​30456)
🩹 Fixes
  • nuxt: Update module path for defaults (#​30371)
  • nuxt: Ignore non-reference identifiers when extracting page metadata (#​30381)
  • nuxt: Pass nuxt instance to resolvePagesRoutes (e4a372e12)
  • schema: Support pfx certificate for dev server (#​30412)
  • nuxt: Use node location instead of range for route meta property extraction (#​30447)
  • schema: Override vueCompilerOptions.plugins type (#​30454)
  • nuxt: Respect baseURL when ignoring prerendered manifest (#​30446)
  • nuxt: Respect router.options when hmring routes (#​30455)
💅 Refactors
  • nuxt: Use consola with nuxt tag instead of console (#​30408)
📖 Documentation
  • Update references to lodash and recommend es-toolkit (8e2ca5bdc)
  • Add warning about prerendering (#​30437)
🏡 Chore
❤️ Contributors

v3.15.0

Compare Source

👀 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,
})
🔥 Performance improvements

We now preload the app manifest in the browser if it will be used when hydrating the app (#​30017).

We'll also tree shake vue-router's hash mode history out of your bundle if we can - specifically, if you haven't customised your app/router.options.ts (#​30297).

🐣 v4 updates

A few more changes shipped for the new defaults for v4, including only inlining styles by default for Vue components (#​30305).

✅ 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

🚀 Enhancements
  • deps: Update dependency vite to v6 (3.x) (#​30044)
  • kit: Allow module default options to be async (#​29980)
  • nuxt: Add new types to vue preset (#​29819)
  • nuxt: Experimental extraPageMetaExtractionKeys (#​30015)
  • nuxt,schema: Allow setting serialisable vue app config (#​28873)
  • nuxt: Print nuxt hook timings in browser devtools (#​29922)
  • nuxt: Support vue directive auto-imports within unimport (#​29818)
  • schema: Add snow effect on loading screen in winter (#​29871)
  • nuxt: Support local functions in definePageMeta (#​30241)
  • nuxt: Add mode: 'navigation' to callOnce (#​30260)
🔥 Performance
  • nuxt: Preload app manifest (#​30017)
  • nuxt: Use static hashMode option (#​30297)
  • vite: Use vite to clear screen (#​30315)
  • schema: Only inline styles for vue components (#​30305)
  • nuxt: Remove useId from composable key plugin (#​30328)
🩹 Fixes
  • nuxt: Check if nuxt link observer is null (#​30038)
  • nuxt: Unref the default value of asyncData when clearing (#​30041)
  • kit: Re-export addServerTemplate (a02af2348)
  • Remove unused dependencies and tidy project (#​30043)
  • vite: Add back some dev-bundler dependencies (976024f16)
  • nuxt: Do not persist extraExtractionKeys on runtime route.meta ([ae9f42f4a](https://redirect.github.c

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.

@codecov
Copy link

codecov bot commented Nov 30, 2021

Codecov Report

Merging #262 (fcccb00) into master (28e06a5) will not change coverage.
Report is 5 commits behind head on master.
The diff coverage is n/a.

❗ Current head fcccb00 differs from pull request most recent head 99362f3. Consider uploading reports for the commit 99362f3 to get more accurate results

@@           Coverage Diff           @@
##           master     #262   +/-   ##
=======================================
  Coverage   73.52%   73.52%           
=======================================
  Files           5        5           
  Lines         272      272           
  Branches       53       48    -5     
=======================================
  Hits          200      200           
  Misses         72       72           

@renovate renovate bot changed the title chore(deps): update devdependency playwright to ^1.17.0 chore(deps): update devdependency playwright to ^1.17.1 Dec 2, 2021
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 55582db to e4891a3 Compare December 2, 2021 07:56
@renovate renovate bot changed the title chore(deps): update devdependency playwright to ^1.17.1 chore(deps): update all non-major dependencies Dec 3, 2021
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 5ec3e42 to 427da87 Compare December 7, 2021 03:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from fcff962 to 16d55e7 Compare December 20, 2021 16:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 16d55e7 to 75eea6f Compare December 21, 2021 15:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 302796a to 56dded4 Compare January 1, 2022 02:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 9e0a039 to 241938a Compare January 16, 2022 04:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from da27c7e to b772ed9 Compare January 22, 2022 10:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b772ed9 to 5134566 Compare March 7, 2022 12:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5134566 to 8535c1c Compare March 26, 2022 13:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 564578b to 1339e89 Compare July 22, 2024 19:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1339e89 to ca08ed6 Compare August 5, 2024 22:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from f631140 to 5f91853 Compare August 16, 2024 22:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5f91853 to 8bb22f4 Compare August 22, 2024 18:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from aea52f9 to 5de5dc9 Compare September 10, 2024 23:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from db21149 to 9399169 Compare September 16, 2024 16:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9399169 to ea83c7a Compare September 20, 2024 19:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ea83c7a to 5774f4b Compare October 8, 2024 13:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5774f4b to b9dc767 Compare October 16, 2024 10:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b9dc767 to 286fc00 Compare October 25, 2024 21:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 779e410 to 466ae4b Compare November 6, 2024 22:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d143d9e to 1a1dcf2 Compare November 19, 2024 22:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1a1dcf2 to 48c57b1 Compare December 10, 2024 04:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 48c57b1 to a4314d2 Compare December 25, 2024 01:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a4314d2 to bb7c146 Compare January 5, 2025 13:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bb7c146 to d5a65a1 Compare January 15, 2025 18:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from c7c9d2c to bbe29e4 Compare January 29, 2025 10:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bbe29e4 to 530d14c Compare January 31, 2025 18:35
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