Dataset Viewer
Auto-converted to Parquet Duplicate
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,274
bevyengine__bevy-15274
[ "10669" ]
1bb8007dceb03f41b20317bb44fcdfec1d70513c
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 @@ -1,12 +1,14 @@ mod parallel_scope; use core::panic::Location; +use std::marker::PhantomData; use super::{Deferr...
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 @@ -1660,7 +1823,7 @@ mod tests { self as bevy_ecs, component::Component, system::{Commands, R...
Add an `Entry`-style API for working with component data on `Commands` > > Could we also get those for commands? > > > > Since commands are asynchronous, this would be more difficult: you can't insert a component and get back the same component instance in the same tick (I think). Should be poss...
2024-09-17T21:23:31Z
1.79
2024-09-19T15:36:07Z
612897becd415b7b982f58bd76deb719b42c9790
[ "bundle::tests::component_hook_order_recursive", "bundle::tests::component_hook_order_replace", "change_detection::tests::change_expiration", "entity::map_entities::tests::entity_mapper", "bundle::tests::component_hook_order_spawn_despawn_with_macro_hooks", "bundle::tests::component_hook_order_recursive_m...
[]
[]
[]
auto_2025-06-08
bevyengine/bevy
15,234
bevyengine__bevy-15234
[ "15106" ]
c2d54f5f0449858dc984f498444bf9afd017a786
diff --git a/benches/benches/bevy_ecs/world/commands.rs b/benches/benches/bevy_ecs/world/commands.rs --- a/benches/benches/bevy_ecs/world/commands.rs +++ b/benches/benches/bevy_ecs/world/commands.rs @@ -146,9 +146,9 @@ pub fn fake_commands(criterion: &mut Criterion) { let mut commands = Commands::new(&...
diff --git a/crates/bevy_ecs/src/observer/mod.rs b/crates/bevy_ecs/src/observer/mod.rs --- a/crates/bevy_ecs/src/observer/mod.rs +++ b/crates/bevy_ecs/src/observer/mod.rs @@ -830,7 +830,7 @@ mod tests { ..Default::default() }); - world.commands().add( + world.commands().queue( ...
Rename `EntityCommands::add` to `EntityCommands::queue` ## What problem does this solve or what need does it fill? The difference between these two is very hard to grasp from a naming point of view: ```rust commands .entity(entity) .insert(Foo) ``` ```rust commands .entity(entity) .add(Foo) ```...
Nit: I feel like `enqueue` would be more appropriate, since the method is putting something into a queue, it is not/does not return the queue itself. imo `enqueue` is fairly obscure for nonnative English speakers, so I'd avoid it. I've certainly read that word before, but I'm fairly sure I've never heard it in real l...
2024-09-15T18:22:33Z
1.79
2024-11-10T08:01:28Z
612897becd415b7b982f58bd76deb719b42c9790
[ "change_detection::tests::change_tick_scan", "change_detection::tests::change_tick_wraparound", "bundle::tests::component_hook_order_spawn_despawn", "bundle::tests::insert_if_new", "bundle::tests::component_hook_order_spawn_despawn_with_macro_hooks", "change_detection::tests::mut_from_res_mut", "entity:...
[]
[]
[]
auto_2025-06-08
bevyengine/bevy
15,196
bevyengine__bevy-15196
[ "15101" ]
b36443b6ed8a6928097e6c1d33310c5d321db3e5
diff --git a/crates/bevy_hierarchy/src/child_builder.rs b/crates/bevy_hierarchy/src/child_builder.rs --- a/crates/bevy_hierarchy/src/child_builder.rs +++ b/crates/bevy_hierarchy/src/child_builder.rs @@ -19,7 +19,7 @@ fn push_events(world: &mut World, events: impl IntoIterator<Item = HierarchyEven /// Adds `child` to `...
diff --git a/crates/bevy_hierarchy/src/child_builder.rs b/crates/bevy_hierarchy/src/child_builder.rs --- a/crates/bevy_hierarchy/src/child_builder.rs +++ b/crates/bevy_hierarchy/src/child_builder.rs @@ -838,7 +838,7 @@ mod tests { let [a, b, c] = std::array::from_fn(|_| world.spawn_empty().id()); - ...
`add_child` and `push_children` are inconsistently named > Could be interesting to mention in docs that `push_children` is the plural version of `add_child`, or improve naming _Originally posted by @mockersf in https://github.com/bevyengine/bevy/pull/15096#pullrequestreview-2288560335_
I don't particularly care which way this goes: `push` is clearer about the behavior (added to the back of the list) but `add` sounds nicer. `push_child/ren` seems like the clearer and more intuitive of the two to me, but `add` is probably okay. Whatever everything should be homogenized the whole way down, there is `pus...
2024-09-14T08:28:08Z
1.79
2024-09-16T23:33:15Z
612897becd415b7b982f58bd76deb719b42c9790
[ "child_builder::tests::add_child", "child_builder::tests::build_children", "child_builder::tests::build_child", "child_builder::tests::children_removed_when_empty_commands", "child_builder::tests::push_and_clear_children_commands", "child_builder::tests::children_removed_when_empty_world", "child_builde...
[]
[]
[]
auto_2025-06-08
bevyengine/bevy
15,180
bevyengine__bevy-15180
[ "14438" ]
e567669c311893fc7a4fc54614ab58f2c2918f73
"diff --git a/crates/bevy_reflect/src/path/mod.rs b/crates/bevy_reflect/src/path/mod.rs\n--- a/crate(...TRUNCATED)
"diff --git a/crates/bevy_reflect/src/path/mod.rs b/crates/bevy_reflect/src/path/mod.rs\n--- a/crate(...TRUNCATED)
"Implement FromStr and TryFrom for ParsedPath\n## What problem does this solve or what need does it (...TRUNCATED)
"I think `FromStr` is my preference, but I'd be curious to hear more about which one is idiomatic an(...TRUNCATED)
2024-09-13T00:44:41Z
1.79
2024-09-13T17:52:33Z
612897becd415b7b982f58bd76deb719b42c9790
["array::tests::next_index_increment","attributes::tests::should_allow_unit_struct_attribute_values"(...TRUNCATED)
[]
[]
[]
auto_2025-06-08
bevyengine/bevy
15,174
bevyengine__bevy-15174
[ "10284", "10284" ]
1fd478277e55f31df18d02023c003935579b3864
"diff --git a/crates/bevy_reflect/src/impls/glam.rs b/crates/bevy_reflect/src/impls/glam.rs\n--- a/c(...TRUNCATED)
"diff --git a/crates/bevy_reflect/src/lib.rs b/crates/bevy_reflect/src/lib.rs\n--- a/crates/bevy_ref(...TRUNCATED)
"Cannot Deserialize Camera2dBundle because of the OrthographicProjection component\n## Bevy version\(...TRUNCATED)
"it seems that the OrthographicProjection component inside the camer2dbundle is causing the error yo(...TRUNCATED)
2024-09-12T15:03:13Z
1.79
2024-09-21T19:17:56Z
612897becd415b7b982f58bd76deb719b42c9790
["tests::glam::quat_serialization","tests::glam::quat_deserialization","tests::glam::vec3_serializat(...TRUNCATED)
["array::tests::next_index_increment","attributes::tests::should_allow_unit_struct_attribute_values"(...TRUNCATED)
[]
[]
auto_2025-06-08
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.r(...TRUNCATED)
"diff --git a/crates/bevy_ecs/src/system/commands/mod.rs b/crates/bevy_ecs/src/system/commands/mod.r(...TRUNCATED)
"Add missing insert APIs for predicates\n## What problem does this solve or what need does it fill?\(...TRUNCATED)
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::t(...TRUNCATED)
[]
[]
[]
auto_2025-06-08
bevyengine/bevy
14,982
bevyengine__bevy-14982
[ "14969" ]
f2cf02408ff8766ef53ad7fa2e42fd30d2f0f8e5
"diff --git a/crates/bevy_reflect/Cargo.toml b/crates/bevy_reflect/Cargo.toml\n--- a/crates/bevy_ref(...TRUNCATED)
"diff --git a/crates/bevy_reflect/src/impls/smol_str.rs b/crates/bevy_reflect/src/impls/smol_str.rs\(...TRUNCATED)
"SmolStr doesn't have ReflectDeserialize\n## What problem does this solve or what need does it fill?(...TRUNCATED)
2024-08-30T01:11:09Z
1.79
2024-09-02T22:50:58Z
612897becd415b7b982f58bd76deb719b42c9790
["array::tests::next_index_increment","attributes::tests::should_allow_unit_struct_attribute_values"(...TRUNCATED)
[]
[]
[]
auto_2025-06-08
bevyengine/bevy
14,978
bevyengine__bevy-14978
[ "14974" ]
9e784334276669295f0d1c83727868ec0086cdf7
"diff --git a/crates/bevy_app/src/app.rs b/crates/bevy_app/src/app.rs\n--- a/crates/bevy_app/src/app(...TRUNCATED)
"diff --git a/crates/bevy_ecs/src/entity/mod.rs b/crates/bevy_ecs/src/entity/mod.rs\n--- a/crates/be(...TRUNCATED)
"Replace `NonZero*` type usage with `NonZero<T>` variant\n## What problem does this solve or what ne(...TRUNCATED)
2024-08-29T23:39:52Z
1.79
2024-08-30T02:53:22Z
612897becd415b7b982f58bd76deb719b42c9790
["bundle::tests::component_hook_order_recursive","bundle::tests::component_hook_order_spawn_despawn"(...TRUNCATED)
["attributes::tests::should_debug_custom_attributes","enums::tests::dynamic_enum_should_change_varia(...TRUNCATED)
[]
[]
auto_2025-06-08
bevyengine/bevy
14,894
bevyengine__bevy-14894
[ "14888" ]
3ded59ed47985b346ea12db2abc73138e2e893b4
"diff --git a/crates/bevy_ecs/src/observer/mod.rs b/crates/bevy_ecs/src/observer/mod.rs\n--- a/crate(...TRUNCATED)
"diff --git a/crates/bevy_ecs/src/observer/mod.rs b/crates/bevy_ecs/src/observer/mod.rs\n--- a/crate(...TRUNCATED)
"World::trigger variant that takes a &mut impl Event\n## What problem does this solve or what need d(...TRUNCATED)
2024-08-23T16:33:20Z
1.79
2024-09-23T17:22:06Z
612897becd415b7b982f58bd76deb719b42c9790
["change_detection::tests::mut_from_non_send_mut","change_detection::tests::map_mut","change_detecti(...TRUNCATED)
[]
[]
[]
auto_2025-06-08
bevyengine/bevy
14,881
bevyengine__bevy-14881
[ "14873" ]
9054d9dacb2bfb90ed3cd4e0d9efdb3bf0c233d9
"diff --git a/crates/bevy_app/src/lib.rs b/crates/bevy_app/src/lib.rs\n--- a/crates/bevy_app/src/lib(...TRUNCATED)
"diff --git a/crates/bevy_app/src/main_schedule.rs b/crates/bevy_app/src/main_schedule.rs\n--- a/cra(...TRUNCATED)
"Bevy has no clear schedule for updating a camera's `Transform` when using a fixed time step\n## Wha(...TRUNCATED)
"I'm a bit loathe to add more schedules with the current approach, but I see the pain here. \r\n\r\n(...TRUNCATED)
2024-08-22T20:15:58Z
1.79
2024-08-23T16:45:56Z
612897becd415b7b982f58bd76deb719b42c9790
["app::tests::app_exit_size","app::tests::test_derive_app_label","plugin_group::tests::add_after","p(...TRUNCATED)
[]
[]
[]
auto_2025-06-08
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
4