From b76a289329a2252f82b539c83ab1d4e7ce7e2457 Mon Sep 17 00:00:00 2001 From: Jonathan Champ Date: Fri, 28 Apr 2023 12:10:03 -0400 Subject: [PATCH] release: v4.10.1 --- .github/workflows/ci.yml | 5 ++++- README.md | 10 ++++++++++ version.php | 4 ++-- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc551551..a768323d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,9 +30,12 @@ jobs: fail-fast: false matrix: include: - - php: '8.0' + - php: '8.1' moodle-branch: 'master' database: 'mariadb' + - php: '8.1' + moodle-branch: 'MOODLE_402_STABLE' + database: 'pgsql' - php: '8.0' moodle-branch: 'MOODLE_401_STABLE' database: 'pgsql' diff --git a/README.md b/README.md index c33a34c2..f6c3ce27 100644 --- a/README.md +++ b/README.md @@ -69,6 +69,16 @@ server is properly synchronized with the time servers. ## Changelog +v4.10.1 + +- Bugfix: Stop showing finished events in My Overview block #451 (thanks @nstefanski) +- Bugfix: Automatically retry on TLS connection error #466 (thanks @lcollong) +- Bugfix: Allow restoring activiting that are missing `option_auto_recording` #470 (thanks @lexxkoto) +- Bugfix: Document that each Moodle install needs its own OAuth app #475 (thanks @DLM-unipd, @haietza) +- Bugfix: Check required scopes before caching OAuth token #475 (thanks @tbeachy) +- Code quality: Align with Moodle-compatible PSR-1 and PSR-12 rules #465 +- Special thanks to @rickbeasley for his contributions to this plugin and to the team. + v4.10.0 - Feature: Option for redefine licenses to only affect users on 'this' Moodle server #436 (thanks @KepaUrzelai) diff --git a/version.php b/version.php index cd5a4690..59d83752 100755 --- a/version.php +++ b/version.php @@ -25,8 +25,8 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'mod_zoom'; -$plugin->version = 2023021400; -$plugin->release = 'v4.10.0'; +$plugin->version = 2023042800; +$plugin->release = 'v4.10.1'; $plugin->requires = 2017111300; $plugin->maturity = MATURITY_STABLE; $plugin->cron = 0;