From b39311c65404da5af91b4dea2caf892819228cba Mon Sep 17 00:00:00 2001 From: Patryk Mroczko Date: Tue, 23 Dec 2025 12:11:02 +0100 Subject: [PATCH 1/3] Update plugin versions for 5.0.4 release --- version.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/version.php b/version.php index 8ff597c..6ccc4ba 100644 --- a/version.php +++ b/version.php @@ -25,11 +25,11 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2025040810; +$plugin->version = 2025040815; $plugin->requires = 2025040800; -$plugin->release = '5.0.2'; +$plugin->release = '5.0.4'; $plugin->component = 'block_microsoft'; $plugin->maturity = MATURITY_STABLE; $plugin->dependencies = [ - 'local_o365' => 2025040810, + 'local_o365' => 2025040820, ]; From e76d3ecc4ebd227387c1d976786b3d63ea4d7090 Mon Sep 17 00:00:00 2001 From: Lai Wei Date: Tue, 10 Feb 2026 09:47:31 +0000 Subject: [PATCH 2/3] update Moodle plugin CI config for Moodle 5.1 release --- .github/workflows/ci.yml | 4 ++-- .gitlab-ci.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 104e5ee..7ece71c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: services: postgres: - image: postgres:14 + image: postgres:15 env: POSTGRES_USER: 'postgres' POSTGRES_HOST_AUTH_METHOD: 'trust' @@ -40,7 +40,7 @@ jobs: strategy: fail-fast: false matrix: - moodle-branch: ['MOODLE_500_STABLE'] + moodle-branch: ['MOODLE_501_STABLE'] php: [8.2, 8.3, 8.4] database: [pgsql, mariadb] diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3d1c3f9..accc617 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,7 +20,7 @@ variables: COMPOSER_CACHE_DIR: "$CI_PROJECT_DIR/.cache/composer" NPM_CONFIG_CACHE: "$CI_PROJECT_DIR/.cache/npm" CI_BUILD_DIR: '/tmp/plugin' - MOODLE_BRANCH: 'MOODLE_500_STABLE' + MOODLE_BRANCH: 'MOODLE_501_STABLE' MOODLE_BEHAT_WWWROOT: 'http://localhost:8000' MOODLE_BEHAT_WDHOST: 'http://behat:4444/wd/hub' MOODLE_START_BEHAT_SERVERS: 'no' From bf4024bda9f268d8b8ac7627b3cdf57ed47158a5 Mon Sep 17 00:00:00 2001 From: Lai Wei Date: Tue, 10 Feb 2026 09:54:24 +0000 Subject: [PATCH 3/3] Update plugin versions for Moodle 5.1.0 release --- version.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/version.php b/version.php index 6ccc4ba..fa7359c 100644 --- a/version.php +++ b/version.php @@ -25,11 +25,11 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2025040815; -$plugin->requires = 2025040800; -$plugin->release = '5.0.4'; +$plugin->version = 2025100600; +$plugin->requires = 2025100600; +$plugin->release = '5.1.0'; $plugin->component = 'block_microsoft'; $plugin->maturity = MATURITY_STABLE; $plugin->dependencies = [ - 'local_o365' => 2025040820, + 'local_o365' => 2025100600, ];