Merged
Conversation
`Name` will be explicitly registered in a `Default` `App`
Contributor
Author
|
I've marked this as |
cafb38d to
804ac03
Compare
…into DestroyTheCore
aevyrie
approved these changes
Dec 19, 2024
Member
aevyrie
left a comment
There was a problem hiding this comment.
Probably worth noting the path change to Name for people migrating their scene files.
Contributor
That should be covered by the migration guide in #16894 |
Contributor
Author
ItsDoot
approved these changes
Dec 19, 2024
ecoskey
pushed a commit
to ecoskey/bevy
that referenced
this pull request
Jan 6, 2025
# Objective - Fixes bevyengine#16892 ## Solution - Removed `TypeRegistryPlugin` (`Name` is now automatically registered with a default `App`) - Moved `TaskPoolPlugin` to `bevy_app` - Moved `FrameCountPlugin` to `bevy_diagnostic` - Deleted now-empty `bevy_core` ## Testing - CI ## Migration Guide - `TypeRegistryPlugin` no longer exists. If you can't use a default `App` but still need `Name` registered, do so manually with `app.register_type::<Name>()`. - References to `TaskPoolPlugin` and associated types will need to import it from `bevy_app` instead of `bevy_core` - References to `FrameCountPlugin` and associated types will need to import it from `bevy_diagnostic` instead of `bevy_core` ## Notes This strategy was agreed upon by Cart and several other members in [Discord](https://discord.com/channels/691052431525675048/692572690833473578/1319137218312278077).
mrchantey
pushed a commit
to mrchantey/bevy
that referenced
this pull request
Feb 4, 2025
# Objective - Fixes bevyengine#16892 ## Solution - Removed `TypeRegistryPlugin` (`Name` is now automatically registered with a default `App`) - Moved `TaskPoolPlugin` to `bevy_app` - Moved `FrameCountPlugin` to `bevy_diagnostic` - Deleted now-empty `bevy_core` ## Testing - CI ## Migration Guide - `TypeRegistryPlugin` no longer exists. If you can't use a default `App` but still need `Name` registered, do so manually with `app.register_type::<Name>()`. - References to `TaskPoolPlugin` and associated types will need to import it from `bevy_app` instead of `bevy_core` - References to `FrameCountPlugin` and associated types will need to import it from `bevy_diagnostic` instead of `bevy_core` ## Notes This strategy was agreed upon by Cart and several other members in [Discord](https://discord.com/channels/691052431525675048/692572690833473578/1319137218312278077).
JasmineLowen
added a commit
to joseph-gio/bevy-trait-query
that referenced
this pull request
Mar 20, 2025
- bevy_core was removed upstream in bevyengine/bevy#16897 - we actually just used bevy_core for `Name` which is now exposed through bevy_ecs
JasmineLowen
added a commit
to joseph-gio/bevy-trait-query
that referenced
this pull request
Mar 20, 2025
- bevy_core was removed upstream in bevyengine/bevy#16897 - we actually just used bevy_core for `Name` which is now exposed through bevy_ecs
JasmineLowen
added a commit
to joseph-gio/bevy-trait-query
that referenced
this pull request
Apr 25, 2025
Some notes: - bevy_core was removed upstream in bevyengine/bevy#16897 - we actually just used bevy_core for `Name` which is now exposed through bevy_ecs
JasmineLowen
added a commit
to joseph-gio/bevy-trait-query
that referenced
this pull request
Apr 25, 2025
Some notes: - bevy_core was removed upstream in bevyengine/bevy#16897 - we actually just used bevy_core for `Name` which is now exposed through bevy_ecs
salixsalicaceae
pushed a commit
to fslabs/bevy
that referenced
this pull request
Mar 26, 2026
# Objective - Fixes bevyengine#16892 ## Solution - Removed `TypeRegistryPlugin` (`Name` is now automatically registered with a default `App`) - Moved `TaskPoolPlugin` to `bevy_app` - Moved `FrameCountPlugin` to `bevy_diagnostic` - Deleted now-empty `bevy_core` ## Testing - CI ## Migration Guide - `TypeRegistryPlugin` no longer exists. If you can't use a default `App` but still need `Name` registered, do so manually with `app.register_type::<Name>()`. - References to `TaskPoolPlugin` and associated types will need to import it from `bevy_app` instead of `bevy_core` - References to `FrameCountPlugin` and associated types will need to import it from `bevy_diagnostic` instead of `bevy_core` ## Notes This strategy was agreed upon by Cart and several other members in [Discord](https://discord.com/channels/691052431525675048/692572690833473578/1319137218312278077).
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.
Objective
bevy_core#16892Solution
TypeRegistryPlugin(Nameis now automatically registered with a defaultApp)TaskPoolPlugintobevy_appFrameCountPlugintobevy_diagnosticbevy_coreTesting
Migration Guide
TypeRegistryPluginno longer exists. If you can't use a defaultAppbut still needNameregistered, do so manually withapp.register_type::<Name>().TaskPoolPluginand associated types will need to import it frombevy_appinstead ofbevy_coreFrameCountPluginand associated types will need to import it frombevy_diagnosticinstead ofbevy_coreNotes
This strategy was agreed upon by Cart and several other members in Discord.