Skip to content

chore(deps-dev): bump the dev-dependencies group across 1 directory with 2 updates#60

Merged
guhcostan merged 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-dependencies-00839bddac
Jun 9, 2026
Merged

chore(deps-dev): bump the dev-dependencies group across 1 directory with 2 updates#60
guhcostan merged 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-dependencies-00839bddac

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the dev-dependencies group with 2 updates in the / directory: tsdown and typescript.

Updates tsdown from 0.21.10 to 0.22.0

Release notes

Sourced from tsdown's releases.

v0.22.0

   🚨 Breaking Changes

   🚀 Features

   🐞 Bug Fixes

🔄 Migration Guide

Node.js version

Upgrade to Node.js 22.18.0 or later. Bun and Deno remain supported (experimental).

unrun is no longer bundled

If your environment relies on the unrun config loader (i.e. you're on a Node version without native TypeScript support and use the default auto loader), install it manually:

npm i -D unrun
# or, alternatively, the new tsx loader:
npm i -D tsx

If you use Node.js 22.18.0+ with native TypeScript support, no change is needed — the auto loader will pick native.

dts auto-enabled from tsconfig

If your tsconfig.json has compilerOptions.declaration: true but you do not want tsdown to emit .d.ts files, opt out explicitly:

// tsdown.config.ts
export default defineConfig({
  dts: false,
})

exports.bin auto-detection

... (truncated)

Commits

Updates 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 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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…ith 2 updates

Bumps the dev-dependencies group with 2 updates in the / directory: [tsdown](https://github.com/rolldown/tsdown) and [typescript](https://github.com/microsoft/TypeScript).


Updates `tsdown` from 0.21.10 to 0.22.0
- [Release notes](https://github.com/rolldown/tsdown/releases)
- [Commits](rolldown/tsdown@v0.21.10...v0.22.0)

Updates `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: tsdown
  dependency-version: 0.22.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: typescript
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 7, 2026
@guhcostan

Copy link
Copy Markdown
Owner

⚠️ TypeScript 6 breaking change — needs fix before merge

The typescript 5→6 bump in this PR breaks typecheck. TypeScript 6 no longer implicitly includes Node.js global types (process, Buffer, NodeJS, etc.) — they must be declared explicitly in tsconfig.

Fix needed (one-liner in tsconfig.json):

"compilerOptions": {
  "types": ["node"],
  ...
}

Until that's added, CI will fail with TS2591: Cannot find name 'process' (and similar) across ~20+ files.

The tsdown bump to 0.22.0 looks fine on its own.

I'll open a separate PR that adds "types": ["node"] to tsconfig so this can then be merged cleanly.

@guhcostan

Copy link
Copy Markdown
Owner

PR #64 merges first to add to tsconfig — after that this PR should pass CI cleanly.

guhcostan added a commit that referenced this pull request Jun 9, 2026
TypeScript 6 no longer implicitly includes Node.js globals (process,
Buffer, NodeJS namespace, etc.). Explicit `types: ["node"]` is required.

Unblocks dependabot PR #60 (typescript 5→6 bump).

Co-authored-by: Gustavo Costa (Thoughtworks) <gustavocosta.thoughtworks@latam.com>
@guhcostan

Copy link
Copy Markdown
Owner

@dependabot rebase

@guhcostan guhcostan merged commit a2945b0 into main Jun 9, 2026
4 of 6 checks passed
@guhcostan guhcostan deleted the dependabot/npm_and_yarn/dev-dependencies-00839bddac branch June 9, 2026 17:10
@dependabot @github

dependabot Bot commented on behalf of github Jun 9, 2026

Copy link
Copy Markdown
Contributor Author

Oh no! Something went wrong on our end. Please try again later.

If the problem persists, please contact GitHub support for assistance 🙇

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