Skip to content

Bump @lisse/react from 0.3.2 to 0.7.2 - #38

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/lisse/react-0.7.2
Open

Bump @lisse/react from 0.3.2 to 0.7.2#38
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/lisse/react-0.7.2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 28, 2026

Copy link
Copy Markdown

Bumps @lisse/react from 0.3.2 to 0.7.2.

Release notes

Sourced from @​lisse/react's releases.

@​lisse/react@​0.7.2

Patch Changes

  • 8135ff7: Flipping shadowStrategy no longer strips the wrapper's stacking context. Two owners were writing isolation on the same wrapper: core's drop-shadow handle ref-counted it, and the React and Octane components declared it inline whenever a box-shadow sibling rendered. During the SVG phase the component declared nothing, so core saved "". On the flip to box-shadow the render committed the component's own isolation: isolate, the shadow-toggle effect then destroyed the drop-shadow handle, and its release wrote that saved "" straight over it — leaving the z-index: -1 sibling free to paint behind an ancestor background. A fresh box-shadow mount was never affected, because core skips the handle entirely there.

    The adapters now hold an isolation count of their own for as long as the sibling is mounted, taken before the handle is torn down, so the shared count never reaches zero mid-handover. acquireIsolation and releaseIsolation are exported from @lisse/core for that, alongside the existing acquirePosition and releasePosition.

    @lisse/vue and @lisse/svelte are unaffected — neither ships shadowStrategy, so core stays the only writer — and carry the patch only to keep the four linked packages on one version.

  • c18f7e1: No functional change. These three move with @lisse/vue's ReDoS-pattern fix so the four linked packages keep releasing on one version — Changesets only rewrites members of a linked group that already have a release of their own, so a lone changeset diverges the group and the next patch then skips a version for everyone else.

  • Updated dependencies [8135ff7]

  • Updated dependencies [c18f7e1]

    • @​lisse/core@​0.7.2

@​lisse/react@​0.7.1

Patch Changes

  • Updated dependencies [ee659b8]
    • @​lisse/core@​0.7.1

@​lisse/react@​0.7.0

Minor Changes

  • 6792031: Mounting a squircled element now costs 2 getComputedStyle reads instead of 4-5. The reads were spread across auto-extraction, the commit-time sync, and the resize flush, and several of them re-measured a size that had already been read in the same frame.

    • extractAndStripEffects returns the element's border box as size, taken from the declaration it already reads, so the first sync after an extraction does not read again. The border box survives the strip: border-box sizing is unchanged by border removal, and content-box padding compensation adds back exactly the widths removed.
    • The resize flush takes one declaration per element and derives the size from it, and skips a ResizeObserver notification whose reported box matches what the last flush measured. The flush still measures live rather than trusting borderBoxSize, which is a frame stale by flush time.
    • New observeAnchor(anchor, target) replaces the hand-rolled observeResize(anchor, () => requestMeasure(target)) in all three adapters and skips the anchor's first dispatch, which lands in the flush that already measured the target.
    • getLayoutSize(el, cs?) accepts a pre-read declaration, matching parseBorder. MeasuredSize is exported.

Patch Changes

  • Updated dependencies [6792031]
    • @​lisse/core@​0.7.0

@​lisse/react@​0.6.4

Patch Changes

  • 71d8781: Keep a border-radius set on an asChild child instead of clearing it as the SSR fallback. SmoothCorners only checked its own style prop, but Slot merges the child's style last, so a radius set on the child is the one that reaches the DOM and it was being removed once the clip-path landed.
  • 6442774: Keep a per-corner border-radius longhand out of the SSR fallback teardown. Only the borderRadius shorthand counted as consumer-supplied, so a borderTopLeftRadius armed the fallback anyway — and clearing the shorthand once the clip-path landed erased the longhand with it.

@​lisse/react@​0.6.3

Patch Changes

  • Updated dependencies [d2ebc30]
  • Updated dependencies [1494a0c]
    • @​lisse/core@​0.6.3

@​lisse/react@​0.6.2

Patch Changes

... (truncated)

Changelog

Sourced from @​lisse/react's changelog.

0.7.2

