[PR #543] [MERGED] chore(deps-dev): bump eslint-plugin-vue from 9.27.0 to 9.29.0 in /web #552

Closed
opened 2026-03-03 16:38:57 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/NdoleStudio/httpsms/pull/543
Author: @dependabot[bot]
Created: 10/14/2024
Status: Merged
Merged: 10/14/2024
Merged by: @AchoArnold

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


📝 Commits (1)

  • af885ef chore(deps-dev): bump eslint-plugin-vue from 9.27.0 to 9.29.0 in /web

📊 Changes

2 files changed (+37 additions, -43 deletions)

View changed files

📝 web/package.json (+1 -1)
📝 web/pnpm-lock.yaml (+36 -42)

📄 Description

Bumps eslint-plugin-vue from 9.27.0 to 9.29.0.

Release notes

Sourced from eslint-plugin-vue's releases.

v9.29.0

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

Enhancements

New Rules

New Features

🐛 Bug Fixes

⚙️ Updates

  • #2498 Renamed flat config names for inspector.

... (truncated)

Commits
  • 635b6ed 9.29.0
  • ba6a1d4 fix: type declarations for configs (#2566)
  • a91ae04 fix(utils): also recognize .tsx files as Vue files (#2565)
  • 2dc606c Add support for props destructure to vue/no-setup-props-reactivity-loss rul...
  • e8a09e9 doc: add example for Vue class component (#2561)
  • 4c38983 Add support for props destructure to vue/no-restricted-props rule (#2562)
  • 3137e50 Add support for props destructure to vue/no-required-prop-with-default rule...
  • 3d32c1b Add support for props destructure to vue/no-boolean-default rule (#2553)
  • 4704ab6 Add support for props destructure to vue/require-default-prop rule (#2552)
  • 05b7559 Add support for props destructure to vue/require-valid-default-prop rule (#...
  • 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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/543 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 10/14/2024 **Status:** ✅ Merged **Merged:** 10/14/2024 **Merged by:** [@AchoArnold](https://github.com/AchoArnold) **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/web/eslint-plugin-vue-9.29.0` --- ### 📝 Commits (1) - [`af885ef`](https://github.com/NdoleStudio/httpsms/commit/af885ef0615f7a73d09714e8c07a349b10568f3c) chore(deps-dev): bump eslint-plugin-vue from 9.27.0 to 9.29.0 in /web ### 📊 Changes **2 files changed** (+37 additions, -43 deletions) <details> <summary>View changed files</summary> 📝 `web/package.json` (+1 -1) 📝 `web/pnpm-lock.yaml` (+36 -42) </details> ### 📄 Description Bumps [eslint-plugin-vue](https://github.com/vuejs/eslint-plugin-vue) from 9.27.0 to 9.29.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.29.0</h2> <h2>✨ Enhancements</h2> <h3>New Rules</h3> <ul> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2540">#2540</a> Added <a href="https://eslint.vuejs.org/rules/no-deprecated-delete-set.html"><code>vue/no-deprecated-delete-set</code></a> rule that disallows using deprecated <code>$delete</code> and <code>$set</code>.</li> </ul> <h3>Others</h3> <ul> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2513">#2513</a> Added support for Vuex and Pinia to <a href="https://eslint.vuejs.org/rules/no-undef-properties.html"><code>vue/no-undef-properties</code></a> rule.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2541">#2541</a> Added support for Vue 3.5's <a href="https://blog.vuejs.org/posts/vue-3-5#usetemplateref"><code>useTemplateRef()</code></a> to <a href="https://eslint.vuejs.org/rules/no-unused-refs.html"><code>vue/no-unused-refs</code></a> rule.</li> <li>Added support for Vue 3.5's <a href="https://blog.vuejs.org/posts/vue-3-5#reactive-props-destructure">props destructure</a> to various rules: <ul> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2551">#2551</a> to <a href="https://eslint.vuejs.org/rules/require-valid-default-prop.html"><code>vue/require-valid-default-prop</code></a> rule.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2552">#2552</a> to <a href="https://eslint.vuejs.org/rules/require-default-prop.html"><code>vue/require-default-prop</code></a> rule.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2553">#2553</a> to <a href="https://eslint.vuejs.org/rules/no-boolean-default.html"><code>vue/no-boolean-default</code></a> rule.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2560">#2560</a> to <a href="https://eslint.vuejs.org/rules/no-required-prop-with-default.html"><code>vue/no-required-prop-with-default</code></a> rule.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2562">#2562</a> to <a href="https://eslint.vuejs.org/rules/no-restricted-props.html"><code>vue/no-restricted-props</code></a> rule.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2550">#2550</a> to <a href="https://eslint.vuejs.org/rules/no-setup-props-reactivity-loss.html"><code>vue/no-setup-props-reactivity-loss</code></a> rule.</li> </ul> </li> </ul> <h2>⚙️ Updates</h2> <ul> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2528">#2528</a>, <a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2566">#2566</a> Added TypeScript declarations for configs.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2565">#2565</a> Added support for recognizing Vue components in <code>.tsx</code> files.</li> </ul> <h2>v9.28.0</h2> <h2>✨ Enhancements</h2> <h3>New Rules</h3> <ul> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2430">#2430</a> Added <a href="https://eslint.vuejs.org/rules/max-props.html"><code>vue/max-props</code></a> rule that enforces the maximum number of props in Vue components.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2494">#2494</a> Added <a href="https://eslint.vuejs.org/rules/require-default-export.html"><code>vue/require-default-export</code></a> rule that requires components to be the <code>default</code> export.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2525">#2525</a> Added <a href="https://eslint.vuejs.org/rules/max-template-depth.html"><code>vue/max-template-depth</code></a> rule that enforces the maximum depth of <code>\&lt;template&gt;</code>.</li> </ul> <h3>New Features</h3> <ul> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2501">#2501</a> Allow specifying custom macros in <a href="https://eslint.vuejs.org/rules/define-macros-order.html"><code>vue/define-macros-order</code></a> rule.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2537">#2537</a> Added <code>additionalDirectives</code> option to <a href="https://eslint.vuejs.org/rules/require-toggle-inside-transition.html"><code>vue/require-toggle-inside-transition</code></a> rule.</li> </ul> <h2>🐛 Bug Fixes</h2> <ul> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2348">#2348</a> Fixed false positives/negatives for siblings in <a href="https://eslint.vuejs.org/rules/v-if-else-key.html"><code>vue/v-if-else-key</code></a> rule.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2505">#2505</a> Fixed false positives for JavaScript components in <a href="https://eslint.vuejs.org/rules/require-typed-object-prop.html"><code>vue/require-typed-object-prop</code></a> rule.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2511">#2511</a> Fixed false negatives for <code>v-model</code> directive in <a href="https://eslint.vuejs.org/rules/attribute-hyphenation.html"><code>vue/attribute-hyphenation</code></a> rule.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2533">#2533</a> Fixed auto-fix for <a href="https://eslint.vuejs.org/rules/attribute-hyphenation.html"><code>vue/attribute-hyphenation</code></a> rule to skip <code>v-bind.sync</code>.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2529">#2529</a> Fixed auto-fix for <a href="https://eslint.vuejs.org/rules/no-deprecated-slot-attribute.html"><code>vue/no-deprecated-slot-attribute</code></a> rule to handle <code>v-for</code> with dynamic <code>slot</code>.</li> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2530">#2530</a> Fixed auto-fix for <a href="https://eslint.vuejs.org/rules/no-deprecated-slot-attribute.html"><code>vue/no-deprecated-slot-attribute</code></a> rule to skip dynamic components.</li> </ul> <h2>⚙️ Updates</h2> <ul> <li><a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2498">#2498</a> Renamed flat config names for inspector.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vuejs/eslint-plugin-vue/commit/635b6ed9016bdf04ed4633e1381d101b57c6fe8f"><code>635b6ed</code></a> 9.29.0</li> <li><a href="https://github.com/vuejs/eslint-plugin-vue/commit/ba6a1d43d8171c0282586afe6dba431fd1d7c50e"><code>ba6a1d4</code></a> fix: type declarations for configs (<a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2566">#2566</a>)</li> <li><a href="https://github.com/vuejs/eslint-plugin-vue/commit/a91ae0440f8127c5b5df76859f61d412ae772376"><code>a91ae04</code></a> fix(utils): also recognize .tsx files as Vue files (<a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2565">#2565</a>)</li> <li><a href="https://github.com/vuejs/eslint-plugin-vue/commit/2dc606ca589ff5cdcd197c3c64ace7e575a6347d"><code>2dc606c</code></a> Add support for props destructure to <code>vue/no-setup-props-reactivity-loss</code> rul...</li> <li><a href="https://github.com/vuejs/eslint-plugin-vue/commit/e8a09e9ca92397ec0175946f81c1518beb8d255f"><code>e8a09e9</code></a> doc: add example for Vue class component (<a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2561">#2561</a>)</li> <li><a href="https://github.com/vuejs/eslint-plugin-vue/commit/4c389839790a192d9ad424c9791cf92171ac2082"><code>4c38983</code></a> Add support for props destructure to <code>vue/no-restricted-props</code> rule (<a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2562">#2562</a>)</li> <li><a href="https://github.com/vuejs/eslint-plugin-vue/commit/3137e50824dde3a000e0756a7f3c601a938306a4"><code>3137e50</code></a> Add support for props destructure to <code>vue/no-required-prop-with-default</code> rule...</li> <li><a href="https://github.com/vuejs/eslint-plugin-vue/commit/3d32c1b7f290a981fd821e70f562a26b363acb43"><code>3d32c1b</code></a> Add support for props destructure to <code>vue/no-boolean-default</code> rule (<a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2553">#2553</a>)</li> <li><a href="https://github.com/vuejs/eslint-plugin-vue/commit/4704ab60fbd7af7b61c45c8be23d0eabc66a7b21"><code>4704ab6</code></a> Add support for props destructure to <code>vue/require-default-prop</code> rule (<a href="https://redirect.github.com/vuejs/eslint-plugin-vue/issues/2552">#2552</a>)</li> <li><a href="https://github.com/vuejs/eslint-plugin-vue/commit/05b75592d63be3edce0bb10382145b6d282e57f1"><code>05b7559</code></a> Add support for props destructure to <code>vue/require-valid-default-prop</code> rule (#...</li> <li>Additional commits viewable in <a href="https://github.com/vuejs/eslint-plugin-vue/compare/v9.27.0...v9.29.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.27.0&new-version=9.29.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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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:38:57 +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#552
No description provided.