Sync to released Jecs 0.7.2-nightly.20250628T001101Z (#108)

Reviewed-on: #108
This commit is contained in:
marked 2025-06-28 02:11:21 +02:00
parent 784f08c26c
commit 257f5da6fe
8 changed files with 1380 additions and 1174 deletions

View file

@ -2,6 +2,19 @@
## Unreleased
## 0.7.0
### Added
- `jecs.component_record` for retrieving the component_record of a component.
- `Column<T>` and `ColumnsMap<T>` types for typescript.
- `bulk_insert` and `bulk_remove` respectively for moving an entity to an archetype without intermediate steps.
### 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.
- 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.
- Removed `jecs.entity_index_try_get_fast`. Use `jecs.entity_index_try_get` instead.
## 0.6.1
### Changed