Version Packages - #121
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
2 times, most recently
from
August 16, 2026 14:22
1532d87 to
79a115b
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 16, 2026 16:07
79a115b to
d0b2203
Compare
SandroMaglione
approved these changes
Aug 16, 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.13.0
Minor Changes
0ca9134: Upgrade the exact Effect peer dependency and companion Effect packages to
4.0.0-rc.109.aa4947f: Require every
Machine.invokeeffectsource to be a factory evaluated when its owning state is entered. This gives lifecycle callbacks immediate output and failure inference while making Effect construction timing explicit.Wrap previously direct Effects in a zero-argument function:
34a9a26: Add typed declared-initial entry to compound and parallel transition targets.
Use
target.full.opened.initial(),initial(value), orinitial.from(input)to enter the initial configuration declared byMachine.defineStates; the same operation is available through compatiblelocalandbranchtarget scopes. Schema-valued implicit children are constructed byinitialize: ({ builder }) => ..., including fluent completion of every valued parallel region. Missing initializers are reported athandle(...), and.fromvalidation remains a typedMachineSchemaDecodeErrorduring planning.State handler
initialand itsStateInitial*utility types have been replaced byinitializeandStateInitialize*. Migrate compound initializers frominitial: () => new Child(...)toinitialize: ({ builder }) => builder(new Child(...)), and parallel initializers from returned value records to chained region builders.c8728e5: Add live, root-scoped machine inspection through
Machine.prepare(machine).inspectionandAtomMachine.inspection(machineAtom).The hot Effect
Streamobserves ordered creation, initialization, mailbox delivery and processing, state changes, emissions, Effect and timer activities, and termination for a prepared root and all locally owned descendants:Inspection is non-replayed, never fails, and completes with the root. Its session ids and ordering are local to one prepared ownership tree; distributed identity and delivery remain an Effect Cluster concern.