repo string | pull_number int64 | instance_id string | issue_numbers sequence | base_commit string | patch string | test_patch string | problem_statement string | hints_text string | created_at string | version string | updated_at string | environment_setup_commit string | FAIL_TO_PASS sequence | PASS_TO_PASS sequence | FAIL_TO_FAIL sequence | PASS_TO_FAIL sequence | source_dir string |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
bevyengine/bevy | 15,166 | bevyengine__bevy-15166 | [
"15105",
"15105"
] | 8bfe635c3e119fa9324ba738ac11d30e7b988ac1 | diff --git a/crates/bevy_ecs/src/system/commands/mod.rs b/crates/bevy_ecs/src/system/commands/mod.rs
--- a/crates/bevy_ecs/src/system/commands/mod.rs
+++ b/crates/bevy_ecs/src/system/commands/mod.rs
@@ -1017,13 +1017,36 @@ impl EntityCommands<'_> {
///
/// # Panics
///
+ /// The command will panic whe... | diff --git a/crates/bevy_ecs/src/system/commands/mod.rs b/crates/bevy_ecs/src/system/commands/mod.rs
--- a/crates/bevy_ecs/src/system/commands/mod.rs
+++ b/crates/bevy_ecs/src/system/commands/mod.rs
@@ -1684,6 +1753,45 @@ mod tests {
assert_eq!(results3, vec![(42u32, 0u64), (0u32, 42u64)]);
}
+ #[tes... | Add missing insert APIs for predicates
## What problem does this solve or what need does it fill?
For consistency, we are missing the following methods:
- `insert_if_new_and` (`insert_if_new` + `insert_if`)
- `try_insert_if_new_and` (`try_insert` +`insert_if_new` + `insert_if`)
## Additional context
https... | 2024-09-11T20:27:48Z | 1.79 | 2024-09-16T23:16:19Z | 612897becd415b7b982f58bd76deb719b42c9790 | [
"change_detection::tests::as_deref_mut",
"change_detection::tests::mut_from_non_send_mut",
"bundle::tests::component_hook_order_spawn_despawn_with_macro_hooks",
"bundle::tests::component_hook_order_spawn_despawn",
"bundle::tests::component_hook_order_replace",
"bundle::tests::component_hook_order_insert_r... | [] | [] | [] | auto_2025-06-08 | |
bevyengine/bevy | 14,631 | bevyengine__bevy-14631 | [
"14629"
] | fc2f564c6f205163b8ba0f3a0bd40fe20739fa7a | diff --git a/crates/bevy_ecs/src/observer/runner.rs b/crates/bevy_ecs/src/observer/runner.rs
--- a/crates/bevy_ecs/src/observer/runner.rs
+++ b/crates/bevy_ecs/src/observer/runner.rs
@@ -375,8 +375,7 @@ fn observer_system_runner<E: Event, B: Bundle>(
};
// TODO: Move this check into the observer cache to av... | diff --git a/crates/bevy_ecs/src/query/state.rs b/crates/bevy_ecs/src/query/state.rs
--- a/crates/bevy_ecs/src/query/state.rs
+++ b/crates/bevy_ecs/src/query/state.rs
@@ -1779,7 +1790,7 @@ mod tests {
world.spawn((A(1), B(0)));
let query_state = world.query::<(&A, &B)>();
- let mut new_query_... | `Query::transmute`/`Query::transmute_filtered` accept any `&Components` parameter and this is unsound
## Bevy version
Both 0.14.1 and c1c003d
## What you did
```rs
#[derive(Component)]
struct A(u32);
#[derive(Component)]
struct B(u32);
let mut world = World::new();
world.spawn((A(1), B(2)));
let... | 2024-08-05T13:52:48Z | 1.79 | 2024-08-06T06:15:03Z | 612897becd415b7b982f58bd76deb719b42c9790 | [
"change_detection::tests::map_mut",
"change_detection::tests::mut_from_res_mut",
"change_detection::tests::mut_from_non_send_mut",
"change_detection::tests::mut_new",
"change_detection::tests::as_deref_mut",
"bundle::tests::component_hook_order_spawn_despawn_with_macro_hooks",
"change_detection::tests::... | [] | [] | [] | auto_2025-06-08 | |
bevyengine/bevy | 14,539 | bevyengine__bevy-14539 | [
"12139"
] | ba09f354745b1c4420e6e316d80ac97c9eb37f56 | diff --git a/crates/bevy_ecs/src/entity/mod.rs b/crates/bevy_ecs/src/entity/mod.rs
--- a/crates/bevy_ecs/src/entity/mod.rs
+++ b/crates/bevy_ecs/src/entity/mod.rs
@@ -142,7 +142,7 @@ type IdCursor = isize;
/// [`Query::get`]: crate::system::Query::get
/// [`World`]: crate::world::World
/// [SemVer]: https://semver.o... | diff --git a/crates/bevy_ecs/src/entity/mod.rs b/crates/bevy_ecs/src/entity/mod.rs
--- a/crates/bevy_ecs/src/entity/mod.rs
+++ b/crates/bevy_ecs/src/entity/mod.rs
@@ -1152,6 +1188,15 @@ mod tests {
}
}
+ #[test]
+ fn entity_debug() {
+ let entity = Entity::from_raw(42);
+ let string ... | Inconsistency between `Debug` and serialized representation of `Entity`
## Bevy version
0.13
## What went wrong
There is an inconsistency between the `Debug` representation of an `Entity`:
```rust
impl fmt::Debug for Entity {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f... | Ah: I know what we should do. The serialized representation should stay the same, optimized for information density. This is just an opaque identifier. However, we should make the debug representation more verbose, and report `index`, `generation` and `raw_bits` separately.
In the future, we will be packing more inf... | 2024-07-30T17:39:55Z | 1.79 | 2024-08-04T06:18:41Z | 612897becd415b7b982f58bd76deb719b42c9790 | [
"entity::tests::entity_debug"
] | [
"change_detection::tests::map_mut",
"change_detection::tests::mut_from_res_mut",
"change_detection::tests::mut_from_non_send_mut",
"change_detection::tests::mut_untyped_from_mut",
"change_detection::tests::mut_new",
"change_detection::tests::as_deref_mut",
"change_detection::tests::mut_untyped_to_reflec... | [] | [] | auto_2025-06-08 |
bevyengine/bevy | 14,380 | bevyengine__bevy-14380 | [
"14378"
] | a8530ebbc83f6f53751bfbcfc128db0764a5d2b3 | "diff --git a/crates/bevy_reflect/src/array.rs b/crates/bevy_reflect/src/array.rs\n--- a/crates/bevy(...TRUNCATED) | "diff --git a/crates/bevy_reflect/src/lib.rs b/crates/bevy_reflect/src/lib.rs\n--- a/crates/bevy_ref(...TRUNCATED) | "bevy_reflect: Consider API for getting kind info\n## What problem does this solve or what need does(...TRUNCATED) | "Seems reasonable. Want to put together a PR?\nYeah this would be a good improvement. Although, rath(...TRUNCATED) | 2024-07-18T17:37:45Z | 1.81 | 2024-10-15T02:25:58Z | 60b2c7ce7755a49381c5265021ff175d3624218c | ["array::tests::next_index_increment","attributes::tests::should_allow_unit_struct_attribute_values"(...TRUNCATED) | [] | [] | [] | auto_2025-06-08 |
bevyengine/bevy | 8,040 | bevyengine__bevy-8040 | [
"8034"
] | ee0e6f485575952fb51d38f807f60907272e1d44 | "diff --git a/crates/bevy_render/src/color/mod.rs b/crates/bevy_render/src/color/mod.rs\n--- a/crate(...TRUNCATED) | "diff --git a/crates/bevy_render/src/color/mod.rs b/crates/bevy_render/src/color/mod.rs\n--- a/crate(...TRUNCATED) | "Crash when setting background color via Color::Lcha\n## Bevy version\r\n\r\n0.10.0\r\n\r\n## \\[Opt(...TRUNCATED) | There is a wrong return value in Color::as_rgba_linear. I make a PR | 2023-03-11T10:56:59Z | 1.67 | 2023-03-11T12:32:56Z | 735f9b60241000f49089ae587ba7d88bf2a5d932 | [
"color::tests::convert_to_rgba_linear"
] | ["mesh::mesh::conversions::tests::vec3a","color::tests::mul_and_mulassign_f32","primitives::tests::i(...TRUNCATED) | [] | [] | auto_2025-06-08 |
bevyengine/bevy | 8,014 | bevyengine__bevy-8014 | [
"7989"
] | 7d9cb1c4ab210595c5228af0ed4ec7d095241db5 | "diff --git a/crates/bevy_reflect/bevy_reflect_derive/src/from_reflect.rs b/crates/bevy_reflect/bevy(...TRUNCATED) | "diff --git /dev/null b/crates/bevy_reflect_compile_fail_tests/tests/reflect_derive/bounds.pass.rs\n(...TRUNCATED) | "Issue with specific reflect breaking after upgrading from 0.9-0.10\n## Bevy 0.10\r\n0.10\r\n\r\n## (...TRUNCATED) | "After expanding the macro I think I've found the issue:\r\n\r\nThe emitted version of the macro (on(...TRUNCATED) | 2023-03-10T06:47:15Z | 1.67 | 2023-03-27T22:06:30Z | 735f9b60241000f49089ae587ba7d88bf2a5d932 | [
"tests/reflect_derive/bounds.pass.rs [should pass]",
"test"
] | ["tests/reflect_derive/generics.fail.rs [should fail to compile]","tests/reflect_derive/generics_str(...TRUNCATED) | [] | [] | auto_2025-06-08 |
bevyengine/bevy | 8,012 | bevyengine__bevy-8012 | [
"8010"
] | 2d5ef75c9fc93cbb301c4b0d19f73b8864694be9 | "diff --git a/crates/bevy_ecs/macros/src/fetch.rs b/crates/bevy_ecs/macros/src/fetch.rs\n--- a/crate(...TRUNCATED) | "diff --git a/crates/bevy_ecs/src/query/fetch.rs b/crates/bevy_ecs/src/query/fetch.rs\n--- a/crates/(...TRUNCATED) | "WorldQuery derive State and Fetch types are still accidentally nameable\n## Bevy version\r\n\r\nLat(...TRUNCATED) | "Interesting, I'll look into this. Not sure if there's a clean way of solving this, but it should at(...TRUNCATED) | 2023-03-10T04:12:11Z | 1.67 | 2023-03-22T16:42:32Z | 735f9b60241000f49089ae587ba7d88bf2a5d932 | ["change_detection::tests::map_mut","change_detection::tests::mut_from_non_send_mut","change_detecti(...TRUNCATED) | [] | [] | [] | auto_2025-06-08 |
bevyengine/bevy | 7,931 | bevyengine__bevy-7931 | [
"6497"
] | d3df04cb4c8d94cb06780a777cc6712fa4a316dd | "diff --git a/crates/bevy_ecs/src/change_detection.rs b/crates/bevy_ecs/src/change_detection.rs\n---(...TRUNCATED) | "diff --git a/crates/bevy_ecs/src/change_detection.rs b/crates/bevy_ecs/src/change_detection.rs\n---(...TRUNCATED) | "Expose a public constructor for `Mut`\n## What problem does this solve or what need does it fill?\r(...TRUNCATED) | 2023-03-06T16:52:34Z | 1.67 | 2023-04-05T14:22:14Z | 735f9b60241000f49089ae587ba7d88bf2a5d932 | ["change_detection::tests::mut_from_res_mut","change_detection::tests::map_mut","change_detection::t(...TRUNCATED) | [] | [] | [] | auto_2025-06-08 | |
bevyengine/bevy | 7,454 | bevyengine__bevy-7454 | [
"7429"
] | 84de9e7f28bfaaba8e0eef4ecf185ce795add9e2 | "diff --git a/crates/bevy_reflect/src/impls/std.rs b/crates/bevy_reflect/src/impls/std.rs\n--- a/cra(...TRUNCATED) | "diff --git a/crates/bevy_reflect/src/lib.rs b/crates/bevy_reflect/src/lib.rs\n--- a/crates/bevy_ref(...TRUNCATED) | "bevy_reflect: Support Cow<'static, [T]>\n## What problem does this solve or what need does it fill?(...TRUNCATED) | 2023-02-01T01:50:05Z | 1.70 | 2023-06-19T15:25:35Z | 6f27e0e35faffbf2b77807bb222d3d3a9a529210 | ["enums::tests::applying_non_enum_should_panic - should panic","enums::tests::enum_should_allow_stru(...TRUNCATED) | [] | [] | [] | auto_2025-06-08 | |
bevyengine/bevy | 1,070 | bevyengine__bevy-1070 | [
"1036"
] | 51650f114fbf31fc89db7bd69542dc21edf2dcb7 | "diff --git a/crates/bevy_ui/src/focus.rs b/crates/bevy_ui/src/focus.rs\n--- a/crates/bevy_ui/src/fo(...TRUNCATED) | "diff --git a/crates/bevy_ui/src/focus.rs b/crates/bevy_ui/src/focus.rs\n--- a/crates/bevy_ui/src/fo(...TRUNCATED) | "ButtonBundle starts up with Hovered Interaction.\n**Bevy version**\r\n\r\nbevy = { git = \"https://(...TRUNCATED) | "the issue is that before you move your mouse, it uses the default value for a position which is `(0(...TRUNCATED) | 2020-12-15T09:47:12Z | 0.3 | 2021-04-27T23:51:09Z | 51650f114fbf31fc89db7bd69542dc21edf2dcb7 | [
"update::tests::test_ui_z_system"
] | [] | [] | [] | auto_2025-06-08 |
End of preview. Expand in Data Studio
README.md exists but content is empty.
- Downloads last month
- 4