Skip to content

chore(deps-dev): bump typescript from 5.9.3 to 7.0.2 in /clawhub-plugin - #5261

Merged
vivekchand merged 24 commits into
mainfrom
dependabot/npm_and_yarn/clawhub-plugin/typescript-7.0.2
Sep 6, 2026
Merged

chore(deps-dev): bump typescript from 5.9.3 to 7.0.2 in /clawhub-plugin#5261
vivekchand merged 24 commits into
mainfrom
dependabot/npm_and_yarn/clawhub-plugin/typescript-7.0.2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 26, 2026

Copy link
Copy Markdown
Contributor

Bumps typescript from 5.9.3 to 7.0.2.

Release notes

Sourced from typescript's releases.

TypeScript 7.0.2

https://devblogs.microsoft.com/typescript/announcing-typescript-7-0/

This tag was originally released at: https://github.com/microsoft/typescript-go/releases/tag/typescript%2Fv7.0.2

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.1 RC

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
  • 1e4744d Merge branch 'main' into ts7-release
  • a5a219cmicrosoft/typescript-go#4558
  • ecfe30d Update status localization
  • 5de25b5 Hide executable name in TypeScript status
  • d7ce74a Show bundled TypeScript version for packaged servers
  • 29be66a Correct TS 7 release version to 7.0.2
  • ed2bd1b Merge branch 'main' into ts7-release
  • 8873075 Bump the github-actions group across 1 directory with 3 updates (microsoft/ty...
  • 9427131 Set up stable / nightly extension split, other prep (microsoft/typescript-go#...
  • d4eaca5microsoft/typescript-go#4549
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by microsoft1es, a new releaser for typescript 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 [typescript](https://github.com/microsoft/TypeScript) from 5.9.3 to 7.0.2.
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v7.0.2)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Aug 26, 2026
@dependabot
dependabot Bot requested a review from vivekchand as a code owner August 26, 2026 12:55
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Aug 26, 2026

@vivekchand vivekchand left a comment

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test plan & review notes

Repo: vivekchand/clawmetry

What changed

  • clawhub-plugin/package.json: dev-dep typescript bumped from ^5.4.0^7.0.2 (one line, dev-only)

Note on the E2E Gate failure
The E2E Gate (required) failure here appears to be the same systemic drift-bot issue blocking every open dependabot PR right now — not something introduced by the TypeScript version bump. Other unrelated PRs (#5260, #5257, #5247, etc.) show the identical failure signature. Clearing it requires updating the product blueprint in 8090 Software Factory to match the current codebase state; that's an owner/author call, not a code problem in this PR.

Why this one deserves a manual look before merging
TypeScript 7 is a significant release — the compiler is now the Go-based tsc binary (typescript-go), not the Node.js one. For a simple plugin that just uses tsc as a build/type-check step this is usually fine, but worth a quick sanity check:

cd clawhub-plugin
npm install          # picks up TS 7.0.2
npx tsc --version    # should print 7.0.2
npx tsc --noEmit     # zero type errors expected

What to look at

  • clawhub-plugin/ compiles clean with TS 7
  • No package-lock.json or yarn.lock change is in the diff — if the plugin has one, it may need a manual npm install + commit to keep it in sync

Issue link
No linked issue found (routine dep bump — none expected).


Generated by Claude Code

@vivekchand vivekchand left a comment

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test plan & review notes

Repo: vivekchand/clawmetry

What changed

  • Bumps typescript dev-dependency in clawhub-plugin/ from ^5.4.0 to ^7.0.2

Why this warrants a quick eyeball

TypeScript 7 is the Go-rewrite release — it's not a normal semver bump. The compiler is ~10× faster, but it dropped some APIs and tightened type-checking in ways that can surface latent errors that 5.x silently accepted. The ^7.0.2 range will auto-accept future 7.x releases, so worth validating now rather than in a follow-up fire drill.

Smoke commands

cd clawhub-plugin
npm install
npx tsc --noEmit          # should pass clean — any new errors are this PR's business
npm run build             # if the plugin has a build step

Likely failure modes

  • Stricter excess-property checks or narrowed utility types that compiled fine under 5.x
  • Any use of @ts-ignore or as any that masked a type that 7.x now enforces at the declaration site
  • Plugin manifest / .d.ts shape changes if the plugin exports types consumed by the main dashboard

Issue link
No Closes #N found in the body. Dependabot bumps don't usually need one, but if there's a tracking issue for the TypeScript 7 migration, linking it here would help reviewers confirm scope.


Generated by Claude Code

Copy link
Copy Markdown
Owner

✨ auto-fixed: merged latest main into branch (was BEHIND), CI re-running


Generated by Claude Code

Copy link
Copy Markdown
Owner

✨ auto-fixed: merged latest main into branch to bring it up to date


Generated by Claude Code

Copy link
Copy Markdown
Owner

✨ auto-fixed: merged latest main into branch (branch was BEHIND)


Generated by Claude Code

Copy link
Copy Markdown
Owner

Blocked on the drift-bot required status. The 8090 Software Factory bot has detected that code here diverges from its blueprint in the private factory system. Updating the blueprint at factory.8090.ai is required to get drift-bot to pass — that access is outside this sweep's scope.

No action taken by the pr-sweeper.


Generated by Claude Code

Copy link
Copy Markdown
Owner

·@·d·ependabot r·ebase


Generated by Claude Code

2 similar comments

Copy link
Copy Markdown
Owner

·@·d·ependabot r·ebase


Generated by Claude Code

Copy link
Copy Markdown
Owner

·@·d·ependabot r·ebase


Generated by Claude Code

Copy link
Copy Markdown
Owner

✨ auto-fixed: merged main into branch to bring it up to date (was BEHIND main)


Generated by Claude Code

Copy link
Copy Markdown
Owner

·@·d·ependabot r·ebase


Generated by Claude Code

Copy link
Copy Markdown
Owner

✨ auto-fixed: merged main into branch (was BEHIND)


Generated by Claude Code

Copy link
Copy Markdown
Owner

✨ auto-fixed: merged main into branch (was behind — Trail data layer + supply chain hardening)


Generated by Claude Code

Copy link
Copy Markdown
Owner

Test plan & review notes

Repo: vivekchand/clawmetry

What changed

  • typescript bumped 5.9.3 → 7.0.2 in /clawhub-plugin — dev dep (type-checking and build only, not runtime)

Heads up: major version jump (skips 6.x)
TypeScript 7.x is a significant milestone. Worth scanning the TS 7.0 migration notes for any new strictness or removed CLI flags that could cause build errors in clawhub-plugin source, even though it's a dev dep.

Smoke commands

cd clawhub-plugin
npm ci
npx tsc --noEmit          # should produce zero errors
npm run build             # if a build script exists

Likely failure modes from the diff

  • Stricter type inference in TS 7 flagging previously-accepted patterns
  • Build script referencing removed/renamed tsc CLI flags

Current blocker
drift-bot (8090 Software Factory) required check is failing — needs the product blueprint at factory.8090.ai updated before the E2E Gate can pass. No code change in this PR will fix that.


Generated by Claude Code

Copy link
Copy Markdown
Owner

✨ auto-fixed: merged main into branch via update_pull_request_branch (branch was behind)


Generated by Claude Code

Copy link
Copy Markdown
Owner

Auto-mergeability sweep: Drift Bot check failing — blueprint update required at factory.8090.ai before this PR can pass E2E Gate. Cannot fix externally. Skipping.


Generated by Claude Code

@vivekchand
vivekchand merged commit a83fa07 into main Sep 6, 2026
37 checks passed
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/clawhub-plugin/typescript-7.0.2 branch September 6, 2026 21:39
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant