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.17.7 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.8.3 age confidence
vite-plugin-vuetify (source) ^2.0.4 -> ^2.1.1 age confidence
vue-json-pretty (source) ^2.4.0 -> ^2.5.0 age confidence
vuetify (source) ^3.7.1 -> ^3.9.2 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.17.7

Compare Source

3.17.7 is the last patch release before v3.18.

✅ Upgrading

Our recommendation for upgrading is to run:

npx nuxt upgrade --dedupe

This will deduplicate your lockfile as well, and help ensure that you pull in updates from other dependencies that Nuxt relies on, particularly in the unjs ecosystem.

👉 Changelog

compare changes

🩹 Fixes
  • nuxt: Safe-guard extraPageMetaExtractionKeys (#​32510)
  • nuxt: Expose loadBuilder error cause (8f13ce3c2)
  • vite: Handle resolving string vite input (#​32527)
  • nuxt: Wrap only server components with island generic (#​32540)
  • vite: Ignore when client entry cannot be resolved (19a292f34)
  • nuxt: Normalize segment catchall pattern before checking for parent (#​32413)
  • nuxt: Update warning message to warn against null values (c1b83eab5)
  • nuxt: Ensure semver.satisfies returns true for pre-release versions (#​32574)
  • nuxt: Scroll to anchor if present when changing page without saved position (#​32376)
  • nuxt: Handle execute being passed to watch` (#​32591)
📖 Documentation
  • Update fetch types (#​32522)
  • Clarify that runtime env variables must start with NUXT_ (#​32223)
  • Fix key change behavior in useAsyncData and useFetch migration (#​32560)
  • Change return type of async data from undefined to null in v3 docs (#​32562)
  • Add section on custom hooks for Nuxt modules (#​32586)
  • Provide async keyword (#​32587)
  • Move augmenting hook types in hooks page (#​32595)
  • Add section about module loading order (#​32597)
✅ Tests
  • Reenable skipped unit tests (8fc9b9ee9)
  • Update test snapshot for generateTypes (c0855439d)
  • Improve page scanning test stability (84b96f3de)
  • Pass timeZone in to <NuxtTime> test (#​32558)
  • Add more useAsyncData + useFetch tests (#​32585)
  • Avoid hard-coding async-data keys (bfca95118)
❤️ Contributors

v3.17.6

Compare Source

3.17.6 is a regularly scheduled patch release.

✅ Upgrading

Our recommendation for upgrading is to run:

npx nuxt upgrade --dedupe

This will deduplicate your lockfile as well, and help ensure that you pull in updates from other dependencies that Nuxt relies on, particularly in the unjs ecosystem.

👉 Changelog

compare changes

🔥 Performance
  • nuxt: Decrease if checks when prerendering (#​32455)
🩹 Fixes
  • nuxt: Generate correct types for async data defaults based on nuxt.config (#​32324)
  • nuxt: Reload at base URL in nuxt:chunk-reload-immediate (#​32382)
  • nuxt: Use rollup to calculate island component filenames (#​32421)
  • nuxt: Append set-cookie headers in error handler (#​32483)
  • nuxt: Ensure asyncData runs if changing key while fetcher is running (#​32466)
  • nuxt: Handle pure hash link clicks with navigateTo (#​32393)
  • nuxt: Skip external <NuxtLink>'s custom on click handler (#​32499)
  • nuxt: Update component loader regexp for minified code (#​32298)
  • nuxt: Allow camelCase for lazy hydration attributes (#​32297)
  • nuxt: Respect inheritAttrs: false in createClientOnly fn (#​32323)
  • kit: Do not double-urlify file urls when resolving schema (#​32354)
  • nuxt: Align scroll behavior with page transition completion (#​32239)
  • nuxt: Set output.generatedCode.symbols for nitro build (#​32358)
  • nuxt: Lazily access runtimeConfig (#​32428)
💅 Refactors
  • vite: Migrate plugins internally to vite environments (#​32461)
📖 Documentation
  • Clarify where logging tag is displayed (#​32440)
  • Remove kit playground auto-import note (#​32415)
  • Remove webstorm warning (#​32513)
  • Migrate to h3js (#​32243)
  • Update the fetch clear function description (#​32287)
  • defineNuxtPlugin function documentation (#​32328)
  • Mention that <NuxtLink> encodes query params (#​32361)
  • Enhance documentation for Nuxt composables (#​32218)
  • Adjust wording to reduce confusion in lifecycle section (#​32503)
  • Improve useCookie example ([367b85405](https:/

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 6 times, most recently from 06d5ce0 to 54ca281 Compare June 4, 2025 10:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from a1d350b to fa3b492 Compare June 11, 2025 20:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 7bdced2 to 365e1cb Compare June 22, 2025 15:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 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 2 times, most recently from 4b893e2 to 397a9ed Compare July 18, 2025 07:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 397a9ed to a8efa81 Compare July 19, 2025 03:05
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