Patch Changes

  • 8135ff7: Flipping shadowStrategy no longer strips the wrapper's stacking context. Two owners were writing isolation on the same wrapper: core's drop-shadow handle ref-counted it, and the React and Octane components declared it inline whenever a box-shadow sibling rendered. During the SVG phase the component declared nothing, so core saved "". On the flip to box-shadow the render committed the component's own isolation: isolate, the shadow-toggle effect then destroyed the drop-shadow handle, and its release wrote that saved "" straight over it — leaving the z-index: -1 sibling free to paint behind an ancestor background. A fresh box-shadow mount was never affected, because core skips the handle entirely there.

    The adapters now hold an isolation count of their own for as long as the sibling is mounted, taken before the handle is torn down, so the shared count never reaches zero mid-handover. acquireIsolation and releaseIsolation are exported from @lisse/core for that, alongside the existing acquirePosition and releasePosition.

    @lisse/vue and @lisse/svelte are unaffected — neither ships shadowStrategy, so core stays the only writer — and carry the patch only to keep the four linked packages on one version.

  • c18f7e1: No functional change. These three move with @lisse/vue's ReDoS-pattern fix so the four linked packages keep releasing on one version — Changesets only rewrites members of a linked group that already have a release of their own, so a lone changeset diverges the group and the next patch then skips a version for everyone else.

  • Updated dependencies [8135ff7]

  • Updated dependencies [c18f7e1]

    • @​lisse/core@​0.7.2

0.7.1

Patch Changes

  • Updated dependencies [ee659b8]
    • @​lisse/core@​0.7.1

0.7.0

Minor Changes

  • 6792031: Mounting a squircled element now costs 2 getComputedStyle reads instead of 4-5. The reads were spread across auto-extraction, the commit-time sync, and the resize flush, and several of them re-measured a size that had already been read in the same frame.

    • extractAndStripEffects returns the element's border box as size, taken from the declaration it already reads, so the first sync after an extraction does not read again. The border box survives the strip: border-box sizing is unchanged by border removal, and content-box padding compensation adds back exactly the widths removed.
    • The resize flush takes one declaration per element and derives the size from it, and skips a ResizeObserver notification whose reported box matches what the last flush measured. The flush still measures live rather than trusting borderBoxSize, which is a frame stale by flush time.
    • New observeAnchor(anchor, target) replaces the hand-rolled observeResize(anchor, () => requestMeasure(target)) in all three adapters and skips the anchor's first dispatch, which lands in the flush that already measured the target.
    • getLayoutSize(el, cs?) accepts a pre-read declaration, matching parseBorder. MeasuredSize is exported.

Patch Changes

  • Updated dependencies [6792031]
    • @​lisse/core@​0.7.0

0.6.4

Patch Changes

  • 71d8781: Keep a border-radius set on an asChild child instead of clearing it as the SSR fallback. SmoothCorners only checked its own style prop, but Slot merges the child's style last, so a radius set on the child is the one that reaches the DOM and it was being removed once the clip-path landed.
  • 6442774: Keep a per-corner border-radius longhand out of the SSR fallback teardown. Only the borderRadius shorthand counted as consumer-supplied, so a borderTopLeftRadius armed the fallback anyway — and clearing the shorthand once the clip-path landed erased the longhand with it.

0.6.3

Patch Changes

  • Updated dependencies [d2ebc30]

... (truncated)

Commits
  • c4c943d chore: version packages (#144)
  • e421c61 build: typecheck test sources in every package (#149)
  • 8135ff7 fix: keep one owner for the wrapper isolation (#147)
  • ac693d8 chore: version packages (#136)
  • 958674a chore: version packages (#133)
  • 6792031 perf(core): collapse per-element computed-style reads at mount (#132)
  • 2dbd6e8 chore: version packages (#130)
  • 6442774 fix(react,vue): stop the corner-radius fallback from eating consumer styles (...
  • 71d8781 Keep an asChild child's border-radius out of the fallback teardown (#128)
  • 50d2142 chore: version packages (#124)
  • Additional commits viewable in compare view

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 [@lisse/react](https://github.com/JaceThings/Lisse/tree/HEAD/packages/react) from 0.3.2 to 0.7.2.
- [Release notes](https://github.com/JaceThings/Lisse/releases)
- [Changelog](https://github.com/JaceThings/Lisse/blob/main/packages/react/CHANGELOG.md)
- [Commits](https://github.com/JaceThings/Lisse/commits/@lisse/react@0.7.2/packages/react)

---
updated-dependencies:
- dependency-name: "@lisse/react"
  dependency-version: 0.7.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 28, 2026
@vercel

vercel Bot commented Aug 28, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
crib-shortlist Ready Ready Preview Aug 28, 2026 7:56pm

Request Review

@dependabot dependabot Bot added the javascript Pull requests that update javascript code label Aug 28, 2026
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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants