chore: version packages - #82
Merged
Merged
Conversation
Deploying effex-api with
|
| Latest commit: |
78acf9f
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://9c6191e5.effex-api.pages.dev |
| Branch Preview URL: | https://changeset-release-main.effex-api.pages.dev |
Deploying effex with
|
| Latest commit: |
78acf9f
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://5c2aec74.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
create-effex@1.1.3
Patch Changes
2b57548: fix(hydrate): make element requirements provably match
options.layershydrate's element parameter was locked toElement<A, never, RendererContext | ControlCtx | SuspenseBoundaryCtx>, so any element that also required a user-provided service (NavigationContext,RouteDataProvider, etc.) had to be cast —as neveroras unknown as Element<HTMLElement>— even thoughoptions.layerswas providing exactly those services at runtime.HydrateOptionsandhydrateare now generic over the layer type. The layer's provided services flow throughLayer.Layer.Success<L>into the element's allowedR, so:hydrate(App(), root, { layers: Platform.makeClientLayer(router) })typechecks with no casts when the layer fully covers whatApp()needs.NoInferon the extracted layer type keeps TypeScript from inferringLfrom the element's requirements — inference flows one way, fromoptions.layersinto the element, so forgetting a service is a compile-time error rather than a silent runtime failure.Removed the now-obsolete casts from
create-effex's SSG and SSR templates,apps/docs, and the hydrate regression test.@effex/dom@1.4.7
Patch Changes
2b57548: fix(hydrate): make element requirements provably match
options.layershydrate's element parameter was locked toElement<A, never, RendererContext | ControlCtx | SuspenseBoundaryCtx>, so any element that also required a user-provided service (NavigationContext,RouteDataProvider, etc.) had to be cast —as neveroras unknown as Element<HTMLElement>— even thoughoptions.layerswas providing exactly those services at runtime.HydrateOptionsandhydrateare now generic over the layer type. The layer's provided services flow throughLayer.Layer.Success<L>into the element's allowedR, so:hydrate(App(), root, { layers: Platform.makeClientLayer(router) })typechecks with no casts when the layer fully covers whatApp()needs.NoInferon the extracted layer type keeps TypeScript from inferringLfrom the element's requirements — inference flows one way, fromoptions.layersinto the element, so forgetting a service is a compile-time error rather than a silent runtime failure.Removed the now-obsolete casts from
create-effex's SSG and SSR templates,apps/docs, and the hydrate regression test.@effex/router@1.3.8
Patch Changes
docs@0.0.31
Patch Changes