Skip to content

chore(deps): update all non-major dependencies #249

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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 1, 2023

This PR contains the following updates:

Package Change Age Confidence
@nuxtjs/stylelint-module ^5.2.0 -> ^5.2.1 age confidence
@types/node (source) ^20.16.2 -> ^20.19.9 age confidence
@vueuse/core (source) ^11.0.3 -> ^11.3.0 age confidence
@vueuse/nuxt (source) ^11.0.3 -> ^11.3.0 age confidence
eslint (source) ^8.57.0 -> ^8.57.1 age confidence
eslint-plugin-vue (source) ^9.27.0 -> ^9.33.0 age confidence
eslint-plugin-vuetify ^2.4.0 -> ^2.5.2 age confidence
lint-staged ^15.2.9 -> ^15.5.2 age confidence
nuxt (source) ^3.13.0 -> ^3.18.0 age confidence
postcss (source) ^8.4.41 -> ^8.5.6 age confidence
postcss-html ^1.7.0 -> ^1.8.0 age confidence
sass ^1.77.8 -> ^1.89.2 age confidence
stylelint-config-recommended-vue ^1.5.0 -> ^1.6.1 age confidence
typescript (source) ^5.5.4 -> ^5.9.2 age confidence
vite-plugin-vuetify (source) ^2.0.4 -> ^2.1.2 age confidence
vue-json-pretty (source) ^2.4.0 -> ^2.5.0 age confidence
vuetify (source) ^3.7.1 -> ^3.9.3 age confidence

Release Notes

nuxt-modules/stylelint (@​nuxtjs/stylelint-module)

v5.2.1

Compare Source

compare changes

