chore(deps): update dependency eslint-plugin-vue to v10 #308

Merged
pleshevskiy merged 1 commit from renovate/eslint-plugin-vue-10.x into main 2025-03-26 02:36:57 +03:00
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. You may need to configure them manually now, see <https://eslint.org/docs/latest/use/configure/language-options#predefined-global-variables>. - [#&#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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNTMuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE1My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
RenovateBot added 1 commit 2025-03-08 10:13:29 +03:00
pleshevskiy was assigned by RenovateBot 2025-03-08 10:13:30 +03:00
RenovateBot force-pushed renovate/eslint-plugin-vue-10.x from 666fe4a20f to 42399770bd 2025-03-08 11:09:56 +03:00 Compare
RenovateBot force-pushed renovate/eslint-plugin-vue-10.x from 42399770bd to 1b12e023b2 2025-03-09 12:08:46 +03:00 Compare
RenovateBot force-pushed renovate/eslint-plugin-vue-10.x from 1b12e023b2 to af7c76065a 2025-03-11 01:32:29 +03:00 Compare
RenovateBot force-pushed renovate/eslint-plugin-vue-10.x from af7c76065a to 8ef916cd1f 2025-03-25 01:07:58 +03:00 Compare
pleshevskiy merged commit dcd23040ff into main 2025-03-26 02:36:57 +03:00
pleshevskiy deleted branch renovate/eslint-plugin-vue-10.x 2025-03-26 02:36:57 +03:00
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: pleshevskiy/pleshevski.ru#308
No description provided.