chore(deps): bump eslint 10, @eslint/js 10, typescript 6, typescript-eslint 8.59#83
Open
smeiring wants to merge 1 commit into
Open
chore(deps): bump eslint 10, @eslint/js 10, typescript 6, typescript-eslint 8.59#83smeiring wants to merge 1 commit into
smeiring wants to merge 1 commit into
Conversation
Resolves peer dependency conflicts blocking dependabot PRs ctrf-io#53, ctrf-io#73, and ctrf-io#75. All four ESLint/TS packages must move together — typescript-eslint@8.38 capped both eslint at ^9 and typescript at <5.9. Breaking-change-free dev tooling bump: - eslint: ^9.32.0 → ^10.4.0 (closes ctrf-io#73) - @eslint/js: ^9.32.0 → ^10.0.1 (closes ctrf-io#53) - typescript: ^5.8.3 → ^6.0.3 (closes ctrf-io#75) - typescript-eslint: ^8.38.0 → ^8.59.4 Minor/patch updates included in the same install pass: - @slack/web-api: ^7.9.3 → ^7.16.0 - @slack/webhook: ^7.0.5 → ^7.0.9 - glob: ^13.0.0 → ^13.0.6 - handlebars: ^4.7.8 → ^4.7.9 - handlebars-helpers-ctrf: ^0.0.6 → ^0.0.8 - @d2t/vitest-ctrf-json-reporter: ^1.2.0 → ^1.3.0 - @types/node: ^25.5.0 → ^25.9.1 - @types/yargs: ^17.0.32 → ^17.0.35 - prettier: ^3.5.3 → ^3.8.3 - typedoc: ^0.28.9 → ^0.28.19 - typedoc-plugin-markdown: ^4.8.0 → ^4.11.0 Also fix two preserve-caught-error lint errors in src/client/client.ts (new rule enforced by typescript-eslint@8.59 — re-throws now forward the original error as { cause }). All checks pass: tsc --noEmit, vitest (24 tests), eslint (0 errors), prettier. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
smeiring
force-pushed
the
chore/bump-eslint10-typescript6
branch
from
May 23, 2026 02:12
c73f4c7 to
709781a
Compare
4 tasks
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.
Summary
Resolves the peer dependency conflicts blocking dependabot PRs #53, #73, and #75, and pulls in all other pending minor/patch updates in the same pass.
The core ESLint/TypeScript bump (these must move together):
eslint:^9.32.0→^10.4.0(closes chore(deps-dev): bump eslint from 9.39.4 to 10.4.0 #73)@eslint/js:^9.32.0→^10.0.1(closes chore(deps-dev): bump @eslint/js from 9.39.4 to 10.0.1 #53)typescript:^5.8.3→^6.0.3(closes chore(deps-dev): bump typescript from 5.9.3 to 6.0.3 #75)typescript-eslint:^8.38.0→^8.59.4— the enabler; v8.59 expanded peer dep support toeslint ^10andtypescript <6.1Minor/patch updates included in the same install pass:
@slack/web-api:^7.9.3→^7.16.0@slack/webhook:^7.0.5→^7.0.9glob:^13.0.0→^13.0.6handlebars:^4.7.8→^4.7.9handlebars-helpers-ctrf:^0.0.6→^0.0.8@d2t/vitest-ctrf-json-reporter:^1.2.0→^1.3.0@types/node:^25.5.0→^25.9.1@types/yargs:^17.0.32→^17.0.35prettier:^3.5.3→^3.8.3typedoc:^0.28.9→^0.28.19typedoc-plugin-markdown:^4.8.0→^4.11.0Additional fixes:
preserve-caught-errorlint errors insrc/client/client.ts(new rule enforced bytypescript-eslint@8.59) — both catch-and-rethrow blocks now forward the original error as{ cause }.format:checkwas already failing onmain).Note:
vitestand@vitest/coverage-v8have a major release (3→4) available but are left for a separate PR.Test plan
npm run build:check— TypeScript 6 type-check passes with zero errorsnpm test— all 24 tests passnpm run lint:check— 0 errors (25 pre-existingno-explicit-anywarnings, unchanged)npm run format:check— all files pass🤖 Generated with Claude Code