Consolidate Dependabot dependency bumps - #18
Merged
Conversation
…13, #14, #15, #16) - typescript 5.9.3 -> 6.0.3 (NOT 7.0.2 as Dependabot proposed -- typescript-eslint does not yet support TS 7.0, confirmed via a hard error referencing typescript-eslint/typescript-eslint#10940; 6.0.3 is the latest version it does support) - eslint 8.57.1 -> 10.9.1, requiring a migration from .eslintrc.json (legacy format, removed) to eslint.config.js (flat config, required by ESLint v9+) - @typescript-eslint/parser and eslint-plugin 6.21.0 -> 8.67.0 - react 18.2.0 -> 19.2.8, @types/react 18.2.0 -> 19.2.18 - react-native (devDependency) 0.73.11 -> 0.87.1 - @types/node added as an explicit devDependency (was only present transitively; the package uses Buffer directly, so this should not have been implicit) - @eslint/js added (required by the new flat-config format) Fixes required by these bumps, none optional: - React 19 moved the global JSX namespace to React.JSX -- fixed the one usage in context.tsx - TypeScript 6/7's stricter @types inclusion needed an explicit types: ["node"] in tsconfig.json (same root cause fixed in the cli and node SDKs' PRs earlier today) - tsup's DTS build step hit TS5101 (baseUrl deprecation warning promoted to a hard error under TS 6.0) -- added ignoreDeprecations: "6.0" to acknowledge it rather than silently work around it - eslint.config.js needed explicit Node globals (Buffer, process, console, __dirname) that the legacy .eslintrc.json's env: { node: true } provided automatically; flat config has no equivalent shorthand Verified: typecheck, lint, build, npm audit --omit=dev (0 vulnerabilities), and npm pack --dry-run all clean.
This was referenced Aug 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Consolidates 7 separate Dependabot PRs (#9, #10, #12, #13, #14, #15, #16) into one, since several of the bumps had real breaking-change interactions with each other that needed fixing together rather than merging one-by-one.
Bumps applied
react-native0.73.11 → 0.87.1react18.2.0 → 19.2.8,@types/react18.2.0 → 19.2.18eslint8.57.1 → 10.9.1@typescript-eslint/parser+@typescript-eslint/eslint-plugin6.21.0 → 8.67.0One deviation from what Dependabot proposed
typescript: 5.9.3 → 6.0.3, not 7.0.2 as PR chore(deps-dev): bump typescript from 5.9.3 to 7.0.2 #10 proposed.typescript-eslintdoes not yet support TS 7.0 (tracked upstream) — confirmed with a hard error, not assumed. 6.0.3 is the latest version it does support.Fixes required by these bumps
JSXnamespace toReact.JSX— fixed the one usage incontext.tsxeslint.config.js) — migrated off the legacy.eslintrc.json, including replacing itsenv: { node: true }shorthand with explicit globals (flat config has no equivalent)@typesinclusion needed explicittypes: ["node"]in tsconfig (same fix already applied to thecliand Node SDKs)@types/nodeadded as an explicit devDependency — the package usesBufferdirectly, so this shouldn't have been an implicit transitive dependencybaseUrl) — addedignoreDeprecations: "6.0"to acknowledge itVerified
typecheck,lint,build,npm audit --omit=dev(0 vulnerabilities), andnpm pack --dry-runall clean.Closes #9, closes #10, closes #12, closes #13, closes #14, closes #15, closes #16.