Version Packages#67
Merged
Merged
Conversation
BCook98
force-pushed
the
changeset-release/main
branch
from
July 3, 2026 01:42
5846cab to
f5ab9db
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
kit@2.15.0
Minor Changes
384476e: Casino games: the game-kind meta section, credits host functions, and CtxFeatCredits (wire revision 7)
GameMeta.Kind(GameKindGame|GameKindCasino) classifies a game forthe platform economy, with
GameMeta.MaxPayoutMultiplierdeclaring acasino game's per-stake payout ceiling — a new presence-guarded trailing
meta section (absent = game, so every existing artifact keeps its meaning).
credits_balance,credits_wager,credits_settle— give casino-kind guests an account-wide, host-ownedwallet: atomic escrow wagers, gross (stake-inclusive) settlement clamped to
stake × the declared multiplier, typed refusals
(
ErrInsufficientCredits,ErrEconomyDisabled,ErrCreditsDenied,ErrCreditsUnavailable). Game-kind guests are rejected host-side.CtxFeatCredits(bit 2) declares that an artifact wagers(declaration-only; no encoding change).
Services.Credits; Rust guest SDK:Room::credits_balance/credits_wager/credits_settle,Meta::kind+Meta::max_payout_multiplier,CTX_FEAT_CREDITS,CreditsError.kittest.Roomgains an in-memory wallet double (Credits,CreditsStakes,CreditsDisabled); the native dev runner andmemsvc(behind
shellcade-kit check/play) implement the same semantics.Patch Changes
Room.Everydurations so they return no timer instead of panicking, and fix stale package metadata.