Plugin: Azure: Bump version to v2.5 - refs BT#21930

pull/5934/head
Angel Fernando Quiroz Campos 10 months ago
parent 286b61d167
commit 5e10316787
No known key found for this signature in database
GPG Key ID: B284841AE3E562CD
  1. 8
      plugin/azure_active_directory/CHANGELOG.md
  2. 2
      plugin/azure_active_directory/src/AzureActiveDirectory.php

@ -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).

@ -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);
}
/**

Loading…
Cancel
Save