Version Packages - #126
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
4 times, most recently
from
August 17, 2026 09:33
d469a2f to
9856ec2
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 17, 2026 09:43
9856ec2 to
a8e5e04
Compare
SandroMaglione
approved these changes
Aug 17, 2026
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
@typeonce/effect-machine@0.14.0
Minor Changes
4554c4d: Make
MachineTest.coveragereport transition definitions and their exact branches separately. Read definition coverage throughcoverage.transitions.definitionsand conditional branch coverage throughcoverage.transitions.branches.Replace the
targetBoundsverification law group withdefinitions. The new laws validate the declared startup root, transition registration, retainedbranchIndex, and the selected branch's exact target kind and scope.a4cd309: Add exact
transitionCoveragetoMachineTest.Exploration. Coverage includes startup and every concretely planned event, including state-limit candidates, while unplanned depth- and transition-limit frontiers remain misses.324ae69: Retain exact static and runtime transition evidence for testing and visualization. Transition branch inspection now includes the selected target kind and scope, retained planner transitions identify the zero-based branch that executed, and
Machine.initialDefinitionexposes the root startup selection without executing its resolver.Use
branchIndexto associate a retained transition with the corresponding entry inMachine.transitionDefinitions(machine).branches. Direct transitions use index0; conditional cases retain their declaration index andotherwisefollows the final case.2c67924: Require
Machine.transitionfor every machine transition and capture each possible target as static machine topology. Direct transitions declaretargetandresolve; conditional transitions declare titledcaseswhosewhenfunctions returnOption, plus an explicitotherwisebranch. The selected target builder and conditional match value are inferred in each resolver.Initial state construction now uses the same
targetandresolveshape, restricted to the machine's declared initial state. Replace process logic previously created withMachine.transitionbyMachine.logic, and replace function handlers, target upper-bound lists, andStates.initialconstruction with the explicit transition and initial target selectors.944cdb5: Allow conditional
Machine.transitiondefinitions to infer any number of heterogeneous cases. Definecaseswith its locally suppliedbranchconstructor so each predicate match and selected target remain exact in the corresponding resolver:Replace each object previously written directly in the
casesarray withbranch({ ... })inside thecases: (branch) => [...]factory. Direct transitions andotherwisekeep their existing shape.64094df: Make
MachineTest.verifyaccept startup roots reached through exact retained initial-choice routes and reject retained targets whose choice, initial, or history resolution is inconsistent with their selected static branch. Resolution failures are reported asdefinitions.resolution.