chore: version packages - #74
Merged
Merged
Conversation
Deploying effex-api with
|
| Latest commit: |
e326ac7
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://7205f044.effex-api.pages.dev |
| Branch Preview URL: | https://changeset-release-main.effex-api.pages.dev |
Deploying effex with
|
| Latest commit: |
e326ac7
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://be356b12.effex.pages.dev |
| Branch Preview URL: | https://changeset-release-main.effex.pages.dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@effex/dom@1.4.5
Patch Changes
8e9426f: Fix intro animations still stalling on client-mode re-mount even after
the connection wait added in the previous release.
The previous fix used
Effect.yieldNow()to defer the enter fiber pastthe outer synchronous render flow. That only reschedules the fiber
inside Effect's own queue — if no other work is queued, the fiber can
run again immediately without the browser actually flushing microtasks
or committing DOM changes. On real client re-mounts,
element.isConnectedstayed
falsewhen the animation fiber checked it, we hit the 3-attemptbound, and proceeded against a disconnected element — same failure
mode as before.
Replace
Effect.yieldNowwithqueueMicrotask-based yielding (viaEffect.async), bounded to 32 attempts.queueMicrotaskis a realbrowser primitive that guarantees the fiber won't resume until the
current task's synchronous work and other queued microtasks have run
— which is when the outer render flow finishes inserting the wrapper's
ancestor chain into the document. 32 microtasks is well under a
millisecond in modern engines and comfortably covers any realistic
outer-flow depth.
Also force a style/layout computation (
element.offsetHeight) afterthe element is connected. Some engines defer style computation for
freshly-inserted nodes until it's needed; without this,
forceReflowinside
runEnterAnimationcould record the enterFrom state as theinitial snapshot for an element that hasn't been styled yet, leaving
the browser without a valid "before" to interpolate the transition
from.
@effex/router@1.3.5
Patch Changes
docs@0.0.28
Patch Changes