fix(deps): bump effect to 4.0.0-rc.112 - #196
Merged
Merged
Conversation
The Effect Beta Bump workflow failed on every run since it was added: the bump rewrites the catalog pin, and CI defaults pnpm to --frozen-lockfile, which rejects the now-stale lockfile with ERR_PNPM_LOCKFILE_CONFIG_MISMATCH before validation ever runs. Refresh the lockfile with --no-frozen-lockfile. Effect 4 has also moved from the `beta` dist-tag (frozen at beta.107) to `rc`. The script now reads both tags, picks the highest 4.0.0-<beta|rc>.N, and also rewrites the `effect@<tag>` install token in the docs so the documented install never lands below the tested floor. Skill and doc prose updated to say "prerelease line". Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01ABKLh91QnvkCdKW3KHjXhy
Advances the tested Effect 4 floor from 4.0.0-beta.98 to the rc line (catalog pin, peer-range floors, "tested against" doc tokens, install tag, lockfile). Migration: Schema.TaggedErrorClass was renamed to Schema.TaggedError upstream (same call shape). Renamed at the four source sites (router errors, two dom tests, one core type test) and in the docs that name it. No other breakage surfaced. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01ABKLh91QnvkCdKW3KHjXhy
|
🎉 This PR is included in version 0.31.1 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
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.
Follows #195 (uses the updated bump script).
What
Advances the tested Effect 4 floor
4.0.0-beta.98 → 4.0.0-rc.112vianode scripts/bump-effect-beta.mjs+vp install --no-frozen-lockfile: catalog pin, peer-range floors, "tested against" doc tokens,effect@beta → effect@rcinstall tag, lockfile.Migration
One upstream break across 14 prereleases:
Schema.TaggedErrorClasswas renamed toSchema.TaggedError(same<Self>()(tag, fields)shape; verified in the installedeffect@4.0.0-rc.112dist). Renamed at:packages/router/src/errors.ts(RouterNotFound,RouterParamsError)packages/dom/src/server/server-boundary-ssr.test.ts,packages/dom/src/client/server-boundary-hydrate.test.tspackages/core/src/boundary/__type-tests__/rpc.tst.tsdocs/how-to/add-routing.md,docs/how-to/load-data-with-rpc.md,docs/reference/router.md,examples/effect-atom/readme.mdAll 32 type errors from the bump traced back to that rename. Nothing else changed.
Validation
vp run checkvp run testvp run test:typesvp run test:browsergraphify update .run; graph output included as in previous feature PRs.🤖 Generated with Claude Code
https://claude.ai/code/session_01ABKLh91QnvkCdKW3KHjXhy