Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency react-table to v7 #112

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 24, 2025

This PR contains the following updates:

Package Type Update Change OpenSSF
react-table (source) dependencies major 6.8.6 -> 7.8.0 OpenSSF Scorecard

Release Notes

tannerlinsley/react-table (react-table)

v7.8.0

Compare Source

What's Changed

New Contributors

Full Changelog: TanStack/table@v7.7.0...v7.8.0

v7.7.0

Compare Source

Features

v7.6.3

Compare Source

Bug Fixes
  • provide parentRows and data to accessor (f97fb98)

v7.6.2

Compare Source

Bug Fixes

v7.6.1

Compare Source

Bug Fixes

v7.6.0

Compare Source

Bug Fixes
Features
  • useGridLayout: Add functionality for proposed useGridLayout (#​2525) (0c805a7)

v7.5.2

Compare Source

Bug Fixes

v7.5.1

Compare Source

Bug Fixes

v7.5.0

Compare Source

Features
  • useRowSelect: Improve usePagination integration - only select rows on current page (#​2585) (205c7a9)

v7.4.2

Compare Source

Bug Fixes

v7.4.1

Compare Source

Bug Fixes

v7.4.0

Compare Source

Bug Fixes
  • Add useExpanded in the pluginOrder because selection get broken if it's before. (#​2581) (fdb1ebe)
  • initalState sortBy fix, if the last sortBy column is clicked we will replace the sort state, not toggle it (#​2508) (20ecd35)
  • update tests (ec8dcb1)
Features

v7.3.5

Compare Source

Bug Fixes

v7.3.4

Compare Source

Bug Fixes
  • useSortBy: fix the bug that causes flatRows to be incorrect when sorting and using subRows (#​2443) (b2d0aa6)

v7.3.3

Compare Source

Bug Fixes
  • Use references to renderers instead of inline functions (#​2584) (aa28357)

v7.3.2

Compare Source

Bug Fixes

v7.3.1

Compare Source

Bug Fixes

v7.3.0

Compare Source

Features

v7.2.2

Compare Source

Bug Fixes

v7.2.1

Compare Source

Bug Fixes

v7.2.0

Compare Source

Bug Fixes
  • layout plugins: add support for footers in layout plugins (#​2430) (afe4754)
Features

v7.1.0

Compare Source

Bug Fixes
Features
  • useFilters: add filterTypes: includesSome & includesValue (#​2329) (1d729b9)

v7.0.6

Compare Source

Bug Fixes

v7.0.5

Compare Source

v7.0.4

Compare Source

v7.0.3

Compare Source

v7.0.2

Compare Source

v7.0.1

Compare Source

v7.0.0

React Table v7 marks the culmination of over a years worth of work to refactor the entire library to a hooks-only UI/Style/Markup agnostic table building utility.

This latest version is a collection of React hooks and plugins (which are also hooks!) that help you flexibly compose logical features of the most complex data grids into a single API returned by the primary useTable hook. This API is performant, extensible, and unopinionated about markup, styles or rendering.

From the new Concepts documentation page:

React Table v7 is a headless utility, which means out of the box, it doesn't render or supply any actual UI elements. You are in charge of utilizing the state and callbacks of the hooks provided by this library to render your own table markup. Read this article to understand why React Table is built this way. If you don't want to, then here's a quick rundown anyway:

  • Separation of Concerns - Not that superficial kind you read about all the time. The real kind. React Table as a library honestly has no business being in charge of your UI. The look, feel, and overall experience of your table is what makes your app or product great. The less React Table gets in the way of that, the better!
  • Maintenance - By removing the massive (and seemingly endless) API surface area required to support every UI use-case, React Table can remain small, easy-to-use and simple to update/maintain.
  • Extensibility - UI presents countless edge cases for a library simply because it's a creative medium, and one where every developer does things differently. By not dictating UI concerns, React Table empowers the developer to design and extend the UI based on their unique use-case.
Features from the README:
  • Lightweight (5kb - 14kb+ depending on features used and tree-shaking)
  • Headless (100% customizable, Bring-your-own-UI)
  • Auto out of the box, fully controllable API
  • Sorting (Multi and Stable)
  • Filters
  • Pivoting & Aggregation
  • Row Selection
  • Row Expansion
  • Column Ordering
  • Animatable
  • Virtualizable
  • Resizable
  • Server-side/controlled data/state
  • Extensible via hook-based plugin system
A special thanks!

With the help of many contributors and awesome sponsors, React Table has become a very powerful tool that will continue to support the React ecosystem for many years to come.

Well, what are you waiting for!

Go get started!

v6.11.4

Compare Source

v6.11.3

Compare Source

v6.10.2

Compare Source

v6.10.1

Compare Source

v6.10.0

Compare Source

v6.9.0

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

sourcery-ai bot commented Jan 24, 2025

Reviewer's Guide by Sourcery

This pull request updates the react-table dependency from version 6.8.6 to 7.8.0. This is a major version update, which includes significant changes to the library's API and internal structure. The update was performed by Renovate.

Class diagram showing major changes in react-table v7

classDiagram
    class ReactTable_v6 {
      +render()
      +state
      +props
    }
    class ReactTable_v7 {
      +useTable()
      +useFilters()
      +useSortBy()
      +usePagination()
      +useRowSelect()
      +useColumnOrder()
    }
    note for ReactTable_v7 "Converted to hooks-based API
Headless UI approach"
    ReactTable_v6 --> ReactTable_v7: Major version update
Loading

File-Level Changes

Change Details Files
Updated react-table dependency to v7
  • Updated react-table version from 6.8.6 to 7.8.0 in package.json.
  • Updated react-table version in package-lock.json.
client/package.json
client/package-lock.json

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!
  • Generate a plan of action for an issue: Comment @sourcery-ai plan on
    an issue to generate a plan of action for it.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have skipped reviewing this pull request. It seems to have been created by a bot (hey, renovate[bot]!). We assume it knows what it's doing!

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/react-table-7.x branch from 49b96e7 to 8d086e5 Compare January 24, 2025 19:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants