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 #33

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 24, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@changesets/cli (source) ^2.26.1 -> ^2.28.1 age adoption passing confidence
@emotion/css (source) ^11.10.6 -> ^11.13.5 age adoption passing confidence
@emotion/server (source) ^11.10.0 -> ^11.11.0 age adoption passing confidence
@nuxt/kit (source) ^3.4.2 -> ^3.16.0 age adoption passing confidence
@nuxt/module-builder ^0.3.0 -> ^0.8.4 age adoption passing confidence
@nuxt/schema (source) ^3.4.2 -> ^3.16.0 age adoption passing confidence
@nuxt/test-utils ^3.4.2 -> ^3.17.2 age adoption passing confidence
@nuxtjs/eslint-config-typescript ^12.0.0 -> ^12.1.0 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) ^5.59.0 -> ^5.62.0 age adoption passing confidence
eslint (source) ^8.39.0 -> ^8.57.1 age adoption passing confidence
eslint-plugin-promise ^6.1.1 -> ^6.6.0 age adoption passing confidence
nuxt (source) ^3.4.2 -> ^3.16.0 age adoption passing confidence
vitest (source) ^0.30.1 -> ^0.34.6 age adoption passing confidence

Release Notes

changesets/changesets (@​changesets/cli)

v2.28.1

Compare Source

Patch Changes

v2.28.0

Compare Source

Minor Changes
Patch Changes

v2.27.12

Compare Source

Patch Changes

v2.27.11

Compare Source

Patch Changes

v2.27.10

Compare Source

Patch Changes

v2.27.9

Compare Source

Patch Changes

v2.27.8

Compare Source

Patch Changes

v2.27.7

Compare Source

Patch Changes

v2.27.6

Compare Source

Patch Changes

v2.27.5

Compare Source

Patch Changes

v2.27.4

Compare Source

Patch Changes

v2.27.3

Compare Source

Patch Changes
  • #​1357 18c966a Thanks @​Andarist! - Fixed an issue with changeset status executed without since argument. It should now correctly use the configured base branch as the default value.

v2.27.2

Compare Source

Patch Changes

v2.27.1

Compare Source

Patch Changes
  • #​1267 86cfff1 Thanks @​Andarist! - Make ./bin.js available through package.json#exports to fix compatibility with changesets/action.

v2.27.0

Compare Source

Minor Changes
Patch Changes

v2.26.2

Compare Source

Patch Changes
emotion-js/emotion (@​emotion/css)

v11.13.5

Compare Source

Patch Changes

v11.13.4

Compare Source

Patch Changes

v11.13.0

Compare Source

Minor Changes
  • #​3198 d8ff8a5 Thanks @​Andarist! - Migrated away from relying on process.env.NODE_ENV checks to differentiate between production and development builds.

    Development builds (and other environment-specific builds) can be used by using proper conditions (see here). Most modern bundlers/frameworks already preconfigure those for the user so no action has to be taken.

    Default files should continue to work in all environments.

  • #​3215 a9f6912 Thanks @​Andarist! - Added edge-light and workerd conditions to package.json manifest to better serve users using Vercel Edge and Cloudflare Workers.

Patch Changes

v11.12.0

Compare Source

Minor Changes
  • #​2815 65a1eea Thanks @​srmagura! - Automatic labeling at runtime is now an opt-in feature. Define globalThis.EMOTION_RUNTIME_AUTO_LABEL = true before Emotion gets initialized to enable it.
Patch Changes

v11.11.2

Compare Source

Patch Changes
  • #​3057 8f665262 Thanks @​emmatown! - Fix @emotion/css/create-instance types in TypeScript module resolution modes that support the exports field

v11.11.0

Compare Source

Minor Changes
Patch Changes

v11.10.8

Compare Source

Patch Changes
nuxt/nuxt (@​nuxt/kit)

v3.16.0

Compare Source

👀 Highlights

There's a lot in this one!

⚡️ A New New Nuxt

Say hello to create-nuxt, a new tool for starting Nuxt projects (big thanks to @​devgar for donating the package name)!

It's a streamlined version of nuxi init - just a sixth of the size and bundled as a single file with all dependencies inlined, to get you going as fast as possible.

Starting a new project is as simple as:

npm create nuxt

screenshot of create nuxt app

Special thanks to @​cmang for the beautiful ASCII-art. ❤️

Want to learn more about where we're headed with the Nuxt CLI? Check out our roadmap here, including our plans for an interactive modules selector.

🚀 Unhead v2

We've upgraded to unhead v2, the engine behind Nuxt's <head> management. This major version removes deprecations and improves how context works:

  • For Nuxt 3 users, we're shipping a legacy compatibility build so nothing breaks
  • The context implementation is now more direct via Nuxt itself
