Update dependency eslint-plugin-vue to v10 #174

Open
renovate-bot wants to merge 1 commits from renovate/eslint-plugin-vue-10.x into main
Collaborator

This PR contains the following updates:

Package Type Update Change
eslint-plugin-vue (source) devDependencies major 9.33.0 -> 10.0.0

Release Notes

vuejs/eslint-plugin-vue (eslint-plugin-vue)

v10.0.0

Compare Source

💥 Breaking changes

Enhancements

⚙️ Updates

  • #​2171 Updated resources.
  • #​2675 Deprecated Vue 2 only rules. They will be removed in eslint-plugin-vue v11.

Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.33.0...v10.0.0


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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [eslint-plugin-vue](https://eslint.vuejs.org) ([source](https://github.com/vuejs/eslint-plugin-vue)) | devDependencies | major | [`9.33.0` -> `10.0.0`](https://renovatebot.com/diffs/npm/eslint-plugin-vue/9.33.0/10.0.0) | --- ### Release Notes <details> <summary>vuejs/eslint-plugin-vue (eslint-plugin-vue)</summary> ### [`v10.0.0`](https://github.com/vuejs/eslint-plugin-vue/releases/tag/v10.0.0) [Compare Source](https://github.com/vuejs/eslint-plugin-vue/compare/v9.33.0...v10.0.0) #### 💥 Breaking changes - [#&#8203;2630](https://github.com/vuejs/eslint-plugin-vue/issues/2630) Changed Versioning Policy: - Allow minor versions of this plugin to enhance the checks for new features in Vue and Nuxt. - Allow updating deprecated/reserved HTML+SVG element tag names in minor versions, see [#&#8203;2171](https://github.com/vuejs/eslint-plugin-vue/issues/2171). - [#&#8203;2645](https://github.com/vuejs/eslint-plugin-vue/issues/2645) Removed deprecated rules (see [removed rules](https://eslint.vuejs.org/rules/#removed)). - [#&#8203;2669](https://github.com/vuejs/eslint-plugin-vue/issues/2669) Dropped support for old versions of ESLint and Node.js. New minimum requirements: - Node.js: `^18.18.0 || ^20.9.0 || >=21.1.0` - ESLint: `^8.57.0 || ^9.0.0` - Updated configs: - [#&#8203;2627](https://github.com/vuejs/eslint-plugin-vue/issues/2627) Added [`vue/block-order`](https://eslint.vuejs.org/rules/block-order.html) rule to recommended configs (replaces the removed `vue/component-tags-order` rule). - [#&#8203;2628](https://github.com/vuejs/eslint-plugin-vue/issues/2628) Added [`vue/no-deprecated-delete-set`](https://eslint.vuejs.org/rules/no-deprecated-delete-set.html) rule to vue3-essential config. - [#&#8203;2629](https://github.com/vuejs/eslint-plugin-vue/issues/2629) Added [`vue/no-deprecated-model-definition`](https://eslint.vuejs.org/rules/no-deprecated-model-definition.html) rule to vue3-essential config. - [#&#8203;2640](https://github.com/vuejs/eslint-plugin-vue/issues/2640) Added [`vue/no-required-prop-with-default`](https://eslint.vuejs.org/rules/no-required-prop-with-default.html) rule to recommended configs. - [#&#8203;2653](https://github.com/vuejs/eslint-plugin-vue/issues/2653) Added [`vue/valid-define-options`](https://eslint.vuejs.org/rules/valid-define-options.html) rule to vue3-essential config. - [#&#8203;2674](https://github.com/vuejs/eslint-plugin-vue/issues/2674) Removed globals from configs. - [#&#8203;2648](https://github.com/vuejs/eslint-plugin-vue/issues/2648) Renamed `.eslintrc` configs (to match `eslint.config.js` config names; see PR for comparison). - [#&#8203;2668](https://github.com/vuejs/eslint-plugin-vue/issues/2668) Changed `.eslintrc` base config so that [vue-eslint-parser](https://github.com/vuejs/vue-eslint-parser) is only used for `.vue` files. - [#&#8203;2670](https://github.com/vuejs/eslint-plugin-vue/issues/2670) Changed [vue-eslint-parser](https://github.com/vuejs/vue-eslint-parser) to peer dependency. - [#&#8203;2697](https://github.com/vuejs/eslint-plugin-vue/issues/2697) Upgraded [vue-eslint-parser](https://github.com/vuejs/vue-eslint-parser) to v10. - This includes https://github.com/vuejs/vue-eslint-parser/pull/195, which should make the parser much faster for large TypeScript projects :zap: - [#&#8203;2153](https://github.com/vuejs/eslint-plugin-vue/issues/2153) Added `slots` and `expose` to the default order of [`vue/order-in-components`](https://eslint.vuejs.org/rules/order-in-components.html) rule. - [#&#8203;2626](https://github.com/vuejs/eslint-plugin-vue/issues/2626) Removed legacy option from [`vue/custom-event-name-casing`](https://eslint.vuejs.org/rules/custom-event-name-casing.html) rule. - [#&#8203;2655](https://github.com/vuejs/eslint-plugin-vue/issues/2655) Removed unused `runOutsideVue` option from [`vue/sort-keys`](https://eslint.vuejs.org/rules/sort-keys.html) rule. - [#&#8203;2652](https://github.com/vuejs/eslint-plugin-vue/issues/2652) Removed `setup-compiler-macros` environments. #### ✨ Enhancements - [#&#8203;2693](https://github.com/vuejs/eslint-plugin-vue/issues/2693) Improved type resolution for generic types and improved the rules for checking type-only macros. - [#&#8203;2684](https://github.com/vuejs/eslint-plugin-vue/issues/2684) Added [`vue/no-import-compiler-macros`](https://eslint.vuejs.org/rules/no-import-compiler-macros.html) rule that disallows importing Vue compiler macros. - [#&#8203;2694](https://github.com/vuejs/eslint-plugin-vue/issues/2694) Added `except` option to [`vue/prefer-true-attribute-shorthand`](https://eslint.vuejs.org/rules/prefer-true-attribute-shorthand.html) rule. - [#&#8203;2311](https://github.com/vuejs/eslint-plugin-vue/issues/2311) Improved the plugin to check for objects declared with Nuxt3 [`defineNuxtComponent()`](https://nuxt.com/docs/api/utils/define-nuxt-component). #### ⚙️ Updates - [#&#8203;2171](https://github.com/vuejs/eslint-plugin-vue/issues/2171) Updated resources. - [#&#8203;2675](https://github.com/vuejs/eslint-plugin-vue/issues/2675) Deprecated Vue 2 only rules. They will be removed in eslint-plugin-vue v11. **Full Changelog**: https://github.com/vuejs/eslint-plugin-vue/compare/v9.33.0...v10.0.0 </details> --- ### 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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xNDIuNyIsInVwZGF0ZWRJblZlciI6IjM4LjE0Mi43IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
renovate-bot added 1 commit 2025-03-08 06:36:12 +01:00
Update dependency eslint-plugin-vue to v10
Some checks failed
renovate/artifacts Artifact file update failure
renovate/stability-days Updates have met minimum release age requirement
continuous-integration/drone/pr Build is failing
56ce78b7f3
Author
Collaborator

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm.
npm error code ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: @vue/eslint-config-standard@8.0.1
npm error Found: eslint-plugin-vue@10.0.0
npm error node_modules/eslint-plugin-vue
npm error   dev eslint-plugin-vue@"10.0.0" from the root project
npm error
npm error Could not resolve dependency:
npm error peer eslint-plugin-vue@"^9.2.0" from @vue/eslint-config-standard@8.0.1
npm error node_modules/@vue/eslint-config-standard
npm error   dev @vue/eslint-config-standard@"8.0.1" from the root project
npm error
npm error Conflicting peer dependency: eslint-plugin-vue@9.33.0
npm error node_modules/eslint-plugin-vue
npm error   peer eslint-plugin-vue@"^9.2.0" from @vue/eslint-config-standard@8.0.1
npm error   node_modules/@vue/eslint-config-standard
npm error     dev @vue/eslint-config-standard@"8.0.1" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /tmp/renovate/cache/others/npm/_logs/2025-03-10T12_36_16_153Z-eresolve-report.txt
npm error A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2025-03-10T12_36_16_153Z-debug-0.log

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: package-lock.json ``` npm warn Unknown env config "store". This will stop working in the next major version of npm. npm error code ERESOLVE npm error ERESOLVE could not resolve npm error npm error While resolving: @vue/eslint-config-standard@8.0.1 npm error Found: eslint-plugin-vue@10.0.0 npm error node_modules/eslint-plugin-vue npm error dev eslint-plugin-vue@"10.0.0" from the root project npm error npm error Could not resolve dependency: npm error peer eslint-plugin-vue@"^9.2.0" from @vue/eslint-config-standard@8.0.1 npm error node_modules/@vue/eslint-config-standard npm error dev @vue/eslint-config-standard@"8.0.1" from the root project npm error npm error Conflicting peer dependency: eslint-plugin-vue@9.33.0 npm error node_modules/eslint-plugin-vue npm error peer eslint-plugin-vue@"^9.2.0" from @vue/eslint-config-standard@8.0.1 npm error node_modules/@vue/eslint-config-standard npm error dev @vue/eslint-config-standard@"8.0.1" from the root project npm error npm error Fix the upstream dependency conflict, or retry npm error this command with --force or --legacy-peer-deps npm error to accept an incorrect (and potentially broken) dependency resolution. npm error npm error npm error For a full report see: npm error /tmp/renovate/cache/others/npm/_logs/2025-03-10T12_36_16_153Z-eresolve-report.txt npm error A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2025-03-10T12_36_16_153Z-debug-0.log ```
renovate-bot force-pushed renovate/eslint-plugin-vue-10.x from 56ce78b7f3 to ae5cdc9f51 2025-03-10 13:36:21 +01:00 Compare
Some checks failed
renovate/artifacts Artifact file update failure
renovate/stability-days Updates have met minimum release age requirement
continuous-integration/drone/pr Build is failing
Required
Details
This pull request is blocked because it's outdated.
This branch is out-of-date with the base branch
You are not authorized to merge this pull request.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/eslint-plugin-vue-10.x:renovate/eslint-plugin-vue-10.x
git checkout renovate/eslint-plugin-vue-10.x
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: wtf-eg/digitale-online-offline-registration#174
No description provided.