From 2f11efc33902cd859da9dfde76506a5f91ebd221 Mon Sep 17 00:00:00 2001 From: Machac Date: Thu, 23 Oct 2025 10:20:01 +0200 Subject: [PATCH 1/2] Release/7.0.0-RC9 - Updated parent POM version from `7.0.0-RC8.1` to `7.0.0-RC9` across all module POM files. --- application-engine/pom.xml | 2 +- nae-object-library/pom.xml | 2 +- nae-spring-core-adapter/pom.xml | 2 +- nae-user-ce/pom.xml | 2 +- nae-user-common/pom.xml | 2 +- pom.xml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/application-engine/pom.xml b/application-engine/pom.xml index da5d0cd77c6..2bd5e7c5a55 100644 --- a/application-engine/pom.xml +++ b/application-engine/pom.xml @@ -6,7 +6,7 @@ com.netgrif application-engine-parent - 7.0.0-RC8.1 + 7.0.0-RC9 application-engine diff --git a/nae-object-library/pom.xml b/nae-object-library/pom.xml index 24bf6a02470..774d8390ec9 100644 --- a/nae-object-library/pom.xml +++ b/nae-object-library/pom.xml @@ -7,7 +7,7 @@ com.netgrif application-engine-parent - 7.0.0-RC8.1 + 7.0.0-RC9 nae-object-library diff --git a/nae-spring-core-adapter/pom.xml b/nae-spring-core-adapter/pom.xml index 28d2c15eaab..baa42182723 100644 --- a/nae-spring-core-adapter/pom.xml +++ b/nae-spring-core-adapter/pom.xml @@ -7,7 +7,7 @@ com.netgrif application-engine-parent - 7.0.0-RC8.1 + 7.0.0-RC9 nae-spring-core-adapter diff --git a/nae-user-ce/pom.xml b/nae-user-ce/pom.xml index 9d2ea018c4b..83241c8c9dc 100644 --- a/nae-user-ce/pom.xml +++ b/nae-user-ce/pom.xml @@ -6,7 +6,7 @@ com.netgrif application-engine-parent - 7.0.0-RC8.1 + 7.0.0-RC9 nae-user-ce diff --git a/nae-user-common/pom.xml b/nae-user-common/pom.xml index c19da92f83e..c4e756a3014 100644 --- a/nae-user-common/pom.xml +++ b/nae-user-common/pom.xml @@ -6,7 +6,7 @@ com.netgrif application-engine-parent - 7.0.0-RC8.1 + 7.0.0-RC9 nae-user-common diff --git a/pom.xml b/pom.xml index 8d9e904ec88..8e1c15deb81 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.netgrif application-engine-parent - 7.0.0-RC8.1 + 7.0.0-RC9 pom NETGRIF Application Engine parent From e808e3f74714721fd8c44b47d5b52e6f603c7f2b Mon Sep 17 00:00:00 2001 From: renczesstefan Date: Wed, 5 Nov 2025 11:54:48 +0100 Subject: [PATCH 2/2] [NAE-2245] Fix role preference menu item mapping caused by removed netId field Updated the code to use `role.processId` instead of `role.netId` when fetching the PetriNet object. This resolves potential mismatches and ensures accurate retrieval of process identifiers. --- .../petrinet/domain/dataset/logic/action/ActionDelegate.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application-engine/src/main/groovy/com/netgrif/application/engine/petrinet/domain/dataset/logic/action/ActionDelegate.groovy b/application-engine/src/main/groovy/com/netgrif/application/engine/petrinet/domain/dataset/logic/action/ActionDelegate.groovy index 33319096504..0fb4207abbc 100644 --- a/application-engine/src/main/groovy/com/netgrif/application/engine/petrinet/domain/dataset/logic/action/ActionDelegate.groovy +++ b/application-engine/src/main/groovy/com/netgrif/application/engine/petrinet/domain/dataset/logic/action/ActionDelegate.groovy @@ -2421,7 +2421,7 @@ class ActionDelegate { if (role.isGlobal()) { return [(role.importId + ":" + GLOBAL_ROLE), ("$role.name (🌍 Global role)" as String)] } else { - PetriNet net = petriNetService.get(new ObjectId(role.netId)) + PetriNet net = petriNetService.get(new ObjectId(role.processId)) return [(role.importId + ":" + net.identifier), ("$role.name ($net.title)" as String)] } } as Map