Skip to content

chore(deps-dev): bump typescript from 5.9.3 to 6.0.3 - #57

Closed
dependabot[bot] wants to merge 2 commits into
feature/1.x.xfrom
dependabot/npm_and_yarn/typescript-6.0.3
Closed

chore(deps-dev): bump typescript from 5.9.3 to 6.0.3#57
dependabot[bot] wants to merge 2 commits into
feature/1.x.xfrom
dependabot/npm_and_yarn/typescript-6.0.3

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 4, 2026

Copy link
Copy Markdown
Contributor

Bumps typescript from 5.9.3 to 6.0.3.

Release notes

Sourced from typescript's releases.

TypeScript 6.0.3

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits
  • 050880c Bump version to 6.0.3 and LKG
  • eeae9dd 🤖 Pick PR #63401 (Also check package name validity in...) into release-6.0 (#...
  • ad1c695 🤖 Pick PR #63368 (Harden ATA package name filtering) into release-6.0 (#63372)
  • 0725fb4 🤖 Pick PR #63310 (Mark class property initializers as...) into release-6.0 (#...
  • 607a22a Bump version to 6.0.2 and LKG
  • 9e72ab7 🤖 Pick PR #63239 (Fix missing lib files in reused pro...) into release-6.0 (#...
  • 35ff23d 🤖 Pick PR #63163 (Port anyFunctionType subtype fix an...) into release-6.0 (#...
  • e175b69 Bump version to 6.0.1-rc and LKG
  • af4caac Update LKG
  • 8efd7e8 Merge remote-tracking branch 'origin/main' into release-6.0
  • 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 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)

ThreeFish-AI and others added 2 commits July 2, 2026 17:06
feat: 合入 feature/1.x.x 首个完整 MVP(v0.0.8)——可视化提交图 DAG · GitHub CI 状态 · 分支批量操作 · 全局 UI/UX 系统性优化
Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.9.3 to 6.0.3.
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.3)

---
updated-dependencies:
- dependency-name: typescript
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
...

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

Copy link
Copy Markdown
Owner

已由 #67(TypeScript 6.0.3 迁移,base: feature/1.x.x)承接,故关闭本 Dependabot PR。

迁移要点(已在 #67 本地验证四闸门全绿):

  • TS 6 把 moduleResolution=node(node10)升为硬错 TS5107 → 迁移至 moduleResolution: bundler
  • bundler 解析下不再自动纳入 @types/node 全局(setTimeout/clearTimeout/AbortSignal/URL/path/process 等报 TS2591/TS2304)→ 显式 types:["node"] 恢复;
  • modulecommonjsesnext(仅影响 tsc --noEmit;产物 CJS 由 esbuild format:'cjs' 硬编码,不受影响);
  • 无源码改动,349 单测全绿。

合入顺序建议:先合 #66,再合 #67

@dependabot @github

dependabot Bot commented on behalf of github Jul 4, 2026

Copy link
Copy Markdown
Contributor Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/typescript-6.0.3 branch July 4, 2026 09:03
ThreeFish-AI added a commit that referenced this pull request Jul 4, 2026
- typescript ^5.9.2 → ^6.0.3:TS 6 把 moduleResolution=node10("node")由告警升为硬错 TS5107(将在 TS 7 移除);且 bundler 解析下不再自动纳入 @types/node 全局
- tsconfig 迁移(tsc 仅做 --noEmit 类型检查,产物 CJS 由 esbuild 固定 format:'cjs' 输出,不受 module 变更影响):
  - module commonjs → esnext
  - moduleResolution node → bundler(现代 bundler 场景推荐,弃用 node10)
  - 显式 types:["node"]:恢复 @types/node 全局(setTimeout/clearTimeout/AbortSignal/URL/path/os/process/NodeJS 等);@types/vscode 经 import 消费,不受 types 限制
- 本地 CI 同款四闸门全绿:check-types / lint / package / test:unit(332/332)
- 无源码改动;esbuild.js 的 format:'cjs' 硬编码保证 VS Code 扩展仍输出 CJS

Closes #57。

🤖 Generated with [Claude Code](https://github.com/claude), [CodeX](https://openai.com), [Gemini](https://github.com/apps/gemini-code-assist)
ThreeFish-AI added a commit that referenced this pull request Jul 4, 2026
#66)

- vitest ^2.1.8 → ^4.1.9:vitest 4 要求 vite ≥6,本仓无直接 vite 依赖、旧锁文件停留在 vite 5.4.21,导致 vitest run 启动即崩(vite/module-runner 子路径不存在);故伴随新增 devDependency vite ^7(解析到 7.3.6)作为必要 companion,Dependabot 原 #56 锁文件同样停留在 vite 5、即便无冲突也过不了 CI
- typescript-eslint ^8.39.0 → ^8.62.1:补丁升级
- typescript 暂保 ^5.9.2:TS 6 把 moduleResolution=node10 升为硬错,且 src/extension.ts 的 setTimeout/clearTimeout 全局解析失败,需 tsconfig 迁移 + 全局类型修复,另起单独 PR 处理(Closes #57)
- 重生 pnpm-lock.yaml(pnpm@11.9.0),消除与 feature/1.x.x 的锁文件漂移冲突
- 本地 CI 同款四闸门全绿:check-types / lint / package / test:unit(332/332)

整合 #56 #59#57 由独立迁移 PR 承接。

🤖 Generated with [Claude Code](https://github.com/claude), [CodeX](https://openai.com), [Gemini](https://github.com/apps/gemini-code-assist)
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant