Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 11, 2025

This PR contains the following updates:

Package Change Age Confidence
virtua 0.42.3 -> 0.46.2 age confidence

Release Notes

inokawa/virtua (virtua)

v0.46.2

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.46.1...0.46.2

v0.46.1

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.46.0...0.46.1

v0.46.0

Compare Source

BREAKING CHANGES

  • overscan prop has been replaced by bufferSize prop, to provide a better default regardless of the size of items. See #​378 for the motivation.
// before
<VList overscan={10}>
  {...}
</VList>
// after (x should be the average item size of your list)
<VList bufferSize={10 * x}>
  {...}
</VList>
  • When ssrCount was set, ssrCount + overscan items were (unintentionally) rendered. Now ssrCount items will be rendered.
// before
<VList ssrCount={10}>
  {...}
</VList>
// after (default overscan was 4)
<VList ssrCount={10 + 4}>
  {...}
</VList>

What's Changed

Full Changelog: inokawa/virtua@0.45.3...0.46.0

v0.45.3

Compare Source

What's Changed

New Contributors

Full Changelog: inokawa/virtua@0.45.2...0.45.3

v0.45.2

Compare Source

What's Changed

  • Fixed bug iPadOS detection was not working on iPadOS 13+ by @​uonr in #​781

New Contributors

Full Changelog: inokawa/virtua@0.45.1...0.45.2

v0.45.1

Compare Source

What's Changed

  • Change default for React props generics from undefined to unknown by @​inokawa in #​780

Full Changelog: inokawa/virtua@0.45.0...0.45.1

v0.45.0

Compare Source

BREAKING CHANGES

count prop was replaced with data prop in React components, for consistent API across frameworks.

const items = [...]

// before
<VList count={items.length}>
  {(i) => <div key={i}>{items[i]}</div>}
</VList>

// after
<VList data={items}>
  {(item, i) => <div key={i}>{item}</div>}
</VList>
// ...or you can migrate like this for now (will be removed in the future)
<VList data={{ length: items.length }}>
  {(_, i) => <div key={i}>{items[i]}</div>}
</VList>

// If you want to display header or footer with index, we recommend migrating to Virtualizer with startMargin
<div style={{ overflowY: 'auto', overflowAnchor: 'none', height: '100%' }}>
  <Header />
  <Virtualizer data={items} startMargin={headerHeight}>
    {(item, i) => <div key={i}>{item}</div>}
  </Virtualizer>
  <Footer />
</div>
// or you can pass elements to children
<VList>
  <Header />
  {items.map((item, i) => <div key={i}>{item}</div>)}
  <Footer />
</VList>

What's Changed

Full Changelog: inokawa/virtua@0.44.3...0.45.0

v0.44.3

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.44.2...0.44.3

v0.44.2

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.44.1...0.44.2

v0.44.1

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.44.0...0.44.1

v0.44.0

Compare Source

BREAKING CHANGES

Changed to ESM-first package structure

What's Changed

Full Changelog: inokawa/virtua@0.43.6...0.44.0

v0.43.6

Compare Source

What's Changed

  • Fixed issue scheduled scroll could be canceled in React Strict Mode by @​inokawa in #​765

Full Changelog: inokawa/virtua@0.43.5...0.43.6

v0.43.5

Compare Source

What's Changed

New Contributors

Full Changelog: inokawa/virtua@0.43.4...0.43.5

v0.43.4

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.43.3...0.43.4

v0.43.3

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.43.2...0.43.3

v0.43.2

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.43.1...0.43.2

v0.43.1

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.43.0...0.43.1

v0.43.0

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.42.4...0.43.0

v0.42.4

Compare Source

What's Changed

New Contributors

Full Changelog: inokawa/virtua@0.42.3...0.42.4


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.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Sep 11, 2025
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from a369761 to b47f6e4 Compare September 13, 2025 04:06
@renovate renovate bot changed the title fix(deps): update dependency virtua to v0.43.0 fix(deps): update dependency virtua to v0.43.1 Sep 13, 2025
@renovate renovate bot changed the title fix(deps): update dependency virtua to v0.43.1 fix(deps): update dependency virtua to v0.43.2 Sep 18, 2025
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from b47f6e4 to 38ffb0c Compare September 18, 2025 17:29
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from 38ffb0c to 910d73e Compare October 19, 2025 13:39
@renovate renovate bot changed the title fix(deps): update dependency virtua to v0.43.2 fix(deps): update dependency virtua to v0.45.3 Oct 19, 2025
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from 910d73e to d857654 Compare October 20, 2025 00:58
@renovate renovate bot changed the title fix(deps): update dependency virtua to v0.45.3 fix(deps): update dependency virtua to v0.46.0 Oct 20, 2025
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from d857654 to b9b754e Compare October 20, 2025 05:36
@renovate renovate bot changed the title fix(deps): update dependency virtua to v0.46.0 fix(deps): update dependency virtua to v0.46.1 Oct 20, 2025
@renovate renovate bot changed the title fix(deps): update dependency virtua to v0.46.1 fix(deps): update dependency virtua to v0.46.2 Oct 20, 2025
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from b9b754e to e96b926 Compare October 20, 2025 15:39
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants