Skip to content

fix(deps): update dependency virtua to ^0.48.6#2968

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/virtua-0.x
Open

fix(deps): update dependency virtua to ^0.48.6#2968
renovate[bot] wants to merge 1 commit intomainfrom
renovate/virtua-0.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 1, 2025

This PR contains the following updates:

Package Change Age Confidence
virtua ^0.45.3^0.48.6 age confidence

Release Notes

inokawa/virtua (virtua)

v0.48.6

Compare Source

What's Changed

  • fix(svelte): filter stale indices in Virtualizer to prevent undefined data access by @​jveres in #​847

New Contributors

Full Changelog: inokawa/virtua@0.48.5...0.48.6

v0.48.5

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.48.4...0.48.5

v0.48.4

Compare Source

What's Changed

New Contributors

Full Changelog: inokawa/virtua@0.48.3...0.48.4

v0.48.3

Compare Source

What's Changed

New Contributors

Full Changelog: inokawa/virtua@0.48.2...0.48.3

v0.48.2

Compare Source

What's Changed

  • Revert flex-direction: column-reverse and writing-mode support by @​inokawa in #​830

Full Changelog: inokawa/virtua@0.48.1...0.48.2

v0.48.1

Compare Source

What's Changed

  • Fix incorrect negative overflow detection especially in Windows by @​inokawa in #​827

Full Changelog: inokawa/virtua@0.48.0...0.48.1

v0.48.0

Compare Source

BREAKING CHANGES

Removed reverse prop from VList for React (#​774)

// before
<VList reverse>{children}</VList>;

// after
// Recommended markup to align items to the bottom
<div
  style={{
    overflowY: "auto",
    height: "100%",
    display: "flex",
    flexDirection: "column",
  }}
>
  <div style={{ flexGrow: 1 }} />
  <Virtualizer>{children}</Virtualizer>
</div>;
// or if you want the exactly same markup as reverse prop, use this
const scrollRef = useRef(null);
<div
  ref={scrollRef}
  style={{
    display: "block",
    overflowY: "auto",
    contain: "strict",
    width: "100%",
    height: "100%",
  }}
>
  <div
    style={{
      display: "flex",
      flexDirection: "column",
      justifyContent: "flex-end",
      minHeight: "100%",
      overflow: "clip",
    }}
  >
    <Virtualizer scrollRef={scrollRef}>{children}</Virtualizer>
  </div>
</div>;
// ...or we can use "column-reverse" to invert scroll direction in 0.48.0. May fit depending on your usecase
<div
  style={{
    height: "100%",
    overflowY: "auto",
    display: "flex",
    flexDirection: "column-reverse",
  }}
>
  <Virtualizer>{children}</Virtualizer>
</div>;

What's Changed

New Contributors

Full Changelog: inokawa/virtua@0.47.2...0.48.0

v0.47.2

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.47.1...0.47.2

v0.47.1

Compare Source

What's Changed

  • Fix crash when removing all items causes viewport to collapse to 0 by @​gne in #​818

New Contributors

Full Changelog: inokawa/virtua@0.47.0...0.47.1

v0.47.0

Compare Source

BREAKING CHANGES

  • Merged findStartIndex/findEndIndex into findItemIndex for more control
// before
handle.findStartIndex();
// after
handle.findItemIndex(handle.scrollOffset);

// before
handle.findEndIndex();
// after
handle.findItemIndex(handle.scrollOffset + handle.viewportSize);
  • Refactored some methods and props of experimental_VGrid #​777

What's Changed

Full Changelog: inokawa/virtua@0.46.7...0.47.0

v0.46.7

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.46.6...0.46.7

v0.46.6

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.46.5...0.46.6

v0.46.5

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.46.4...0.46.5

v0.46.4

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.46.3...0.46.4

v0.46.3

Compare Source

What's Changed

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

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>

// If you don't have opinion about the value of overscan, try the default value first
<VList>
  {...}
</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


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) in timezone America/New_York, Automerge - Monday through Friday ( * * * * 1-5 ) in timezone America/New_York.

🚦 Automerge: Enabled.

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 dependencies Pull requests that update a dependency file renovate-bot labels Nov 1, 2025
@renovate renovate bot added dependencies Pull requests that update a dependency file renovate-bot labels Nov 1, 2025
@renovate renovate bot enabled auto-merge (squash) November 1, 2025 06:57
@netlify
Copy link

netlify bot commented Nov 1, 2025

