chore: version packages#43
Merged
Merged
Conversation
Deploying effex-api with
|
| Latest commit: |
17a0fa1
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://f7f73722.effex-api.pages.dev |
| Branch Preview URL: | https://changeset-release-main.effex-api.pages.dev |
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 24, 2026 03:46
0a1de5b to
6913274
Compare
Deploying effex with
|
| Latest commit: |
17a0fa1
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://d368522b.effex.pages.dev |
| Branch Preview URL: | https://changeset-release-main.effex.pages.dev |
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 24, 2026 13:56
6913274 to
17a0fa1
Compare
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.3.1
Patch Changes
8b07d3d: Warn on invalid HTML nesting during rendering. Certain parent/child pairs (
<p>in<p>, block-level content in<p>, nested anchors, interactive content in<button>, nested forms) get silently normalized by the browser's HTML parser — the live DOM ends up different from what SSR emitted, and hydration reports a confusing "Expected<X>but not found in<Y>" mismatch far from the actual cause.The renderers (
DOMRenderer, SSRStringRenderer) now check each parent/child pair atappendChildtime and emit a targetedconsole.warnonce per pair per process explaining what the browser will do to the tree. Small runtime cost (a set lookup + string check), catches this class of bug at its source instead of downstream at hydration.Covered nestings:
<p>inside<p>and all block-level tags inside<p>(div,section,ul,form,h1-h6,table, …)<a>inside<a><button>(a,input,select,textarea, …)<form>inside<form>@effex/platform@1.2.2
Patch Changes
bed39a9: Pin
@effex/coreexactly instead of via a caret range.@effex/platform's source used"@effex/core": "workspace:^", which publishes as^X.Y.Z— a range.@effex/dom,@effex/router, and@effex/formall use"workspace:*"which publishes as the exact current version. The mismatch meant projects installing both@effex/domand@effex/platformcould end up with two different@effex/corecopies innode_moduleswhen pnpm couldn't hoist to a single satisfying version — and two copies means Effect Context tags (Signal, Readable, ControlCtx, etc.) declared in one copy don't unify with the other, so cross-package interactions break silently.Switched to
"workspace:*". Now every core bump forces a platform patch bump, which was already the effective behaviour for the other packages, and every published@effex/platformwill pin the exact@effex/coreversion it was published against — no ambiguity for pnpm to resolve.Peer deps on
@effex/domand@effex/routerstay onworkspace:^— those are peers that the user installs and semver ranges are appropriate.9ba649c: Fix client-side navigation on SSG (static-file-hosted) sites.
makeClientLayer's data provider used to unconditionallyfetch(<path>?_data=1)thenresponse.json(), which works with the SSR HTTP handler (that URL returns JSON) but breaks on any static host — static file servers ignore the query string and return the target page's HTML shell.response.json()then threw,Effect.orDiekilled the fiber silently, and the Outlet went blank while the URL updated (no error surfaced in the console).Now the provider inspects the response's Content-Type. On
application/jsonit parses as before. On anything else it treats the response as HTML, extracts thewindow.__EFFEX_DATA__blob thatgenerateDocumentembeds in every SSG'd page, and returns that. The escapes emitted byserializeForHtml(<,>,&) are JSON-safe, soJSON.parseon the extracted string round-trips cleanly.No config change required — SSG projects using
Platform.makeClientLayer(router)should just start navigating correctly after upgrading.Also: added
console.errorlogging before the provider'sEffect.orDieguard so a genuinely failed fetch (network error, malformed response, etc.) surfaces in the browser console instead of dying silently. If the HTML fallback runs but no__EFFEX_DATA__blob is present, that's logged as aconsole.warn— non-fatal but useful for catching broken builds.Updated dependencies [8b07d3d]
@effex/router@1.2.6
Patch Changes
docs@0.0.18
Patch Changes