Fix changelog
Some checks failed
analysis / Run Luau Analyze (push) Has been cancelled
deploy-docs / build (push) Has been cancelled
publish-npm / publish (push) Has been cancelled
unit-testing / Run Luau Tests (push) Has been cancelled
deploy-docs / Deploy (push) Has been cancelled

This commit is contained in:
Ukendio 2025-07-04 21:49:24 +02:00
parent c9d888aeb9
commit 8fd32978b4

View file

@ -6,7 +6,7 @@
- `jecs.Exclusive` trait for making exclusive relationships. - `jecs.Exclusive` trait for making exclusive relationships.
### Changed ### Changed
- `jecs.Child` to be an exclusive relationship, which means you can only have one `ChildOf` pair on an entity. - `jecs.ChildOf` to be an exclusive relationship, which means you can only have one `ChildOf` pair on an entity.
## 0.7.2 ## 0.7.2
### Added ### Added
@ -24,7 +24,7 @@
- `bulk_insert` and `bulk_remove` respectively for moving an entity to an archetype without intermediate steps. - `bulk_insert` and `bulk_remove` respectively for moving an entity to an archetype without intermediate steps.
### Changed ### Changed
- The fields `archetype.records[id]` and `archetype.counts[id` have been removed from the archetype struct and been moved to the component record `component_index[id].records[archetype.id]` and `component_index[id].counts[archetype.id]` respectively. - The fields `archetype.records[id]` and `archetype.counts[id]` have been removed from the archetype struct and been moved to the component record `component_index[id].records[archetype.id]` and `component_index[id].counts[archetype.id]` respectively.
- Removed the metatable `jecs.World`. Use `jecs.world()` to create your World. - Removed the metatable `jecs.World`. Use `jecs.world()` to create your World.
- Archetypes will no longer be garbage collected when invalidated, allowing them to be recycled to save a lot of performance during frequent deletion. - Archetypes will no longer be garbage collected when invalidated, allowing them to be recycled to save a lot of performance during frequent deletion.
- Removed `jecs.entity_index_try_get_fast`. Use `jecs.entity_index_try_get` instead. - Removed `jecs.entity_index_try_get_fast`. Use `jecs.entity_index_try_get` instead.