From 879197943d62b074e539670bb9e43e34bfd8c4c7 Mon Sep 17 00:00:00 2001 From: Sebastiano Mandala Date: Sat, 1 Apr 2023 19:31:00 +0100 Subject: [PATCH] update changelog --- com.sebaslab.svelto.ecs/CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/com.sebaslab.svelto.ecs/CHANGELOG.md b/com.sebaslab.svelto.ecs/CHANGELOG.md index 4f66355..c0234e9 100644 --- a/com.sebaslab.svelto.ecs/CHANGELOG.md +++ b/com.sebaslab.svelto.ecs/CHANGELOG.md @@ -1,6 +1,14 @@ # Svelto.ECS Changelog All notable changes to this project will be documented in this file. Changes are listed in random order of importance. +## [3.4.4] - 04-2023 + +* refactored internal datastructures +* added IReactOnDisposeEx interface +* added code to warmup all the entity descriptors at startup to avoid first time allocations when an entitydescriptor is used for the very first time +* added the option to iterate transient filters per component like it already happens with persistent filters. Transient filters are tracked optionally. +* fixed huge bug in the filter enumerator, truly surprised this never showed up + ## [3.4.2] - 03-2023 * removed static caches used in performance critical paths as they were causing unexpected performance issues (the fetching of static data is slower than i imagined)