From 33e09295af73ae7cd99b2b542e481b8f230b1486 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version.php b/version.php index 0d41472c..92cd5759 100644 --- a/version.php +++ b/version.php @@ -25,8 +25,8 @@ 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 = 'auth_oidc'; $plugin->maturity = MATURITY_STABLE; From d48563dc7ed737a0318fbc2952655d411beea460 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 8858ac56..fa305eba 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 c0e25dfa..4f63b994 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 1ce2fa497bad82612bc399c5d8bba275f73aded6 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/version.php b/version.php index 92cd5759..5d17fdd0 100644 --- a/version.php +++ b/version.php @@ -25,8 +25,8 @@ 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 = 'auth_oidc'; $plugin->maturity = MATURITY_STABLE;