Skip to content

Commit 2dda6be

Browse files
Update readme and version for the 4.4 release
1 parent 0bb3e06 commit 2dda6be

File tree

2 files changed

+30
-3
lines changed

2 files changed

+30
-3
lines changed

changes.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Change log for the Ad-hoc database queries report
22

3+
## Changes in 4.4
4+
5+
* This version is compatible with Moodle 5.0.
6+
* External APIs: Updated to use new base classes, as the minimum supported version is now Moodle 4.4.
7+
* Fixed a bug so that users only see queries they have permission to view.
8+
* Tidied up various parts of the codebase.
9+
* Improved Behat tests and navigation URLs.
10+
* PHPUnit: Removed unnecessary references to deprecated or removed plugins.
11+
* Accessibility: Required form fields now use the default required field message.
12+
* Fixed #114 — when downloading, return an empty CSV file (with headers) when there are no results.
13+
* Fixed test queries for MySQL containing CHR characters.
14+
15+
16+
## Changes in 4.3
17+
18+
* The report now shows results for the most recent time the query should have run,
19+
making it clearer when there are no results.
20+
* Improved the heading for the list of past results.
21+
* Log events: Removed legacy logging methods for compatibility with Moodle 4.2.
22+
* Added [wwwroot] to the email subject line to identify which environment sent the email.
23+
* When emailing single-row queries, the number of rows sent is now limited to 5 to avoid building
24+
an overly large list over time.
25+
* Fixed a bug to clean the file report name before generating downloads.
26+
* The session is now unlocked, allowing the users to run more than one report at a time (#113).
27+
* Removed underline on mouse hover
28+
29+
330
## Changes in 4.2
431

532
* This version works with Moodle 4.0.

version.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424

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

27-
$plugin->version = 2023121300;
28-
$plugin->requires = 2022112800;
27+
$plugin->version = 2025072400;
28+
$plugin->requires = 2024042200;
2929
$plugin->component = 'report_customsql';
3030
$plugin->maturity = MATURITY_STABLE;
31-
$plugin->release = '4.3 for Moodle 4.1+';
31+
$plugin->release = '4.4 for Moodle 4.4+';
3232

3333
$plugin->outestssufficient = true;

0 commit comments

Comments
 (0)