Skip to content

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

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

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

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Nov 1, 2025

This PR contains the following updates:

Package Change Age Confidence
virtua ^0.45.3^0.49.0 age confidence

Release Notes

inokawa/virtua (virtua)

v0.49.0

Compare Source

What's Changed

New Contributors

Full Changelog: inokawa/virtua@0.48.8...0.49.0

v0.48.8

Compare Source

What's Changed

Full Changelog: inokawa/virtua@0.48.7...0.48.8

v0.48.7

Compare Source

What's Changed

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

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 is behind base branch, 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
Copy Markdown

netlify bot commented Nov 1, 2025

Deploy Preview for kongponents-sandbox failed.

Name Link
🔨 Latest commit 0db2093
🔍 Latest deploy log https://app.netlify.com/projects/kongponents-sandbox/deploys/69cf65022d766c00087bcc13

@netlify
Copy link
Copy Markdown

netlify bot commented Nov 1, 2025

Deploy Preview for kongponents ready!

Name Link
🔨 Latest commit bbdc819
🔍 Latest deploy log https://app.netlify.com/projects/kongponents/deploys/69cb6b7acf7ae00008c20372
😎 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 2 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
@renovate
Copy link
Copy Markdown
Contributor Author

renovate bot commented Apr 1, 2026

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
Progress: resolved 1, reused 0, downloaded 0, added 0
 ERR_PNPM_NO_MATURE_MATCHING_VERSION  Version 0.49.0 (released 3 days ago) of virtua does not meet the minimumReleaseAge constraint

This error happened while installing a direct dependency of /tmp/renovate/repos/github/Kong/kongponents

The latest release of virtua is "0.49.0". Published at 3/30/2026

If you need the full list of all 190 published versions run "pnpm view virtua versions".

If you want to install the matched version ignoring the time it was published, you can add the package name to the minimumReleaseAgeExclude setting. Read more about it: https://pnpm.io/settings#minimumreleaseageexclude

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