Conversation
git-subtree-dir: .repos/effect git-subtree-split: 14a3f140095fdebbff9162944fe7d4ea83e054e6
Rename Schema.TaggedErrorClass to Schema.TaggedError and model the pass-through wrangler keys with StructWithRest now that onExcessProperty "preserve" is gone.
|
React Doctor found no new issues. 🎉 Reviewed by React Doctor for commit |
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
tagium | c1b4d58 | Commit Preview URL Branch Preview URL |
Sep 23 2026, 04:08 AM |
This branch has not been deployed
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.
Note
🤖 Claude Opus 5.5 on behalf of Oliver
ELI5
This upgrades our Effect library from a beta to the newer release-candidate version. The next PRs need it, because Alchemy, the infrastructure tool we're moving to, requires this version.
Why
Layer 1 of the Alchemy migration stack. Every Alchemy v2 build requires
effect >= 4.0.0-rc.115; the preview build we're pinning in layer 2 needsrc.117. We're on4.0.0-beta.93. Doing the upgrade on its own keeps the infrastructure PRs readable.Implementation
effect^4.0.0-beta.93→^4.0.0-rc.117(lockfile pins4.0.0-rc.117). rc.117 has no runtime dependencies of its own, so the lockfile shrinks..repos/effectnow vendors the upstream tageffect@4.0.0-rc.117fromEffect-TS/effect, which is where v4 lives now. The old subtree had been renamed fromrepos/to.repos/, sogit subtree pullcouldn't find it. The old tree is removed in one commit and re-added withgit subtree add --squash.HEAD:.repos/effecthas the same tree hash as the upstream tag.Schema.TaggedErrorClass→Schema.TaggedErrorinsrc/features/audio/audioErrors.ts. That one renamed base class caused all 63 type errors across 17 files.onExcessProperty: "preserve"was removed upstream →Schema.StructWithRest(..., [Record(String, Unknown)])inscripts/share-deployment-bindings.ts. Layer 2 deletes this script.AGENTS.md.Review
Schema.TaggedErrorinstances now use the tag asname, andtoString()reads like a native error (AudioDecodeError: …). Nothing in the repo matches on error names or strings, and all tests pass.decodeWranglerConfigstill keeps unknown keys, but the decoded key order changes. Wrangler doesn't care.vp check(0 errors; 59 warnings, the same count asmain),bun run typecheck,vp test(661 tests, same asmain) andvp buildall pass.metadata-formats.spec.ts:49, thesuggestedFilenameextension) fails identically onmain.Claude Opus 5.5 · Claude Code (T3 Code)