Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 31, 2025

This PR contains the following updates:

Package Change Age Confidence
virtua ^0.41.5 -> ^0.45.0 age confidence

Release Notes

inokawa/virtua (virtua)

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

v0.42.3

Compare Source

What's Changed

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

v0.42.2

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.42.1...0.42.2

v0.42.1

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.42.0...0.42.1

v0.42.0

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.41.5...0.42.0


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

github-actions bot commented Aug 31, 2025

built with Refined Cloudflare Pages Action

⚡ Cloudflare Pages Deployment

Name Status Preview Last Commit
diffs ❌ Failed (View Log) c5011ef

@renovate renovate bot force-pushed the renovate/virtua-0.x branch from c40ef6e to 44cd8c9 Compare September 5, 2025 12:41
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from 44cd8c9 to d7aef95 Compare September 8, 2025 14:24
@renovate renovate bot changed the title Update dependency virtua to ^0.42.0 Update dependency virtua to ^0.43.0 Sep 11, 2025
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from d7aef95 to d0bd240 Compare September 11, 2025 05:36
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from d0bd240 to df68fad Compare September 13, 2025 23:13
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from df68fad to 4395571 Compare September 18, 2025 17:26
@github-actions github-actions bot requested a deployment to Preview September 18, 2025 17:27 Abandoned
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from 4395571 to 256171e Compare September 22, 2025 06:04
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from 256171e to 5bdcb17 Compare September 23, 2025 10:59
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from 5bdcb17 to d585cef Compare September 27, 2025 16:33
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from d585cef to 6511c72 Compare September 29, 2025 14:44
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from 6511c72 to fe71171 Compare October 2, 2025 00:44
@renovate renovate bot changed the title Update dependency virtua to ^0.43.0 Update dependency virtua to ^0.44.0 Oct 2, 2025
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from fe71171 to f1afd64 Compare October 4, 2025 12:41
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from f1afd64 to 6917942 Compare October 7, 2025 14:45
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from 6917942 to 13a3f59 Compare October 10, 2025 12:52
@renovate renovate bot changed the title Update dependency virtua to ^0.44.0 Update dependency virtua to ^0.45.0 Oct 10, 2025
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from 3f16327 to c5011ef Compare October 11, 2025 12:53
@github-actions github-actions bot requested a deployment to Preview October 11, 2025 12:55 Abandoned
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