Skip to content

chore(deps): bump react-infinite-scroll-component from 6.1.1 to 7.2.1 - #9761

Open
dependabot[bot] wants to merge 1 commit into
leaderfrom
dependabot/npm_and_yarn/react-infinite-scroll-component-7.2.1
Open

chore(deps): bump react-infinite-scroll-component from 6.1.1 to 7.2.1#9761
dependabot[bot] wants to merge 1 commit into
leaderfrom
dependabot/npm_and_yarn/react-infinite-scroll-component-7.2.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 13, 2026

Copy link
Copy Markdown
Contributor

Bumps react-infinite-scroll-component from 6.1.1 to 7.2.1.

Release notes

Sourced from react-infinite-scroll-component's releases.

v7.2.1 - Accessibility props

What's new

Accessibility props

You can now pass role, aria-label, aria-labelledby, tabIndex, id, and any aria-* attribute directly to the scroll container:

<InfiniteScroll
  role="list"
  aria-label="Search results"
  dataLength={items.length}
  next={fetchMore}
  hasMore={hasMore}
  loader={<p>Loading...</p>}
>
  {items.map(item => (
    <div role="listitem" key={item.id}>{item.name}</div>
  ))}
</InfiniteScroll>

Closes #411. Thanks to @​sayedrisat for the contribution!

Commits

  • feat: add accessibility props to scroll container (#432)
  • docs: expand accessibility props table and add usage examples (#433)

v7.2.0 - useInfiniteScroll hook

What's new

useInfiniteScroll hook

A new named export for building fully custom infinite scroll UIs. The hook manages the IntersectionObserver lifecycle and exposes sentinelRef and isLoading — your markup, your styles, your loader.

import { useInfiniteScroll } from 'react-infinite-scroll-component';
const { sentinelRef, isLoading } = useInfiniteScroll({
next: fetchMore,
hasMore,
dataLength: items.length,
});

Attach sentinelRef to any element at the end of your list. isLoading is true from when next() fires until dataLength changes.

Accepts the same hasMore, dataLength, next, scrollThreshold, scrollableTarget, and inverse props as the InfiniteScroll component.

... (truncated)

Commits
  • 8f5ee8c chore: bump version to 7.2.1
  • 4b957d0 docs: add sayedrisat to contributors list
  • b7a3600 docs: add accessibility props to table and usage examples
  • dc9f7f4 Scope container props to accessibility attributes
  • 0feacda Add accessibility props to scroll container
  • 92b3249 chore: bump version to 7.2.0
  • d896cc9 fix: update stories.tsx import to renamed ScrollableTop
  • a3102a6 docs: fill empty defaults with dash, expand all prop descriptions
  • d932809 docs: overhaul README and improve package.json metadata
  • b53588b feat: add AGENTS.md and llms.txt for AI discoverability
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by iamdarshshah, a new releaser for react-infinite-scroll-component since your current version.

Install script changes

This version adds prepare script that runs during installation. Review the package contents before updating.


Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [react-infinite-scroll-component](https://github.com/ankeetmaini/react-infinite-scroll-component) from 6.1.1 to 7.2.1.
- [Release notes](https://github.com/ankeetmaini/react-infinite-scroll-component/releases)
- [Commits](ankeetmaini/react-infinite-scroll-component@v6.1.1...v7.2.1)

---
updated-dependencies:
- dependency-name: react-infinite-scroll-component
  dependency-version: 7.2.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added automerge Indicates that the PR should be automatically merged when all checks pass. dependencies major labels Jul 13, 2026
@github-actions

Copy link
Copy Markdown
Contributor

👋 Welcome to HRM!

Thanks for your contribution. This repository uses Gemini AI for automated triage, code review, and generation.

🤖 Gemini Manual Trigger Quick Reference

Command Action
@gemini-bot Run AI Code Review (PR only)
@gemini-enrich Run PR Enrichment (PR only)
@gemini-triage Run Issue Triage
@gemini-coder <task> Generate Code
@create-review-issues Create issues from review (PR only)
@gemini-help Show this help message
@pr-squash Squash PR commits (PR only)
@conflict-resolve Resolve merge conflicts (PR only)

For more details and GitHub CLI examples, see the Manual Trigger Guide.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

automerge Indicates that the PR should be automatically merged when all checks pass. dependencies major

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants