Skip to content

deps(deps): bump @tanstack/react-table from 8.21.3 to 9.2.4 - #305

Merged
a-thomas-22 merged 3 commits into
mainfrom
dependabot/npm_and_yarn/tanstack/react-table-9.2.4
Sep 20, 2026
Merged

a-thomas-22 merged 3 commits into
mainfrom
dependabot/npm_and_yarn/tanstack/react-table-9.2.4

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps @tanstack/react-table from 8.21.3 to 9.2.4.

Release notes

Sourced from @​tanstack/react-table's releases.

@​tanstack/react-table@​9.2.4

Patch Changes

  • Updated dependencies [f72e516]:
    • @​tanstack/table-core@​9.2.4

@​tanstack/react-table@​9.2.3

Patch Changes

@​tanstack/react-table-devtools@​9.1.2

Patch Changes

  • Updated dependencies []:
    • @​tanstack/table-devtools@​9.1.2

@​tanstack/react-table@​9.1.2

Patch Changes

  • Updated dependencies [ff43666]:
    • @​tanstack/table-core@​9.1.2

@​tanstack/react-table-devtools@​9.1.1

Patch Changes

  • Updated dependencies []:
    • @​tanstack/table-devtools@​9.1.1

@​tanstack/react-table@​9.1.1

Patch Changes

  • Updated dependencies [269e0d8]:
    • @​tanstack/table-core@​9.1.1

@​tanstack/react-table-devtools@​9.1.0

Patch Changes

  • Updated dependencies []:
    • @​tanstack/table-devtools@​9.1.0

@​tanstack/react-table@​9.1.0

Patch Changes

  • Updated dependencies [09598d2]:
    • @​tanstack/table-core@​9.1.0

@​tanstack/react-table-devtools@​9.0.1

Patch Changes

... (truncated)

Changelog

Sourced from @​tanstack/react-table's changelog.

9.2.4

Patch Changes

  • Updated dependencies [f72e516]:
    • @​tanstack/table-core@​9.2.4

9.2.3

Patch Changes

9.1.2

Patch Changes

  • Updated dependencies [ff43666]:
    • @​tanstack/table-core@​9.1.2

9.1.1

Patch Changes

  • Updated dependencies [269e0d8]:
    • @​tanstack/table-core@​9.1.1

9.1.0

Patch Changes

  • Updated dependencies [09598d2]:
    • @​tanstack/table-core@​9.1.0

9.0.1

Patch Changes

  • #6521 10accb2 - Column defs built with legacyCreateColumnHelper now accept the built-in filterFn, sortFn, and aggregationFn names, matching the registries useLegacyTable registers at runtime.

  • Updated dependencies []:

    • @​tanstack/table-core@​9.0.1

9.0.0

Major Changes

  • #6512 2327f80 - TanStack Table v9 stable release. See the "Migrating to V9" guide for your framework (e.g. React) for upgrade instructions.

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​tanstack/react-table since your current version.


@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 7, 2026
@vercel

vercel Bot commented Sep 7, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated
blob-flow Ready Ready Preview Sep 20, 2026 7:41am UTC

Request Review

Bumps [@tanstack/react-table](https://github.com/TanStack/table/tree/HEAD/packages/react-table) from 8.21.3 to 9.2.4.
- [Release notes](https://github.com/TanStack/table/releases)
- [Changelog](https://github.com/TanStack/table/blob/main/packages/react-table/CHANGELOG.md)
- [Commits](https://github.com/TanStack/table/commits/@tanstack/react-table@9.2.4/packages/react-table)

---
updated-dependencies:
- dependency-name: "@tanstack/react-table"
  dependency-version: 9.2.4
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/tanstack/react-table-9.2.4 branch from 3d88b13 to f23c223 Compare September 20, 2026 02:23
aatt44zz and others added 2 commits September 20, 2026 02:34
Version 9 drops useReactTable and the get*RowModel options in favour of
useTable with an explicit feature set, and only the registered features
expose their column APIs. Register row sorting, the sorted row model, and
the built-in sort functions once in src/lib/tableFeatures.ts and build the
three sortable tables on it. Column definitions rename sortingFn to sortFn,
and rows read getAllCells() since column visibility is not registered.

The name columns now declare the alphanumeric sort function instead of
relying on 'auto'. Version 8 sampled rows after the tenth when picking a
comparator, so tables of ten rows or fewer always fell back to the
case-sensitive basic comparison; version 9 samples the first ten, which
would make the order depend on which names lead the table. Naming the
comparator keeps it deterministic, and a new leaderboard test pins the
toggle cycle and ordering.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
@a-thomas-22

Copy link
Copy Markdown
Collaborator

Pushed the v9 migration on top of the bump (after merging main, since the branch predated the builders leaderboard):

  • Version 9 drops useReactTable and the get*RowModel options for useTable with an explicit feature set, and only registered features expose their column APIs (hence the getIsSorted / getToggleSortingHandler type errors). A new src/lib/tableFeatures.ts registers row sorting, the sorted row model, and the built-in sort functions once, and the three sortable tables (UsersLeaderboard, TopUsersTable, BuildersLeaderboard) build on it. Column defs rename sortingFn to sortFn; rows read getAllCells() since column visibility is not registered.
  • The name columns now declare sortFn: 'alphanumeric' instead of relying on 'auto'. v8 sampled rows after the tenth when picking a comparator (flatRows.slice(10)), so tables of ten rows or fewer always fell back to the case-sensitive basic comparison. v9 samples the first ten, which would make the order depend on which names lead the table. Naming the comparator keeps it deterministic (case-insensitive, natural number order, bare addresses after named entities). A new UsersLeaderboard test pins the toggle cycle and ordering; the existing builders test already covers custom sortFn plus sortUndefined: 'last' and passes unchanged.

Lint, typecheck, the full test suite with coverage, and the build all pass locally.

@a-thomas-22
a-thomas-22 merged commit 69bc016 into main Sep 20, 2026
8 checks passed
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/tanstack/react-table-9.2.4 branch September 20, 2026 13:48

This branch was successfully deployed

1 active deployment
Preview 894d3dba Deployed Sep 20, 2026 by vercel[bot]
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.

2 participants