Skip to content

Bump typescript from 5.7.3 to 5.9.3#67

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/typescript-5.9.3
Open

Bump typescript from 5.7.3 to 5.9.3#67
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/typescript-5.9.3

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot bot commented on behalf of github Oct 1, 2025

Bumps typescript from 5.7.3 to 5.9.3.

Release notes

Sourced from typescript's releases.

TypeScript 5.9.3

TypeScript 5.9

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 RC

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 Beta

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8.3

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8

... (truncated)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR 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 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)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.7.3 to 5.9.3.
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.7.3...v5.9.3)

---
updated-dependencies:
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

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

fossabot bot commented Oct 1, 2025

Needs Review

I recommend reviewing this upgrade before merging because the security analysis flagged malicious packages (@​typescript_eslinter/eslint and @​typescript_eslinter/prettier) as potential concerns in the ecosystem, though these are NOT present in this repository. Additionally, TypeScript 5.9 introduces type inference changes that may produce new type errors requiring explicit type arguments in generic function calls. The codebase uses strict TypeScript with generic types (Omit, Partial) and should be validated with 'npx tsc --noEmit' before merging to ensure no new type errors are introduced.

What we checked

  • TypeScript dependency upgraded to ^5.9.3 in devDependencies [1]
  • Uses generic utility types (Omit<User, ...>) that may be affected by TypeScript 5.9 type inference changes [2]
  • Uses nested generic types (Partial<Omit<User, ...>>) that may require explicit type arguments under TypeScript 5.9's stricter inference rules [3]
  • Strict mode enabled with noImplicitAny and strictNullChecks, making the codebase more susceptible to new type errors from TypeScript 5.9's stricter type inference [4]
  • Official TypeScript 5.9 release notes document type inference changes that may introduce new errors and require adding type arguments to generic function calls [5]
  • TypeScript breaking changes documentation provides guidance on handling enum improvements and stricter type checking across versions [6]

Dependency Usage

TypeScript serves as the foundational development toolchain for this full-stack CRUD application, enabling strict type checking across both the Express backend server and React frontend client. The compiler is configured with strict mode and powers the development workflow through ts-node for server execution and provides type safety for all application routes, models, API calls, and UI components. While no direct runtime imports are detected, TypeScript is architecturally critical as a build-time dependency that ensures type correctness across 14 TypeScript source files spanning server routes, data models, and client-side React components.

Changes

TypeScript upgraded with bug fixes addressing issues from the 3.3 milestone. This is a maintenance update with no breaking changes or security fixes.

References (6)

[1]: TypeScript dependency upgraded to ^5.9.3 in devDependencies

"typescript": "^5.9.3"

[2]: Uses generic utility types (Omit<User, ...>) that may be affected by TypeScript 5.9 type inference changes

create: (userData: Omit<User, 'id' | 'createdAt' | 'updatedAt'>): User => {

[3]: Uses nested generic types (Partial<Omit<User, ...>>) that may require explicit type arguments under TypeScript 5.9's stricter inference rules

update: (id: string, userData: Partial<Omit<User, 'id' | 'createdAt' | 'updatedAt'>>): User | undefined => {

[4]: Strict mode enabled with noImplicitAny and strictNullChecks, making the codebase more susceptible to new type errors from TypeScript 5.9's stricter type inference

"strict": true,

[5]: Official TypeScript 5.9 release notes document type inference changes that may introduce new errors and require adding type arguments to generic function calls (source link)

[6]: TypeScript breaking changes documentation provides guidance on handling enum improvements and stricter type checking across versions (source link)


fossabot analyzed this PR using dependency research.

@github-actions
Copy link
Copy Markdown

github-actions bot commented Oct 1, 2025

🤖 Dependabot Metadata:

  • Dependency Names: typescript
  • Package Ecosystem: npm_and_yarn
  • From version: 5.7.3
  • To version: 5.9.3
  • URL: ``
  • Compatibility Score: 0
  • Maintainer Changes: false
  • Update Type: version-update:semver-minor
  • Updated Dependencies JSON: [{"dependencyName":"typescript","dependencyType":"direct:development","updateType":"version-update:semver-minor","directory":"/","packageEcosystem":"npm_and_yarn","targetBranch":"main","prevVersion":"5.7.3","newVersion":"5.9.3","compatScore":0,"maintainerChanges":false,"dependencyGroup":"","alertState":"","ghsaId":"","cvss":0}]

@Zhuochengyu
Copy link
Copy Markdown
Collaborator

test

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant