Skip to content
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 #535

Merged
merged 1 commit into from
Mar 31, 2024
Merged

Version Packages #535

merged 1 commit into from
Mar 31, 2024

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Mar 31, 2024

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

@empirica/core@1.10.0

Minor Changes

  • d5c6969: Add ephemeral attribute support.

    This allows you to define attributes that are not persisted to the database, but
    are available to the client and server while the server is still running. These
    attributes will sync with all players as normal attributes. This is useful for
    data that that would be unreasonable to persist to the database due to size or
    volatility, but is still useful to share between clients and the server.

    For example, you could use this to sync the mouse movements of the players.

    player.set("mouse", { x: 123, y: 456 }, { ephemeral: true });
    player.get("mouse"); // { x: 123, y: 456 }

Patch Changes

  • b84c396: Ensure game and players are ready in exit steps.

    The presence of the game and players were not checked in the exit steps, as they
    are during the game. This could lead to the game or players not being available
    in the exit steps callback (to select the steps) or the exit steps themselves.

  • db69a0f: Make player reset in admin UI work again.

@github-actions github-actions bot force-pushed the changeset-release/main branch from 231b43a to 3919973 Compare March 31, 2024 01:50
@npaton npaton merged commit 0f9233a into main Mar 31, 2024
@npaton npaton deleted the changeset-release/main branch March 31, 2024 01:57
npaton added a commit that referenced this pull request Mar 31, 2024
@npaton npaton mentioned this pull request Mar 31, 2024
npaton added a commit that referenced this pull request Mar 31, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant