Version Packages - #112
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 15, 2026 15:12
120e740 to
8ef7606
Compare
SandroMaglione
approved these changes
Aug 15, 2026
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 15, 2026 15:26
8ef7606 to
e8b46f8
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
@typeonce/effect-machine@0.10.0
Minor Changes
b7004c2: Make
Machine.eventsandMachine.internalEventsdefinition-time protocol descriptors that are passed directly toMachine.make. The descriptors expose type-safe deferred constructors while retaining their schemas privately, so applications can export the event API without exporting schemas or reaching for throwing schema.makemethods.Remove the eager schema-based
Machine.eventconstructor. Pass complete decoded event objects directly to APIs that intentionally retain values, such as manual model-testing scenarios or transport messages.cb137a7: Add
target.none()for explicit targetless transitions. Every installed transition handler now returns a concrete target ortarget.none(); declaredtargetsremain an upper bound on concrete destinations and never excludetarget.none().Remove
Machine.retag. To reuse compatible fields across sibling states, destructure away the source discriminator and construct the destination through its target builder:62e2281: Separate actor inputs from outward notifications. Declare emissions with
Machine.emittedEvents, publish them withemit, and observe the hot, non-replayingMachineRef.emissionsstream. Children declare the public inputs they expect from their owner throughparentEvents, then communicate explicitly with the typed, optionalparentactor reference:Handler contexts also expose typed
self; invoked-child composition checks that everyparentEventscase is accepted by the parent. This release renames structural handler ancestry tocontainingStateandancestors, supports zero-payload event and emission constructors with(), and exposes root and child emission streams through AtomMachine.