Skip to content

Commit

Permalink
Plugin: Azure: Bump version to v2.5 - refs BT#21930
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelFQC committed Nov 18, 2024
1 parent c0cfcbf commit b5929e1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions plugin/azure_active_directory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
2 changes: 1 addition & 1 deletion plugin/azure_active_directory/src/AzureActiveDirectory.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ protected function __construct()
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);
}

/**
Expand Down

0 comments on commit b5929e1

Please sign in to comment.