Skip to content

build(deps-dev): bump vue-tsc from 3.1.1 to 3.3.0 in /frontend - #11

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/frontend/vue-tsc-3.3.0
Closed

build(deps-dev): bump vue-tsc from 3.1.1 to 3.3.0 in /frontend#11
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/frontend/vue-tsc-3.3.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 18, 2026

Copy link
Copy Markdown
Contributor

Bumps vue-tsc from 3.1.1 to 3.3.0.

Release notes

Sourced from vue-tsc's releases.

v3.3.0

Features

Refined Autocomplete for Component Props

Previously, we inferred props used for autocomplete from the component itself's type, which did not work well with components whose props need to be inferred dynamically, such as generics or discriminated unions.

Now, we have improved this feature to better align with TS behavior. See the following example:

<script lang="ts" setup>
  defineProps<
    | { type: "foo"; foo: string }
    | { type: "bar"; bar: string }
  >();
</script>
&lt;template>
<Self type="foo" :| />
<!--              ^ [foo, ...] -->
<Self type="bar" :| />
<!--              ^ [bar, ...] -->
</template>

When triggering completions at the two positions above, we will now get the props that are actually available in each corresponding case.

(PR: #5709)

Check Required Fallthrough Attributes

Consider the following structure:

<!-- basic.vue -->
<script lang="ts" setup>
  defineProps<{
    foo: string;
    bar: string;
  }>();
</script>
<!-- comp.vue -->
<script lang="ts" setup>
  import Basic from "./basic.vue";
</script>
&lt;template>
</tr></table>

... (truncated)

Changelog

Sourced from vue-tsc's changelog.

3.3.0 (2026-05-18)

language-core

  • feat: check required fallthrough attributes (#6049) - Thanks to @​KazariEX!
  • fix: penetrate v-if branch fragments when collecting single root nodes - Thanks to @​KazariEX!
  • refactor: rename Sfc APIs to IR - Thanks to @​KazariEX!

language-service

  • fix: reuse ASTs for define assignment suggestions - Thanks to @​KazariEX!
  • fix: re-support html.customData (#5910) - Thanks to @​Bomberus!
  • fix: strip ="" only for plain boolean props completion edits - Thanks to @​KazariEX!
  • fix: reset to default data provider after running with vue data provider - Thanks to @​KazariEX!

typescript-plugin

  • feat: refine props completion logic to follow TS behavior (#5709) - Thanks to @​KazariEX!

vscode

  • fix: include extraFileExtensions in tsserver configure request payload (#6048) - Thanks to @​KazariEX!
  • fix: write typescript plugins at build time (#6050) - Thanks to @​KazariEX!
  • fix: avoid infinite diagnostics on Vue files when project diagnostics is enabled (#6051) - Thanks to @​KazariEX!

3.2.9 (2026-05-14)

language-core

  • fix: do not process inline markdown syntax in semantic-aware segments (#6038) - Thanks to @​KazariEX!
  • perf: rewrite a subset of template node transforms (#5769) - Thanks to @​KazariEX!

vscode

  • fix: trigger file rename edits when moving folders with Vue files (#6046) - Thanks to @​KazariEX!

workspace

3.2.8 (2026-05-04)

language-core

  • fix: replace inline code blocks after sfc blocks processing (#6024) - Thanks to @​KazariEX!
  • fix: support navigation for kebab-case declarations in GlobalComponents (#6026) - Thanks to @​Gehbt!

language-service

  • feat: support TS module resolution for SCSS @import navigation (#6033) - Thanks to @​KazariEX!

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for vue-tsc since your current version.


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 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)

Bumps [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) from 3.1.1 to 3.3.0.
- [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.3.0/packages/tsc)

---
updated-dependencies:
- dependency-name: vue-tsc
  dependency-version: 3.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github May 18, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: dependencies, frontend. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot @github

dependabot Bot commented on behalf of github Jun 15, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #34.

@dependabot dependabot Bot closed this Jun 15, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/frontend/vue-tsc-3.3.0 branch June 15, 2026 18:28
AirSaiga added a commit that referenced this pull request Jul 1, 2026
清理:
- #11 提取 useLanguageToggle composable,统一 AgentLayout + AssetLibraryNav
  两处重复的语言切换逻辑;顺带清掉 AgentLayout 不再需要的 useI18n/settingsStore 导入。
- #12 删除 AppOverlayHost 不可达的 defineExpose 死代码(openProjectManagement +
  openAiConfigGenerator 均无 ref 绑定引用)。
- #13 parseDiffLines 新增 meta 类型,正确识别 diff 文件头(---/+++)和 hunk 标记(@@),
  不再误染成增删色;ApplyConfirmCard 补 diff-meta 样式。
- #14 .confirm-card 类名改为 .apply-confirm-card 匹配根元素。
- #15 magic number 50 随 C6b 回退已自然消失。

单测:
- B1 i18n getInitialLocale 6 个边界测试(en-US/zh-CN 恢复、空、非法值、损坏 JSON 等)。
- parseDiffLines meta 识别 + ---x 边界测试(共 10 个)。
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants