From 4c92e0533b2e04edab826053fdcf5e8f885a8805 Mon Sep 17 00:00:00 2001 From: Akhil Krishnakumar Date: Fri, 29 May 2026 17:17:59 +0200 Subject: [PATCH 1/2] Make Optimistic Locking GA --- content/en/docs/refguide/runtime/optimistic-locking.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/en/docs/refguide/runtime/optimistic-locking.md b/content/en/docs/refguide/runtime/optimistic-locking.md index 149e3905ee5..8713fbe602c 100644 --- a/content/en/docs/refguide/runtime/optimistic-locking.md +++ b/content/en/docs/refguide/runtime/optimistic-locking.md @@ -8,7 +8,8 @@ beta: true ## Introduction {{% alert color="info" %}} -This feature is available in Beta starting with Mendix version 11.5.0. +This feature is Generally Available starting with Mendix version 11.11.0. +This feature was available as Beta since Mendix version 11.5.0. {{% /alert %}} Optimistic locking is a strategy used in concurrent systems to prevent lost updates when multiple users or processes try to modify the same piece of data at the same time. Instead of locking the data immediately, and preventing other users from accessing it, optimistic locking allows multiple users to read, and potentially modify, the same data concurrently. In optimistic locking, the assumption is that conflicts are rare, so it checks for conflicts only at the very last moment, when an update is attempted. From e78c9c0508566e89cd8c77c89d39d34613fcfc47 Mon Sep 17 00:00:00 2001 From: Mark van Ments <35492184+MarkvanMents@users.noreply.github.com> Date: Wed, 3 Jun 2026 16:38:31 +0200 Subject: [PATCH 2/2] Clarify availability of optimistic locking feature Updated the description of the availability of optimistic locking feature in Mendix. Removed the "beta" lozenge. --- content/en/docs/refguide/runtime/optimistic-locking.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/content/en/docs/refguide/runtime/optimistic-locking.md b/content/en/docs/refguide/runtime/optimistic-locking.md index 8713fbe602c..f26185ce187 100644 --- a/content/en/docs/refguide/runtime/optimistic-locking.md +++ b/content/en/docs/refguide/runtime/optimistic-locking.md @@ -2,13 +2,12 @@ title: "Optimistic Locking" url: /refguide/optimistic-locking/ description: "Describes optimistic locking support." -beta: true --- ## Introduction {{% alert color="info" %}} -This feature is Generally Available starting with Mendix version 11.11.0. +This feature is Generally Available in Mendix version 11.11.0 and above. This feature was available as Beta since Mendix version 11.5.0. {{% /alert %}}