From 5e1031678798f1229acb4315e07df261cbbbcab8 Mon Sep 17 00:00:00 2001 From: Angel Fernando Quiroz Campos <1697880+AngelFQC@users.noreply.github.com> Date: Mon, 18 Nov 2024 17:37:58 -0500 Subject: [PATCH] Plugin: Azure: Bump version to v2.5 - refs BT#21930 --- plugin/azure_active_directory/CHANGELOG.md | 8 ++++++++ .../azure_active_directory/src/AzureActiveDirectory.php | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/plugin/azure_active_directory/CHANGELOG.md b/plugin/azure_active_directory/CHANGELOG.md index cb19ecdeb9..f2c618ee34 100644 --- a/plugin/azure_active_directory/CHANGELOG.md +++ b/plugin/azure_active_directory/CHANGELOG.md @@ -1,5 +1,13 @@ # Azure Active Directory Changelog +## 2.5 - 2024-11-18 + +* Added new options to get the user and groups with delta query (or change tracking) when syncing with scripts. +this requires manually doing the following changes to your database if you are upgrading from v2.4 +```sql +CREATE TABLE azure_ad_sync_state (id INT AUTO_INCREMENT NOT NULL, title VARCHAR(255) NOT NULL, value LONGTEXT NOT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB; +``` + ## 2.4 - 2024-08-28 * Added a new user extra field to save the unique Azure ID (internal UID). diff --git a/plugin/azure_active_directory/src/AzureActiveDirectory.php b/plugin/azure_active_directory/src/AzureActiveDirectory.php index d2493f11be..4b1e3cc63a 100644 --- a/plugin/azure_active_directory/src/AzureActiveDirectory.php +++ b/plugin/azure_active_directory/src/AzureActiveDirectory.php @@ -68,7 +68,7 @@ class AzureActiveDirectory extends Plugin self::SETTING_GET_USERGROUPS_DELTA => 'boolean', ]; - parent::__construct('2.4', 'Angel Fernando Quiroz Campos, Yannick Warnier', $settings); + parent::__construct('2.5', 'Angel Fernando Quiroz Campos, Yannick Warnier', $settings); } /**