[PR #459] [CLOSED] Bump vue-loader from 15.9.7 to 16.3.1 #499

Closed
opened 2026-02-26 06:31:03 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/nextcloud/twofactor_gateway/pull/459
Author: @dependabot[bot]
Created: 7/17/2021
Status: Closed

Base: masterHead: dependabot/npm_and_yarn/vue-loader-16.3.1


📝 Commits (1)

  • 5ccc9b5 Bump vue-loader from 15.9.7 to 16.3.1

📊 Changes

2 files changed (+176 additions, -173 deletions)

View changed files

📝 package-lock.json (+175 -172)
📝 package.json (+1 -1)

📄 Description

Bumps vue-loader from 15.9.7 to 16.3.1.

Release notes

Sourced from vue-loader's releases.

v16.3.0

Features

  • pass on compilerOptions and refSugar when using <script setup> (7137294)

v16.2.0

Features

  • enable :slotted usage detection (66a3759)

v16.1.2

Note: vue-loader v16 is for Vue 3 only.

Bug Fixes

  • resourceQuery could be undefined in webpack 5 (6a1ee76), closes #1771

v16.1.1

v16.1.0

New Features

  • feat: allow manually specifying whether server-rendering is targeted (9bbb82b)

v16.0.0

New Features

  • feat: support for experimental sfc features
    • new <script setup> vuejs/rfcs#227
    • new <style> variable injection vuejs/rfcs#231 Requires a version of @vue/compiler-sfc that supports the above features.

Bug Fixes

  • fix: update hmr api usage (f9dd610)
  • fixed thread-loader compatibility for <script setup> support

v16.0.0-rc.2

Bug Fixes

  • fix: disable esModuleInterop & allowSyntheticDefaultImports and regenerate the type definitions (c76f5e5)

Known Issues

  • SSR usage needs more thorough testing.
  • vue-style-loader hasn't been not updated for Vue 3 yet. Please use mini-css-extract-plugin for CSS extraction.
  • No shadowMode support.
  • <script setup> support is experimental. It does not work well with thread-loader. In Vue CLI, you need to set parallel: false for this feature to work correctly. Also, please follow vuejs/rfcs#227, vuejs/rfcs#228 for more possible script setup sugars in the future.

... (truncated)

Changelog

Sourced from vue-loader's changelog.

Commits

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/nextcloud/twofactor_gateway/pull/459 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 7/17/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/vue-loader-16.3.1` --- ### 📝 Commits (1) - [`5ccc9b5`](https://github.com/nextcloud/twofactor_gateway/commit/5ccc9b50ac40e67f4d22c72c9dfbd1ef59b16942) Bump vue-loader from 15.9.7 to 16.3.1 ### 📊 Changes **2 files changed** (+176 additions, -173 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+175 -172) 📝 `package.json` (+1 -1) </details> ### 📄 Description Bumps [vue-loader](https://github.com/vuejs/vue-loader) from 15.9.7 to 16.3.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vuejs/vue-loader/releases">vue-loader's releases</a>.</em></p> <blockquote> <h2>v16.3.0</h2> <h3>Features</h3> <ul> <li>pass on compilerOptions and refSugar when using <code>&lt;script setup&gt;</code> (<a href="https://github.com/vuejs/vue-loader/commit/7137294e7eca465c27c03a43057cb6a8f80ea2d7">7137294</a>)</li> </ul> <h2>v16.2.0</h2> <h3>Features</h3> <ul> <li>enable :slotted usage detection (<a href="https://github.com/vuejs/vue-loader/commit/66a3759c052fa75485243d91c22243ee35610089">66a3759</a>)</li> </ul> <h2>v16.1.2</h2> <blockquote> <p>Note: vue-loader v16 is for Vue 3 only.</p> </blockquote> <h3>Bug Fixes</h3> <ul> <li>resourceQuery could be undefined in webpack 5 (<a href="https://github.com/vuejs/vue-loader/commit/6a1ee76aa6a876155e2cd7fb1f133553a9c38706">6a1ee76</a>), closes <a href="https://github-redirect.dependabot.com/vuejs/vue-loader/issues/1771">#1771</a></li> </ul> <h2>v16.1.1</h2> <ul> <li>fix inconsistent scope Ids for css var injection via <code>v-bind()</code> (<a href="https://github-redirect.dependabot.com/vuejs/vue-next/issues/2721">vuejs/vue-next#2721</a>)</li> </ul> <h2>v16.1.0</h2> <h3>New Features</h3> <ul> <li>feat: allow manually specifying whether server-rendering is targeted (<a href="https://github.com/vuejs/vue-loader/commit/9bbb82b">9bbb82b</a>)</li> </ul> <h2>v16.0.0</h2> <h3>New Features</h3> <ul> <li>feat: support for experimental sfc features <ul> <li>new <code>&lt;script setup&gt;</code> <a href="https://github-redirect.dependabot.com/vuejs/rfcs/issues/227">vuejs/rfcs#227</a></li> <li>new <code>&lt;style&gt;</code> variable injection <a href="https://github-redirect.dependabot.com/vuejs/rfcs/issues/231">vuejs/rfcs#231</a> Requires a version of <code>@vue/compiler-sfc</code> that supports the above features.</li> </ul> </li> </ul> <h3>Bug Fixes</h3> <ul> <li>fix: update hmr api usage (<a href="https://github.com/vuejs/vue-loader/commit/f9dd610">f9dd610</a>)</li> <li>fixed <code>thread-loader</code> compatibility for <code>&lt;script setup&gt;</code> support</li> </ul> <h2>v16.0.0-rc.2</h2> <h3>Bug Fixes</h3> <ul> <li>fix: disable <code>esModuleInterop</code> &amp; <code>allowSyntheticDefaultImports</code> and regenerate the type definitions (<a href="https://github.com/vuejs/vue-loader/commit/c76f5e5">c76f5e5</a>)</li> </ul> <h3>Known Issues</h3> <ul> <li>SSR usage needs more thorough testing.</li> <li><code>vue-style-loader</code> hasn't been not updated for Vue 3 yet. Please use <code>mini-css-extract-plugin</code> for CSS extraction.</li> <li>No <a href="https://vue-loader.vuejs.org/options.html#shadowmode"><code>shadowMode</code></a> support.</li> <li><code>&lt;script setup&gt;</code> support is experimental. It does not work well with <code>thread-loader</code>. In Vue CLI, you need to set <a href="https://cli.vuejs.org/config/#parallel"><code>parallel: false</code></a> for this feature to work correctly. Also, please follow <a href="https://github-redirect.dependabot.com/vuejs/rfcs/pull/227">vuejs/rfcs#227</a>, <a href="https://github-redirect.dependabot.com/vuejs/rfcs/pull/228">vuejs/rfcs#228</a> for more possible <code>script setup</code> sugars in the future.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vuejs/vue-loader/blob/master/CHANGELOG.md">vue-loader's changelog</a>.</em></p> <blockquote> <p><!-- raw HTML omitted --><!-- raw HTML omitted --></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/vuejs/vue-loader/commits">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=vue-loader&package-manager=npm_and_yarn&previous-version=15.9.7&new-version=16.3.1)](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-02-26 06:31:03 +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/twofactor_gateway-nextcloud#499
No description provided.