From c8a2e347b2d6c841eb76e548a96396bb1d5a5ead Mon Sep 17 00:00:00 2001 From: MelchiorSchuh Date: Mon, 18 May 2026 13:51:27 +0200 Subject: [PATCH 1/2] fix(ModelMappings): Added removed_components mapping to follow previous changes --- include/geode/model/representation/core/mapping.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/geode/model/representation/core/mapping.hpp b/include/geode/model/representation/core/mapping.hpp index d96ca8466..7f2cfb491 100644 --- a/include/geode/model/representation/core/mapping.hpp +++ b/include/geode/model/representation/core/mapping.hpp @@ -105,6 +105,8 @@ namespace geode using ModelAddedComponentMapping = ModelMapping< std::vector< uuid > >; + using ModelRemovedComponentMapping = ModelMapping< std::vector< uuid > >; + using ModelUnchangedComponentMapping = ModelMapping< std::vector< uuid > >; using MeshElementMapping = GenericMapping< MeshElement, MeshElement >; @@ -187,6 +189,7 @@ namespace geode { ModelGenericMapping component_mapping; ModelAddedComponentMapping added_components; + ModelRemovedComponentMapping removed_components; ModelUnchangedComponentMapping unchanged_components; }; From 5c67f1b1994dabb3614ea6901d3dce97af989f08 Mon Sep 17 00:00:00 2001 From: MelchiorSchuh <26920036+MelchiorSchuh@users.noreply.github.com> Date: Tue, 19 May 2026 08:34:58 +0000 Subject: [PATCH 2/2] Apply prepare changes --- commitlint.config.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/commitlint.config.js b/commitlint.config.js index a397334b6..0c07c2645 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -14,6 +14,7 @@ const Configuration = { "type-empty": [0], "type-enum": [2, "always", ["feat", "fix", "perf"]], }, -} + defaultIgnores: false, +}; -export default Configuration +export default Configuration;