Deploy Preview for kongponents-sandbox ready!

Name Link
🔨 Latest commit 844539e
🔍 Latest deploy log https://app.netlify.com/projects/kongponents-sandbox/deploys/69b64f3524ffb600081b5d64
😎 Deploy Preview https://deploy-preview-2968--kongponents-sandbox.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@netlify
Copy link

netlify bot commented Nov 1, 2025

Deploy Preview for kongponents ready!

Name Link
🔨 Latest commit 844539e
🔍 Latest deploy log https://app.netlify.com/projects/kongponents/deploys/69b64f35755ad50008387faf
😎 Deploy Preview https://deploy-preview-2968--kongponents.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@renovate renovate bot force-pushed the renovate/virtua-0.x branch 2 times, most recently from 30ec8cd to 329c6bd Compare November 2, 2025 07:15
@renovate renovate bot changed the title fix(deps): update dependency virtua to ^0.46.1 fix(deps): update dependency virtua to ^0.46.2 Nov 2, 2025
@renovate renovate bot force-pushed the renovate/virtua-0.x branch 3 times, most recently from 9194947 to 7632d4a Compare November 4, 2025 08:14
@renovate renovate bot changed the title fix(deps): update dependency virtua to ^0.46.2 fix(deps): update dependency virtua to ^0.46.3 Nov 4, 2025
@renovate renovate bot force-pushed the renovate/virtua-0.x branch 3 times, most recently from c83bffb to cbf38e3 Compare November 11, 2025 05:41
@renovate renovate bot changed the title fix(deps): update dependency virtua to ^0.46.3 fix(deps): update dependency virtua to ^0.46.4 Nov 11, 2025
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from cbf38e3 to 448d0d9 Compare November 15, 2025 07:43
@renovate renovate bot changed the title fix(deps): update dependency virtua to ^0.46.4 fix(deps): update dependency virtua to ^0.46.5 Nov 15, 2025
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from 448d0d9 to b8e0ea2 Compare November 16, 2025 07:05
@renovate renovate bot changed the title fix(deps): update dependency virtua to ^0.46.5 fix(deps): update dependency virtua to ^0.46.6 Nov 16, 2025
@renovate renovate bot force-pushed the renovate/virtua-0.x branch 2 times, most recently from dbcd16c to 054122d Compare November 19, 2025 06:45
@renovate renovate bot force-pushed the renovate/virtua-0.x branch 3 times, most recently from 2ec87fb to e5efcfd Compare December 4, 2025 05:05
@renovate renovate bot changed the title fix(deps): update dependency virtua to ^0.47.0 fix(deps): update dependency virtua to ^0.48.0 Dec 4, 2025
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from e5efcfd to 45befbb Compare December 5, 2025 05:50
@renovate renovate bot changed the title fix(deps): update dependency virtua to ^0.48.0 fix(deps): update dependency virtua to ^0.48.2 Dec 5, 2025
@renovate renovate bot force-pushed the renovate/virtua-0.x branch 3 times, most recently from c8ba17b to f1b3b40 Compare December 13, 2025 06:40
@renovate renovate bot force-pushed the renovate/virtua-0.x branch 3 times, most recently from 7d7c75c to cf9864e Compare December 24, 2025 06:40
@renovate renovate bot force-pushed the renovate/virtua-0.x branch 2 times, most recently from 615f0c8 to 51b4321 Compare December 27, 2025 06:06
@renovate renovate bot force-pushed the renovate/virtua-0.x branch 4 times, most recently from b4b4268 to b93902e Compare January 13, 2026 05:32
@renovate renovate bot force-pushed the renovate/virtua-0.x branch 4 times, most recently from d1995ce to 3da4afe Compare January 19, 2026 08:02
@renovate renovate bot changed the title fix(deps): update dependency virtua to ^0.48.2 fix(deps): update dependency virtua to ^0.48.3 Jan 19, 2026
@renovate renovate bot force-pushed the renovate/virtua-0.x branch 4 times, most recently from 06b371b to 5bec18f Compare January 24, 2026 07:08
@renovate renovate bot force-pushed the renovate/virtua-0.x branch from 5bec18f to f1c524b Compare January 29, 2026 06:30
@renovate renovate bot changed the title fix(deps): update dependency virtua to ^0.48.3 fix(deps): update dependency virtua to ^0.48.4 Jan 29, 2026
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
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 renovate-bot

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants