Skip to content

Commit 0e9f119

Browse files
authored
Merge pull request #61 from microsoft/MOODLE_500_STABLE
Release 5.0.0 of Microsoft plugins for Moodle 5.0
2 parents a3487f8 + 25d06be commit 0e9f119

4 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
services:
1818
postgres:
19-
image: postgres:13
19+
image: postgres:14
2020
env:
2121
POSTGRES_USER: 'postgres'
2222
POSTGRES_HOST_AUTH_METHOD: 'trust'
@@ -25,7 +25,7 @@ jobs:
2525
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3
2626

2727
mariadb:
28-
image: mariadb:10
28+
image: mariadb:10.11
2929
env:
3030
MYSQL_USER: 'root'
3131
MYSQL_ALLOW_EMPTY_PASSWORD: "true"
@@ -40,8 +40,8 @@ jobs:
4040
strategy:
4141
fail-fast: false
4242
matrix:
43-
moodle-branch: ['MOODLE_405_STABLE']
44-
php: [8.1, 8.2, 8.3]
43+
moodle-branch: ['MOODLE_500_STABLE']
44+
php: [8.2, 8.3, 8.4]
4545
database: [pgsql, mariadb]
4646

4747
steps:

.gitlab-ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
- name: selenium/standalone-chrome:3
33
alias: behat
4-
- name: mysql:8.0
4+
- name: mysql:8.4
55
alias: db
66
command:
77
- '--character-set-server=utf8mb4'
@@ -20,7 +20,7 @@ variables:
2020
COMPOSER_CACHE_DIR: "$CI_PROJECT_DIR/.cache/composer"
2121
NPM_CONFIG_CACHE: "$CI_PROJECT_DIR/.cache/npm"
2222
CI_BUILD_DIR: '/tmp/plugin'
23-
MOODLE_BRANCH: 'MOODLE_405_STABLE'
23+
MOODLE_BRANCH: 'MOODLE_500_STABLE'
2424
MOODLE_BEHAT_WWWROOT: 'http://localhost:8000'
2525
MOODLE_BEHAT_WDHOST: 'http://behat:4444/wd/hub'
2626
MOODLE_START_BEHAT_SERVERS: 'no'
@@ -66,12 +66,6 @@ stages:
6666
exit 1;
6767
fi
6868
69-
php81:
70-
tags:
71-
- docker
72-
image: moodlehq/moodle-php-apache:8.1
73-
<<: *setupandruncheck
74-
7569
php82:
7670
tags:
7771
- docker
@@ -83,3 +77,9 @@ php83:
8377
- docker
8478
image: moodlehq/moodle-php-apache:8.3
8579
<<: *setupandruncheck
80+
81+
php84:
82+
tags:
83+
- docker
84+
image: moodlehq/moodle-php-apache:8.4
85+
<<: *setupandruncheck

classes/event/action_failed.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static function get_name() {
4444
* @return string
4545
*/
4646
public function get_description() {
47-
return $this->data['other'];
47+
return json_encode($this->data['other']);
4848
}
4949

5050
/**

version.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525

2626
defined('MOODLE_INTERNAL') || die();
2727

28-
$plugin->version = 2024100710;
29-
$plugin->requires = 2024100700;
30-
$plugin->release = '4.5.2';
28+
$plugin->version = 2025040800;
29+
$plugin->requires = 2025040800;
30+
$plugin->release = '5.0.0';
3131
$plugin->component = 'auth_oidc';
3232
$plugin->maturity = MATURITY_STABLE;

0 commit comments

Comments
 (0)