Skip to content

build(deps-dev): Bump typescript from 5.9.3 to 6.0.2#35

Merged
unknowIfGuestInDream merged 2 commits intomasterfrom
dependabot/npm_and_yarn/typescript-6.0.2
Apr 14, 2026
Merged

build(deps-dev): Bump typescript from 5.9.3 to 6.0.2#35
unknowIfGuestInDream merged 2 commits intomasterfrom
dependabot/npm_and_yarn/typescript-6.0.2

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 23, 2026

Bumps typescript from 5.9.3 to 6.0.2.

Release notes

Sourced from typescript's releases.

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

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Mar 23, 2026

Labels

The following labels could not be found: dependencies, npm. 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 dependabot bot force-pushed the dependabot/npm_and_yarn/typescript-6.0.2 branch from 4b4f101 to 03e0340 Compare March 23, 2026 22:55
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/typescript-6.0.2 branch from 03e0340 to d151a26 Compare March 31, 2026 05:16
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/typescript-6.0.2 branch 2 times, most recently from d8804f3 to ed356f5 Compare April 9, 2026 00:08
Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.9.3 to 6.0.2.
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.2)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/typescript-6.0.2 branch from ed356f5 to 694eb13 Compare April 13, 2026 22:38
@unknowIfGuestInDream
Copy link
Copy Markdown
Contributor

@copilot
typescript 从5.9.3升级到6.0.2 后会编译错误, 我还需要修改什么已让他完成升级?并且不修改我的项目原有的功能
错误信息

Error: src/test/autofill.test.ts(1,25): error TS2591: Cannot find name 'assert'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node` and then add 'node' to the types field in your tsconfig.
Error: src/test/autofill.test.ts(5,1): error TS2593: Cannot find name 'suite'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in your tsconfig.
Error: src/test/autofill.test.ts(12,5): error TS2593: Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in your tsconfig.
Error: src/test/autofill.test.ts(17,5): error TS2593: Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in your tsconfig.
Error: src/test/autofill.test.ts(27,5): error TS2593: Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in your tsconfig.
Error: src/test/extension.test.ts(1,25): error TS2591: Cannot find name 'assert'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node` and then add 'node' to the types field in your tsconfig.
Error: src/test/extension.test.ts(4,1): error TS2593: Cannot find name 'suite'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in your tsconfig.
Error: src/test/extension.test.ts(7,5): error TS2593: Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in your tsconfig.
Error: src/test/extension.test.ts(11,5): error TS2593: Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in your tsconfig.
Error: src/test/extension.test.ts(19,5): error TS2593: Cannot find name 'test'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in your tsconfig.
Error: Process completed with exit code 1.

Agent-Logs-Url: https://github.com/tlcsdm/vscode-java-autofill-arguments/sessions/744f8a62-c602-4307-992d-6b428f27e1f8

Co-authored-by: unknowIfGuestInDream <57802425+unknowIfGuestInDream@users.noreply.github.com>
Copy link
Copy Markdown
Contributor

Copilot AI commented Apr 14, 2026

@copilot
typescript 从5.9.3升级到6.0.2 后会编译错误, 我还需要修改什么已让他完成升级?并且不修改我的项目原有的功能
错误信息
...

已做最小改动修复并保持原有功能不变:在 tsconfig.json 中显式加入 "types": ["node", "mocha"],让 TypeScript 6.0.2 能识别 assert/suite/test。对应提交:56e76b8。本地 npm run compile 已通过;npm test 在当前环境因无法访问 update.code.visualstudio.com(网络限制)失败,不是代码回归。

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • update.code.visualstudio.com
    • Triggering command: /home/REDACTED/work/_temp/ghcca-node/node/bin/node node /home/REDACTED/work/vscode-java-autofill-arguments/vscode-java-autofill-arguments/node_modules/.bin/vscode-test --config ./.vscode-test.json node_modules/.bin/tsc (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

@unknowIfGuestInDream unknowIfGuestInDream merged commit d8916d1 into master Apr 14, 2026
5 checks passed
@unknowIfGuestInDream unknowIfGuestInDream deleted the dependabot/npm_and_yarn/typescript-6.0.2 branch April 14, 2026 00:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants