From 256adeb580d219cf899b6ab4b8bc2a43f6d6ece6 Mon Sep 17 00:00:00 2001 From: Kjell Winblad Date: Mon, 12 Jun 2023 17:33:54 +0200 Subject: [PATCH] docs: add changelog entry --- changes/ce/fix-11026.en.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 changes/ce/fix-11026.en.md diff --git a/changes/ce/fix-11026.en.md b/changes/ce/fix-11026.en.md new file mode 100644 index 000000000..d07157b5f --- /dev/null +++ b/changes/ce/fix-11026.en.md @@ -0,0 +1 @@ +Addressed an inconsistency in the usage of 'div' and 'mod' operations within the rule engine. Previously, the 'div' operation was only usable as an infix operation and 'mod' could only be applied through a function call. With this change, both 'div' and 'mod' can be used via function call syntax and infix syntax.