// Nuxt now re-exports composables while properly resolving the context
export function useHead(input, options = {}) {
  const unhead = injectHead(options.nuxt)
  return head(input, { head: unhead, ...options })
}

If you're using Unhead directly in your app, keep in mind:

  1. Import from Nuxt's auto-imports or #app/composables/head instead of @unhead/vue
  2. Importing directly from @unhead/vue might lose async context

Don't worry though - we've maintained backward compatibility in Nuxt 3, so most users won't need to change anything!

If you've opted into compatibilityVersion: 4, check out our upgrade guide for additional changes.

🔧 Devtools v2 Upgrade

Nuxt Devtools has leveled up to v2 (#​30889)!

You'll love the new features like custom editor selection, Discovery.js for inspecting resolved configs (perfect for debugging), the return of the schema generator, and slimmer dependencies.

One of our favorite improvements is the ability to track how modules modify your Nuxt configuration - giving you X-ray vision into what's happening under the hood.

👉 Discover all the details in the Nuxt DevTools release notes.

⚡️ Performance Improvements

We're continuing to make Nuxt faster, and there are a number of improvements in v3.16:

  1. Using exsolve for module resolution (#​31124) along with the rest of the unjs ecosystem (nitro, c12, pkg-types, and more) - which dramatically speeds up module resolution
  2. Smarter module resolution paths (#​31037) - prioritizes direct imports for better efficiency
  3. Eliminated duplicated Nitro alias resolution (#​31088) - leaner file handling
  4. Streamlined loadNuxt by skipping unnecessary resolution steps (#​31176) - faster startups
  5. Adopt oxc-parser for parsing in Nuxt plugins (#​30066)

All these speed boosts happen automatically - no configuration needed!

Shout out to CodSpeed with Vitest benchmarking to measure these improvements in CI - it has been really helpful.

To add some anecdotal evidence, my personal site at roe.dev loads 32% faster with v3.16, and nuxt.com is 28% faster. I hope you see similar results! ⚡️

🕰️ Delayed Hydration Support

We're very pleased to bring you native delayed/lazy hydration support (#​26468)! This lets you control exactly when components hydrate, which can improve initial load performance and time-to-interactive. We're leveraging Vue's built-in hydration strategies - check them out in the Vue docs.

<template>
  <!-- Hydrate when component becomes visible in viewport -->
  <LazyExpensiveComponent hydrate-on-visible />
  
  <!-- Hydrate when browser is idle -->
  <LazyHeavyComponent hydrate-on-idle />
  
  <!-- Hydrate on interaction (mouseover in this case) -->
  <LazyDropdown hydrate-on-interaction="mouseover" />
  
  <!-- Hydrate when media query matches -->
  <LazyMobileMenu hydrate-on-media-query="(max-width: 768px)" />
  
  <!-- Hydrate after a specific delay in milliseconds -->
  <LazyFooter :hydrate-after="2000" />
</template>

You can also listen for when hydration happens with the @hydrated event:

<LazyComponent hydrate-on-visible @&#8203;hydrated="onComponentHydrated" />

Learn more about lazy hydration in our components documentation.

🧩 Advanced Pages Configuration

You can now fine-tune which files Nuxt scans for pages (#​31090), giving you more control over your project structure:

export default defineNuxtConfig({
  pages: {
    // Filter specific files or directories
    pattern: ['**/*.vue'],
  }
})
🔍 Enhanced Debugging

We've made debugging with the debug option more flexible! Now you can enable just the debug logs you need (#​30578):

export default defineNuxtConfig({
  debug: {
    // Enable specific debugging features
    templates: true,
    modules: true,
    watchers: true,
    hooks: {
      client: true,
      server: true,
    },
    nitro: true,
    router: true,
    hydration: true,
  }
})

Or keep it simple with debug: true to enable all these debugging features.

🎨 Decorators Support

For the decorator fans out there (whoever you are!), we've added experimental support (#​27672). As with all experimental features, feedback is much appreciated.

export default defineNuxtConfig({
  experimental: {
    decorators: true
  }
})
function something (_method: () => unknown) {
  return () => 'decorated'
}

class SomeClass {
  @&#8203;something
  public someMethod () {
    return 'initial'
  }
}

const value = new SomeClass().someMethod()
// returns 'decorated'
📛 Named Layer Aliases

It's been much requested, and it's here! Auto-scanned local layers (from your ~~/layers directory) now automatically create aliases. You can access your ~~/layers/test layer via #layers/test (#​30948) - no configuration needed.

If you want named aliases for other layers, you can add a name to your layer configuration:

export default defineNuxtConfig({
  $meta: {
    name: 'example-layer',
  },
})

This creates the alias #layers/example-layer pointing to your layer - making imports cleaner and more intuitive.

🧪 Error Handling Improvements

We've greatly improved error messages and source tracking (#​31144):

  1. Better warnings for undefined useAsyncData calls with precise file location information
  2. Error pages now appear correctly on island page errors (#​31081)

Plus, we're now using Nitro's beautiful error handling (powered by youch) to provide more helpful error messages in the terminal, complete with stacktrace support.

Nitro now also automatically applies source maps without requiring extra Node options, and we set appropriate security headers when rendering error pages.

📦 Module Development Improvements

For module authors, we've added the ability to augment Nitro types with addTypeTemplate (#​31079):

// Inside your Nuxt module
export default defineNuxtModule({
  setup(options, nuxt) {
    addTypeTemplate({
      filename: 'types/my-module.d.ts',
      getContents: () => `
        declare module 'nitropack' {
          interface NitroRouteConfig {
            myCustomOption?: boolean
          }
        }
      `
    }, { nitro: true })
  }
})
⚙️ Nitro v2.11 Upgrade

We've upgraded to Nitro v2.11. There are so many improvements - more than I can cover in these brief release notes.

👉 Check out all the details in the Nitro v2.11.0 release notes.

📦 New unjs Major Versions

This release includes several major version upgrades from the unjs ecosystem, focused on performance and smaller bundle sizes through ESM-only distributions:

  • unenv upgraded to v2 (full rewrite)
  • db0 upgraded to v0.3 (ESM-only, native node:sql, improvements)
  • ohash upgraded to v2 (ESM-only, native node:crypto support, much faster)
  • untyped upgraded to v2 (ESM-only, smaller install size)
  • unimport upgraded to v4 (improvements)
  • c12 upgraded to v3 (ESM-only)
  • pathe upgraded to v2 (ESM-only)
  • cookie-es upgraded to v2 (ESM-only)
  • esbuild upgraded to v0.25
  • chokidar upgraded to v4
✅ Upgrading

As usual, our recommendation for upgrading is to run:

npx nuxi@latest upgrade --dedupe

This refreshes your lockfile and pulls in all the latest dependencies that Nuxt relies on, especially from the unjs ecosystem.

👉 Changelog

compare changes

🚀 Enhancements
  • nuxt: Upgrade @nuxt/devtools to v2 (#​30889)
  • nuxt: Granular debug options (#​30578)
  • nuxt: Add type hints for NuxtPage (#​30704)
  • nuxt: Support tracking changes to nuxt options by modules (#​30555)
  • nuxt: Allow disabling auto-imported polyfills (#​30332)
  • schema: Add runtime + internal type validation (#​30844)
  • kit,nuxt,schema: Support experimental decorators syntax (#​27672)
  • kit,nuxt: Allow multiple nuxts to run in one process (#​30510)
  • kit: Add named layer aliases (#​30948)
  • kit,nuxt,vite: directoryToURL to normalise paths (#​30986)
  • nuxt: Allow forcing start/set in loading indicator (#​30989)
  • nuxt: Allow specifying glob patterns for scanning pages/ (#​31090)
  • nuxt: Add types for default `NuxtLin

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.

@renovate renovate bot changed the title chore(deps): update devdependency @typescript-eslint/eslint-plugin to ^5.59.1 chore(deps): update all non-major dependencies Apr 28, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 5523f1a to 72e1cf0 Compare May 3, 2023 21:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from f2b36bc to 3c37859 Compare May 8, 2023 21:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 49584a3 to c2ce777 Compare May 21, 2023 17:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 84f23e1 to 5a0b4c7 Compare May 29, 2023 19:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from d2918c1 to c66334c Compare June 6, 2023 02:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from bceba55 to 789d2ff Compare June 12, 2023 18:27
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from c5f53f1 to 9e613d2 Compare June 19, 2023 17:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 9b5765e to e669e81 Compare September 16, 2024 16:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 24d2392 to 7afef3e Compare October 7, 2024 13:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7afef3e to 37a4f5b Compare October 19, 2024 22:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from cd46bca to f4d26e1 Compare November 7, 2024 20:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 1b6d997 to 04f1807 Compare November 20, 2024 10:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 177d649 to e0e407c Compare December 6, 2024 14:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 6a94615 to b875928 Compare December 25, 2024 01:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 0094aac to cd6859e Compare January 12, 2025 00:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b32e7e5 to c5f8419 Compare January 15, 2025 18:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from ffe5591 to 94e3be3 Compare January 29, 2025 10:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from a48a2eb to 0b14aa9 Compare February 21, 2025 13:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 775b45f to 914557e Compare March 7, 2025 16:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 914557e to 38890ff Compare March 8, 2025 21:02
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