🩹 Fixes
  • Usage plugin by builder (#​127)
📖 Documentation
  • Remove note for stylelint 16 (d831875)
  • Add builder type (#​126)
  • Use new nuxi module add command in installation (#​129)
🏡 Chore
✅ Tests
🤖 CI
❤️ Contributors
vueuse/vueuse (@​vueuse/core)

v11.3.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v11.2.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v11.1.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
eslint/eslint (eslint)

v8.57.1

Compare Source

Bug Fixes
  • a19072f fix: add logic to handle fixTypes in the lintText() method (#​18900) (Francesco Trotta)
  • 04c7188 fix: Don't lint same file multiple times (#​18899) (Francesco Trotta)
  • 87ec3c4 fix: do not throw when defining a global named __defineSetter__ (#​18898) (Francesco Trotta)
  • 60a1267 fix: Provide helpful error message for nullish configs (#​18889) (Milos Djermanovic)
  • a0dea8e fix: allow name in global ignores, fix --no-ignore for non-global (#​18875) (Milos Djermanovic)
  • 3836bb4 fix: do not crash on error in fs.walk filter (#​18886) (Milos Djermanovic)
  • 2dec349 fix: skip processor code blocks that match only universal patterns (#​18880) (Milos Djermanovic)
Documentation
Build Related
  • 35d366a build: Support updates to previous major versions (#​18870) (Milos Djermanovic)
Chores
vuejs/eslint-plugin-vue (eslint-plugin-vue)

v9.33.0

Compare Source

✨ Enhancements

🐛 Bug Fixes

Full Changelog: vuejs/eslint-plugin-vue@v9.32.0...v9.33.0

v9.32.0

Compare Source

✨ Enhancements

🐛 Bug Fixes

Full Changelog: vuejs/eslint-plugin-vue@v9.31.0...v9.32.0

v9.31.0

Compare Source

✨ Enhancements

🐛 Bug Fixes

⚙️ Updates

Full Changelog: vuejs/eslint-plugin-vue@v9.30.0...v9.31.0

v9.30.0

Compare Source

🐛 Bug Fixes

Full Changelog: vuejs/eslint-plugin-vue@v9.29.1...v9.30.0

v9.29.1

Compare Source

🐛 Bug Fixes

Full Changelog: vuejs/eslint-plugin-vue@v9.29.0...v9.29.1

v9.29.0

Compare Source

✨ Enhancements

New Rules
Others

⚙️ Updates

  • #​2528, #​2566 Added TypeScript declarations for configs.
  • #​2565 Added support for recognizing Vue components in .tsx files.

v9.28.0

Compare Source

✨ Enhancements

New Rules
New Features

🐛 Bug Fixes

⚙️ Updates

  • #​2498 Renamed flat config names for inspector.

Full Changelog: vuejs/eslint-plugin-vue@v9.27.0...v9.28.0

vuetifyjs/eslint-plugin-vuetify (eslint-plugin-vuetify)

v2.5.2

Compare Source

🔧 Bug Fixes

v2.5.1

Compare Source

🔧 Bug Fixes

v2.5.0

Compare Source

🚀 Features
🔧 Bug Fixes
lint-staged/lint-staged (lint-staged)

v15.5.2

Compare Source

Patch Changes

v15.5.1

Compare Source

Patch Changes
  • #​1533 5d53534 Thanks @​iiroj! - Improve listing of staged files so that lint-staged doesn't crash when encountering an uninitialized submodule. This should result in less errors like:

    ✖ Failed to get staged files!
    

v15.5.0

Compare Source

Minor Changes
  • #​1526 630af5f Thanks @​iiroj! - Lint-staged no longer resets to the original state when preventing an empty git commit. This happens when your configured tasks reset all the staged changes, typically when trying to commit formatting changes which conflict with your linter setup like ESLint or Prettier.
Example with Prettier

By default Prettier prefers double quotes.

Previously
  1. Stage file.js with only double quotes " changed to '
  2. Run git commit -am "I don't like double quotes"
  3. Lint-staged runs prettier --write file.js, converting all the ' back to "
  4. Because there are now no changes, lint-staged fails, cancels the commit, and resets back to the original state
  5. Commit was not done, original state is restored and single quotes ' are staged
Now
  1. Stage file.js with only double-quotes " changed to '
  2. Run git commit -am "I don't like double quotes"
  3. Lint-staged runs prettier --write file.js, converting all the ' back to "
  4. Because there are now no changes, lint-staged fails and cancels the commit
  5. Commit was not done, and there are no staged changes

v15.4.3

Compare Source

Patch Changes
  • #​1512 cbfed1d Thanks @​tarik02! - Adjust TypeScript types for the default export so that it can be used as a value without error TS2693.

v15.4.2

Compare Source

Patch Changes
  • #​1509 8827ebf Thanks @​iiroj! - Change lint-staged's dependencies to use caret (^) ranges instead of tilde (~). This makes it easier for package managers to perform dependency management when minor-level updates are also permitted instead of just patch-level.

v15.4.1

Compare Source

Patch Changes

v15.4.0

Compare Source

Minor Changes
  • #​1500 a8ec1dd Thanks @​iiroj! - Lint-staged now provides TypeScript types for the configuration and main Node.js API. You can use the JSDoc syntax in your JS configuration files:

    /**
     * @​filename: lint-staged.config.js
     * @​type {import('lint-staged').Configuration}
     */
    export default {
      '*': 'prettier --write',
    }

    It's also possible to use the .ts file extension for the configuration if your Node.js version supports it. The --experimental-strip-types flag was introduced in Node.js v22.6.0 and unflagged in v23.6.0, enabling Node.js to execute TypeScript files without additional configuration.

    export NODE_OPTIONS="--experimental-strip-types"
    
    npx lint-staged --config lint-staged.config.ts
Patch Changes

v15.3.0

Compare Source

Minor Changes
  • #​1495 e69da9e Thanks @​iiroj! - Added more info to the debug logs so that "environment" info doesn't need to be added separately to GitHub issues.

  • #​1493 fa0fe98 Thanks @​iiroj! - Added more help messages around the automatic git stash that lint-staged creates as a backup (by default). The console output also displays the short git hash of the stash so that it's easier to recover lost files in case some fatal errors are encountered, or the process is killed before completing.

    For example:

    % npx lint-staged
    ✔ Backed up original state in git stash (20addf8)
    ✔ Running tasks for staged files...
    ✔ Applying modifications from tasks...
    ✔ Cleaning up temporary files...
    

    where the backup can be seen with git show 20addf8, or git stash list:

    % git stash list
    stash@{0}: lint-staged automatic backup (20addf8)
    

v15.2.11

Compare Source

Patch Changes
  • #​1484 bcfe309 Thanks @​wormsik! - Escape paths containing spaces when using the "shell" option.

  • #​1487 7dd8caa Thanks @​iiroj! - Do not treat submodule root paths as "staged files". This caused lint-staged to fail to a Git error when only updating the revision of a submodule.

v15.2.10

Compare Source

Patch Changes
nuxt/nuxt (nuxt)

v3.18.0

Compare Source

3.18.0 is the next minor release.

👀 Highlights

A huge thank you to everyone who's been a part of this release, which is mostly about backporting features + bugfixes from Nuxt v4.

Over the next six months, we'll continue backporting compatible v4 features and bug fixes, so please keep the feedback coming! ❤️

🧪 Lazy Hydration Macros

Building on the delayed hydration support from v3.16, we now support lazy hydration macros (#​31192)! These provide a more ergonomic way to control component hydration:

<script setup lang="ts">
const LazyHydrationMyComponent = defineLazyHydrationComponent(
  'visible',
  () => import('./components/MyComponent.vue')
)
</script>
<template>
  <div>
    <!-- 
      Hydration will be triggered when
      the element(s) is 100px away from entering the viewport.
    -->
    <LazyHydrationMyComponent :hydrate-on-visible="{ rootMargin: '100px' }" />
  </div>
</template>

These macros make it possible to use Nuxt's lazy hydration utilities alongside explicit component imports.

♿️ Accessibility Improvements

We've enhanced accessibility by including <NuxtRouteAnnouncer> in the built-in app.vue (#​32621). This means page changes will be announced to screen readers, making navigation more accessible for users with visual impairments. (This only applies if you do not have an app.vue in your project. If you do, please keep <NuxtRouteAnnouncer> in your app.vue!)

🛠️ Enhanced Development Experience
Chrome DevTools Workspace Integration

We've added Chrome DevTools workspace integration (#​32084), allowing you to edit your Nuxt source files directly from Chrome DevTools. This creates a better debugging experience where changes made in DevTools are reflected in your actual source files.

Better Component Type Safety

Component type safety has been improved with:

  • Typed slots for <ClientOnly> and <DevOnly> (#​32707) - better IntelliSense and error checking
  • Exported <NuxtTime> prop types (#​32547) - easier to extend and customize
New Auto-Import: onWatcherCleanup

The onWatcherCleanup function from vue is now available as an auto-import (#​32396), making it easier to clean up watchers and prevent memory leaks:

const { data } = useAsyncData('users', fetchUsers)

watch(data, (newData) => {
  const interval = setInterval(() => {
    // Some periodic task
  }, 1000)
  
  // Clean up when the watcher is stopped
  onWatcherCleanup(() => {
    clearInterval(interval)
  })
})
📊 Observability Enhancements

Page routes are now exposed to Nitro for observability (#​32617), enabling better monitoring and analytics integration with supported platforms. This allows observability tools to track page-level metrics more effectively.

🔧 Module Development Improvements

Module authors get several quality-of-life improvements:

Simplified Server Imports

The addServerImports kit utility now supports single imports (#​32289), making it easier to add individual server utilities:

// Before: had to wrap in array
addServerImports([{ from: 'my-package', name: 'myUtility' }])

// Now: can pass directly
addServerImports({ from: 'my-package', name: 'myUtility' })
TypeScript Configuration

Modules can now add to typescript.hoist (#​32601), giving them more control over TypeScript configuration and type generation.

⚡️ Performance Improvements

We've made several performance optimizations:

  • Improved Vite-node communication via internal socket (#​32417) for faster development builds
  • Migration to oxc-walker (#​32250) and oxc for onPrehydrate transforms (#​32045) for faster code transformations
🐛 Bug Fixes

This release also includes several important fixes:

  • Improved data fetching: When computed keys change, old data is now properly retained (#​32616)
  • Better scroll behavior: scrollBehaviorType is now only used for hash scrolling (#​32622)
  • Fixed directory aliases: Added trailing slashes to some directory aliases for better consistency (#​32755)
✅ 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: Expose page routes to nitro for o11y (#​32617)
  • nuxt: Export <NuxtTime> prop types (#​32547)
  • nuxt: Add integration with chrome devtools workspaces (#​32084)
  • kit: Support single import in addServerImports (#​32289)
  • nuxt: Add onWatcherCleanup to imports presets (#​32396)
  • nuxt: Add route announcer to default app.vue (#​32621)
  • nuxt: Support lazy hydration macros (#​31192)
🔥 Performance
  • vite: Communicate with vite-node via internal socket (#​32417)
  • kit: Update env expansion regex to match nitro (#​30766)
🩹 Fixes
  • nuxt: Allow modules to add to typescript.hoist (#​32601)
  • nuxt: Retain old data when computed key changes (#​32616)
  • nuxt: Only use scrollBehaviorType for hash scrolling (#​32622)
  • nuxt: Add missing async (fd312af03)
  • nuxt: Fix transform/minify types + bump oxc-transform (d2ba19963)
  • nuxt: Provide typed slots for <ClientOnly> and <DevOnly> (#​32707)
  • kit,nuxt,schema: Add trailing slash to some dir aliases (#​32755)
  • nuxt: Include source base url for remote islands (#​32772)
  • vite: Use vite node server to transform requests (#​32791)
  • kit: Use mlly to parse module paths (

Configuration

📅 Schedule: Branch creation - "after 10am on monday" (UTC), 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 force-pushed the renovate/all-minor-patch branch 7 times, most recently from f6cd2f4 to e3e1ac7 Compare May 7, 2023 16:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 8c3cb5e to 3e0d33b Compare May 13, 2023 16:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from fcd0015 to 80e5535 Compare May 22, 2023 17:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from e174744 to 936e50b Compare May 28, 2023 10:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 3d65e4d to b80f789 Compare June 9, 2025 19:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 6d5c3f3 to 7bdced2 Compare June 18, 2025 12:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from a84c6d8 to 503d546 Compare June 28, 2025 08:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 5913c3b to ff72aef Compare July 8, 2025 12:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 7b55be7 to 720c05d Compare July 15, 2025 13:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 397a9ed to a8efa81 Compare July 19, 2025 03:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from d751af3 to 4c104b6 Compare July 31, 2025 11:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4c104b6 to c060411 Compare July 31, 2025 22:06
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
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy