-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version Packages #2693
Merged
Merged
Version Packages #2693
Conversation
This file contains 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
github-actions
bot
force-pushed
the
changeset-release/main
branch
from
October 1, 2024 08:29
4076ed5
to
b4a3d50
Compare
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
github-actions
bot
force-pushed
the
changeset-release/main
branch
from
October 1, 2024 15:18
b4a3d50
to
b855c71
Compare
github-actions
bot
force-pushed
the
changeset-release/main
branch
from
October 1, 2024 19:02
b855c71
to
9657e67
Compare
github-actions
bot
force-pushed
the
changeset-release/main
branch
from
October 1, 2024 19:09
9657e67
to
8b1f2e0
Compare
github-actions
bot
force-pushed
the
changeset-release/main
branch
from
October 1, 2024 19:30
8b1f2e0
to
ea0aa17
Compare
github-actions
bot
force-pushed
the
changeset-release/main
branch
from
October 2, 2024 16:14
ea0aa17
to
59891b0
Compare
github-actions
bot
force-pushed
the
changeset-release/main
branch
from
October 2, 2024 16:25
59891b0
to
1271db5
Compare
github-actions
bot
force-pushed
the
changeset-release/main
branch
from
October 2, 2024 19:33
1271db5
to
a96e358
Compare
github-actions
bot
force-pushed
the
changeset-release/main
branch
from
October 2, 2024 19:48
a96e358
to
7fb7782
Compare
github-actions
bot
force-pushed
the
changeset-release/main
branch
from
October 2, 2024 19:52
7fb7782
to
d5ec9f0
Compare
github-actions
bot
force-pushed
the
changeset-release/main
branch
from
October 3, 2024 14:52
d5ec9f0
to
a328a47
Compare
github-actions
bot
force-pushed
the
changeset-release/main
branch
from
October 3, 2024 16:02
a328a47
to
0b5db3e
Compare
github-actions
bot
force-pushed
the
changeset-release/main
branch
from
October 3, 2024 19:25
0b5db3e
to
bdf2e30
Compare
github-actions
bot
force-pushed
the
changeset-release/main
branch
from
October 4, 2024 06:38
bdf2e30
to
5ada2d8
Compare
github-actions
bot
force-pushed
the
changeset-release/main
branch
from
October 4, 2024 06:55
5ada2d8
to
eee5c24
Compare
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
[email protected]
Minor Changes
Patch Changes
[email protected]
Minor Changes
createRootMolecule
has been renamedcreateRootMoleculeInStore
.Patch Changes
a8781d3: ✨ The new Allocate API allows hierarchical allocations into a defined superstructure.
It provides a general alternative to the
moleculeFamily
API, which is still available but is now deprecated.New: Shapelessness
moleculeFamily
required a specific constructor type to be passed in. This is a bit of a pain, because it required the user to maintain the shape of the molecules they were creating, which is really redundant to the types of the states that the molecule governs. The idea was, this could be a way to give the molecule its own "type".The new way that molecules are typed is purely through the type of their associated keys, whose types must extend the
Canonical
type. A molecule is 1:1 with a key. Keys are permanent and so are fundamentally different from states.No more
bond
APImoleculeFamily
was also overly rigid in the that it required a molecule to deliberatelybond
to an atomFamily.This is no longer a thing. Once a molecule has been allocated, any states can be added to it at any time.
See
__tests__/experimental/immortal/allocate.test.ts
for an example of how to use the new API.[email protected]
Patch Changes