Skip to content

build(deps-dev): bump vue-tsc from 3.1.5 to 3.1.6 in /vue-example in the patch-dependencies group#2342

Merged
github-actions[bot] merged 1 commit into
mainfrom
dependabot-npm_and_yarn-vue-example-patch-dependencies-0accabd09d
Dec 9, 2025
Merged

build(deps-dev): bump vue-tsc from 3.1.5 to 3.1.6 in /vue-example in the patch-dependencies group#2342
github-actions[bot] merged 1 commit into
mainfrom
dependabot-npm_and_yarn-vue-example-patch-dependencies-0accabd09d

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Dec 9, 2025

Bumps the patch-dependencies group in /vue-example with 1 update: vue-tsc.

Updates vue-tsc from 3.1.5 to 3.1.6

Release notes

Sourced from vue-tsc's releases.

v3.1.6

Features

  • feat(vscode): add settings to enable per-block formatting (#5784) - Thanks to @​serkodev!
  • feat(language-service): enhanced component auto import (#5790)
  • feat(component-meta): add component name and description fields (#5797)
  • feat(typescript-plugin): add support for template "Add Import" quick fix (#5799) - Thanks to @​serkodev!
  • feat(typescript-plugin): mapping JSDoc informations from <script setup> (#5805)
  • feat(vscode): support tsdk path for Eclipse Theia (#5806) - Thanks to @​serkodev!

Bug Fixes

  • fix(language-service): ignore intrinsic elements when detect tag name casing (#5771)
  • fix(language-core): createParsedCommandLineByJson parsed incorrect options since v3.1.5 (vuejs/language-tools#5768)
  • fix(vscode): make vue.server.path compatible with Windows (#5772)
  • fix(vscode): analyze interpolation highlight ranges based on AST (#5777)
  • fix(vscode): sync latest vscode html language configuration (#5740)
  • fix(language-core): enhance getVIfNode to support v-else-if directives (#5765) - Thanks to @​serkodev!
  • fix(language-core): generate {} instead of its string value for style="..." (#5781) - Thanks to @​KazariEX!
  • fix(language-core): v-bind="$attrs" loses navigation when inferTemplateDollarAttrs is disabled (#5783)
  • fix(language-service): skip const props = completion in StringLiteral (#5786)
  • fix(language-core): unable to get completion for the second scoped class name
  • fix(language-service): format components with HTML void-element names (#5788) - Thanks to @​serkodev!
  • fix(language-service): properly handle promise when resolving CSS links (#5785)
  • fix(language-core): infer $el type for generic components using inferComponentDollarEl (#5794)
  • fix(language-core): ensure <script> content generates before <script setup> (#5795)
  • fix(language-core): remove bypassDefineComponent hack for better JS support (#4876) (#5379)
  • fix(language-core): Prettify<T> caused generic props gets inferred as unknown (#5667) - Thanks to @​so1ve!
  • fix(vscode): handle leading < as operator in SFC scripts (#5801) - Thanks to @​serkodev!
  • fix(vscode): patch isTypeScriptDocument in VSCode for typescript.preferences.autoImportSpecifierExcludeRegexes config support (#5364)
  • fix(language-core): ensure type consistency for optional boolean props (#5803)
  • fix(language-core): add compatibility for vapor attr (#5496)
  • fix(language-core): AST fault tolerance for key binding on template (#5807)

Performance

  • perf(language-core): reuse ts asts for :class - Thanks to @​KazariEX!

Other Changes

  • Revert "refactor(typescript-plugin): remove go to definition trick for auto imported components (#5733)"
  • docs(typescript-plugin): update Neovim configuration link (#5775) - Thanks to @​AlexVagrant!
  • refactor(language-core): normalize template AST (#5782)
  • refactor(language-core): split style codegen (#5787)
  • refactor(language-core): remove debugger from virtual code for tsslint compatibility
  • refactor(language-core): remove legacy navigation support in ref="xxx"
  • refactor(language-core): reduce codegen options (#5804)
  • refactor(component-meta): deprecated rawType and __internal__.tsLs (#5808)
  • chore: update volar to 2.4.26

... (truncated)

Changelog

Sourced from vue-tsc's changelog.

3.1.6 (2025-12-06)

Features

  • feat(vscode): add settings to enable per-block formatting (#5784) - Thanks to @​serkodev!
  • feat(language-service): enhanced component auto import (#5790)
  • feat(component-meta): add component name and description fields (#5797)
  • feat(typescript-plugin): add support for template "Add Import" quick fix (#5799) - Thanks to @​serkodev!
  • feat(typescript-plugin): mapping JSDoc informations from <script setup> (#5805)
  • feat(vscode): support tsdk path for Eclipse Theia (#5806) - Thanks to @​serkodev!

Bug Fixes

  • fix(language-service): ignore intrinsic elements when detect tag name casing (#5771)
  • fix(language-core): createParsedCommandLineByJson parsed incorrect options since v3.1.5 (vuejs/language-tools#5768)
  • fix(vscode): make vue.server.path compatible with Windows (#5772)
  • fix(vscode): analyze interpolation highlight ranges based on AST (#5777)
  • fix(vscode): sync latest vscode html language configuration (#5740)
  • fix(language-core): enhance getVIfNode to support v-else-if directives (#5765) - Thanks to @​serkodev!
  • fix(language-core): generate {} instead of its string value for style="..." (#5781) - Thanks to @​KazariEX!
  • fix(language-core): v-bind="$attrs" loses navigation when inferTemplateDollarAttrs is disabled (#5783)
  • fix(language-service): skip const props = completion in StringLiteral (#5786)
  • fix(language-core): unable to get completion for the second scoped class name
  • fix(language-service): format components with HTML void-element names (#5788) - Thanks to @​serkodev!
  • fix(language-service): properly handle promise when resolving CSS links (#5785)
  • fix(language-core): infer $el type for generic components using inferComponentDollarEl (#5794)
  • fix(language-core): ensure <script> content generates before <script setup> (#5795)
  • fix(language-core): remove bypassDefineComponent hack for better JS support (#4876) (#5379)
  • fix(language-core): Prettify<T> caused generic props gets inferred as unknown (#5667) - Thanks to @​so1ve!
  • fix(vscode): handle leading < as operator in SFC scripts (#5801) - Thanks to @​serkodev!
  • fix(vscode): patch isTypeScriptDocument in VSCode for typescript.preferences.autoImportSpecifierExcludeRegexes config support (#5364)
  • fix(language-core): ensure type consistency for optional boolean props (#5803)
  • fix(language-core): add compatibility for vapor attr (#5496)
  • fix(language-core): AST fault tolerance for key binding on template (#5807)

Performance

  • perf(language-core): reuse ts asts for :class - Thanks to @​KazariEX!

Other Changes

  • Revert "refactor(typescript-plugin): remove go to definition trick for auto imported components (#5733)"
  • docs(typescript-plugin): update Neovim configuration link (#5775) - Thanks to @​AlexVagrant!
  • refactor(language-core): normalize template AST (#5782)
  • refactor(language-core): split style codegen (#5787)
  • refactor(language-core): remove debugger from virtual code for tsslint compatibility
  • refactor(language-core): remove legacy navigation support in ref="xxx"
  • refactor(language-core): reduce codegen options (#5804)
  • refactor(component-meta): deprecated rawType and __internal__.tsLs (#5808)
  • chore: update volar to 2.4.26

... (truncated)

Commits
  • f09f173 v3.1.6 (#5809)
  • a1b8b71 feat(component-meta): add component name and description fields (#5797)
  • adeba0a fix(language-core): Prettify\<T> caused generic props gets inferred as `unkn...
  • b6254ec fix(typescript-plugin): resolve component type without __VLS_components
  • ebb2fb2 refactor(language-core): extract virtual code variables to codegen/names.ts
  • 9acb5b0 chore: update volar to 2.4.26
  • See full diff 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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the patch-dependencies group in /vue-example with 1 update: [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc).


Updates `vue-tsc` from 3.1.5 to 3.1.6
- [Release notes](https://github.com/vuejs/language-tools/releases)
- [Changelog](https://github.com/vuejs/language-tools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/vuejs/language-tools/commits/v3.1.6/packages/tsc)

---
updated-dependencies:
- dependency-name: vue-tsc
  dependency-version: 3.1.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 9, 2025
@dependabot dependabot Bot requested review from mfranzke and nmerget as code owners December 9, 2025 01:06
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 9, 2025
@github-actions github-actions Bot added the vue label Dec 9, 2025
@github-actions github-actions Bot enabled auto-merge (squash) December 9, 2025 01:07
@github-actions github-actions Bot merged commit 9357ee8 into main Dec 9, 2025
7 checks passed
@github-actions github-actions Bot deleted the dependabot-npm_and_yarn-vue-example-patch-dependencies-0accabd09d branch December 9, 2025 01:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code vue

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants