From 2fe5ff3bc354449f14fa585f1150322e606677dd Mon Sep 17 00:00:00 2001 From: Jonathan Champ Date: Thu, 3 Aug 2023 12:25:29 -0400 Subject: [PATCH] release: v5.1.0 --- README.md | 13 +++++++++++++ version.php | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 325e20ea..4f4ff3c7 100644 --- a/README.md +++ b/README.md @@ -53,13 +53,26 @@ server is properly synchronized with the time servers. ## Changelog +v5.1.0 + +- Feature: Show activity date/time directly on course page #509 (thanks @cdipe) +- Regression: Auto recording was forced off by default #505 (thanks @emmarichardson) + - Introduced in v4.7.0 when adding automatic recording settings. +- Bugfix: Validate meeting name length using Zoom's 200 character limit #512 (thanks @lcollong) +- Bugfix: Resolve database inconsistencies #505 (thanks @fabianbatioja, @foxlapinou) +- Bugfix: Skip grading/completion during pre-registration #507 (thanks @tbeachy) +- Bugfix: Correct error message handling #503 (thanks @jwalits) +- Bugfix: Provide prescribed Promise parameters #499 (thanks @fmido88) + v5.0.0 + - Backward incompatible: Drop support for JWT authentication (thanks @aspark21) - Zoom requires everyone to use Server-to-Server OAuth by September 1, 2023 - Backward incompatible: Require PHP 7.1+ (Moodle 3.7+) (thanks @rlaneIT) - Backward incompatible: Drop Moodle 3.4 mobile support v4.10.3 + - Bugfix: Also use proxy settings for OAuth token request #494 (thanks @adnbes) - Bugfix: Clean up exception handling to avoid notice #482 (thanks @andremenrath) - Bugfix: Avoid course/activity completion form overhead #481 (thanks @phette23) diff --git a/version.php b/version.php index 53828094..155bcb0e 100755 --- a/version.php +++ b/version.php @@ -25,8 +25,8 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'mod_zoom'; -$plugin->version = 2023080202; -$plugin->release = 'v5.0.1'; +$plugin->version = 2023082400; +$plugin->release = 'v5.1.0'; $plugin->requires = 2019052000; $plugin->maturity = MATURITY_STABLE; $plugin->cron = 0;