[PR #189] [MERGED] chore(deps-dev): bump eslint-plugin-vue from 9.12.0 to 9.13.0 in /web #237

Closed
opened 2026-03-03 16:37:25 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/NdoleStudio/httpsms/pull/189
Author: @dependabot[bot]
Created: 5/22/2023
Status: Merged
Merged: 5/22/2023
Merged by: @AchoArnold

Base: mainHead: dependabot/npm_and_yarn/web/eslint-plugin-vue-9.13.0


📝 Commits (1)

  • b004b5b chore(deps-dev): bump eslint-plugin-vue from 9.12.0 to 9.13.0 in /web

📊 Changes

3 files changed (+64 additions, -19 deletions)

View changed files

📝 web/package-lock.json (+54 -9)
📝 web/package.json (+1 -1)
📝 web/yarn.lock (+9 -9)

📄 Description

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps eslint-plugin-vue from 9.12.0 to 9.13.0.

Release notes

Sourced from eslint-plugin-vue's releases.

v9.13.0

Support for Vue 3.3 "Rurouni Kenshin" 🎉
see https://blog.vuejs.org/posts/vue-3-3

Enhancements

New Rules

Other Changes

⚙️ Updates

Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.12.0...v9.13.0

Commits
  • b00faf3 9.13.0
  • 9abf469 Add support for imported types in SFC macros (#2134)
  • 4c5fe34 Upgrade to vue-eslint-parser v9.3 that supports Vue 3.3. (#2170)
  • 659a50f add FUNDING.yml
  • 2ee0f4b Add vue/valid-define-options rule (#2165)
  • dd96780 Add vue/prefer-define-options rule (#2167)
  • 6b3736b Add support for defineOptions to `vue/padding-lines-in-component-definition...
  • 28db555 Add support for defineOptions and defineSlots to `vue/no-unsupported-feat...
  • a9e0a49 Add support for defineOptions to vue/no-restricted-component-options rule...
  • 70b88a2 Add support for defineOptions to vue/match-component-file-name rule (#2161)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/NdoleStudio/httpsms/pull/189 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 5/22/2023 **Status:** ✅ Merged **Merged:** 5/22/2023 **Merged by:** [@AchoArnold](https://github.com/AchoArnold) **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/web/eslint-plugin-vue-9.13.0` --- ### 📝 Commits (1) - [`b004b5b`](https://github.com/NdoleStudio/httpsms/commit/b004b5bad8fce4126548f35bfe984fc35c742158) chore(deps-dev): bump eslint-plugin-vue from 9.12.0 to 9.13.0 in /web ### 📊 Changes **3 files changed** (+64 additions, -19 deletions) <details> <summary>View changed files</summary> 📝 `web/package-lock.json` (+54 -9) 📝 `web/package.json` (+1 -1) 📝 `web/yarn.lock` (+9 -9) </details> ### 📄 Description [//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [eslint-plugin-vue](https://github.com/vuejs/eslint-plugin-vue) from 9.12.0 to 9.13.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vuejs/eslint-plugin-vue/releases">eslint-plugin-vue's releases</a>.</em></p> <blockquote> <h2>v9.13.0</h2> <p><strong>Support for Vue 3.3 &quot;Rurouni Kenshin&quot;</strong> :tada:<br /> see <a href="https://blog.vuejs.org/posts/vue-3-3">https://blog.vuejs.org/posts/vue-3-3</a></p> <h2>✨ Enhancements</h2> <h3>New Rules</h3> <ul> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2167">#2167</a> Added <a href="https://eslint.vuejs.org/rules/prefer-define-options.html"><code>vue/prefer-define-options</code> rule</a> that enforces use of <code>defineOptions</code> instead of default export.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2165">#2165</a> Added <a href="https://eslint.vuejs.org/rules/valid-define-options.html"><code>vue/valid-define-options</code> rule</a> that checks whether <code>defineOptions</code> compiler macro is valid.</li> </ul> <h3>Other Changes</h3> <ul> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2154">#2154</a> Added support for <code>defineOptions</code> and <code>defineSlots</code> to <a href="https://eslint.vuejs.org/rules/define-macros-order.html"><code>vue/define-macros-order</code> rule</a>.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2163">#2163</a> Added support for <code>defineOptions</code> and <code>defineSlots</code> to <a href="https://eslint.vuejs.org/rules/no-unsupported-features.html"><code>vue/no-unsupported-features</code> rule</a>.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2152">#2152</a> Added support for new <code>defineEmits</code> type syntax to <a href="https://eslint.vuejs.org/rules/require-explicit-emits.html"><code>vue/require-explicit-emits</code> rule</a>.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2159">#2159</a> Added support for <code>defineOptions</code> to <a href="https://eslint.vuejs.org/rules/component-definition-name-casing.html"><code>vue/component-definition-name-casing</code> rule</a>.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2161">#2161</a> Added support for <code>defineOptions</code> to <a href="https://eslint.vuejs.org/rules/match-component-file-name.html"><code>vue/match-component-file-name</code> rule</a>.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2157">#2157</a> Added support for <code>defineOptions</code> to <a href="https://eslint.vuejs.org/rules/multi-word-component-names.html"><code>vue/multi-word-component-names</code> rule</a>.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2158">#2158</a> Added support for <code>defineOptions</code> to <a href="https://eslint.vuejs.org/rules/no-reserved-component-names.html"><code>vue/no-reserved-component-names</code> rule</a>.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2162">#2162</a> Added support for <code>defineOptions</code> to <a href="https://eslint.vuejs.org/rules/no-restricted-component-options.html"><code>vue/no-restricted-component-options</code> rule</a>.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2160">#2160</a> Added support for <code>defineOptions</code> to <a href="https://eslint.vuejs.org/rules/order-in-components.html"><code>vue/order-in-components</code> rule</a>.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2164">#2164</a> Added support for <code>defineOptions</code> to <a href="https://eslint.vuejs.org/rules/padding-lines-in-component-definition.html"><code>vue/padding-lines-in-component-definition</code> rule</a>.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2134">#2134</a> Added support for imported types in SFC macros.</li> </ul> <h2>⚙️ Updates</h2> <ul> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2170">#2170</a> Upgraded to <a href="https://github.com/vuejs/vue-eslint-parser/releases/tag/v9.3.0">vue-eslint-parser v9.3</a> that supports Vue 3.3.</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/vuejs/eslint-plugin-vue/compare/v9.12.0...v9.13.0">https://github.com/vuejs/eslint-plugin-vue/compare/v9.12.0...v9.13.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vuejs/eslint-plugin-vue/commit/b00faf33487ea12fab9e33bdc825362e619b77a5"><code>b00faf3</code></a> 9.13.0</li> <li><a href="https://github.com/vuejs/eslint-plugin-vue/commit/9abf469e2040d2273e4be16f4577adae6dfbe0ce"><code>9abf469</code></a> Add support for imported types in SFC macros (<a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2134">#2134</a>)</li> <li><a href="https://github.com/vuejs/eslint-plugin-vue/commit/4c5fe34d13df9417aa802fda6bab1963a70374d4"><code>4c5fe34</code></a> Upgrade to vue-eslint-parser v9.3 that supports Vue 3.3. (<a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2170">#2170</a>)</li> <li><a href="https://github.com/vuejs/eslint-plugin-vue/commit/659a50f86a0953f3c34d6bda40bfa504d31bf179"><code>659a50f</code></a> add FUNDING.yml</li> <li><a href="https://github.com/vuejs/eslint-plugin-vue/commit/2ee0f4b9efb4083c9345ee61cee91edca71e88d2"><code>2ee0f4b</code></a> Add <code>vue/valid-define-options</code> rule (<a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2165">#2165</a>)</li> <li><a href="https://github.com/vuejs/eslint-plugin-vue/commit/dd9678035e07e5a5eca868beb9cb54e6b98ec1c6"><code>dd96780</code></a> Add <code>vue/prefer-define-options</code> rule (<a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2167">#2167</a>)</li> <li><a href="https://github.com/vuejs/eslint-plugin-vue/commit/6b3736b17e2e948225718c1af96418d7acf5ebf1"><code>6b3736b</code></a> Add support for <code>defineOptions</code> to `vue/padding-lines-in-component-definition...</li> <li><a href="https://github.com/vuejs/eslint-plugin-vue/commit/28db55596381aaf37edbcecd3b41816ffece55cc"><code>28db555</code></a> Add support for <code>defineOptions</code> and <code>defineSlots</code> to `vue/no-unsupported-feat...</li> <li><a href="https://github.com/vuejs/eslint-plugin-vue/commit/a9e0a49dbfa529bc26b6632dd4ab85997bb58f7d"><code>a9e0a49</code></a> Add support for <code>defineOptions</code> to <code>vue/no-restricted-component-options</code> rule...</li> <li><a href="https://github.com/vuejs/eslint-plugin-vue/commit/70b88a2540bc40f3c33f04058013095bc48b0cbe"><code>70b88a2</code></a> Add support for <code>defineOptions</code> to <code>vue/match-component-file-name</code> rule (<a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2161">#2161</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vuejs/eslint-plugin-vue/compare/v9.12.0...v9.13.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=eslint-plugin-vue&package-manager=npm_and_yarn&previous-version=9.12.0&new-version=9.13.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 16:37:25 +03:00
Sign in to join this conversation.
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
starred/httpsms#237
No description provided.