Skip to content

Commit 5141ea6

Browse files
authored
Merge pull request #587 from turnitin/release_notes
Add release notes and bump version
2 parents 8993360 + 097f6c2 commit 5141ea6

File tree

3 files changed

+31
-3
lines changed

3 files changed

+31
-3
lines changed

CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
### Date: 2021-June-08
2+
### Release: 2021060801
3+
4+
#### :wrench: Fixes and enhancements
5+
6+
####Support for Moodle 3.11
7+
You can now confidently use this integration with Moodle 3.11.
8+
9+
####Use Turnitin with Moodle Quizzes
10+
We can now check for similarity on any files that are uploaded as a part of a Moodle quiz.
11+
12+
####Cron tasks will no longer run when Moodle is not configured
13+
Thanks to alexmorrisnz for the pull request!
14+
15+
####Removed grades change the grade in Moodle
16+
When a grade is removed from Turnitin, this removal will also be reflected within Moodle as the submission being ungraded.
17+
18+
####Turnitin classes will now be expired along with a Moodle course
19+
We will now sync dates in Moodle with the Turnitin database. When the Moodle course expires, we will close out those classes in Turnitin. This will free up the active student count for those classes.
20+
21+
####Create or access Moodle assignments, forums, and workshops when Turnitin is disabled
22+
If Turnitin is disabled for an assignment, forum, or workshop and Turnitin is unavailable by having the wrong configuration options or being under maintenance, then an error message would be shown. This bug has been fixed, and Turnitin being unreachable will no longer impact your ability to create or access your content.
23+
24+
####Changes to the Moodle course name will be reflected everywhere
25+
When a Moodle course title is changed, this will now be updated in Turnitin too. This will include the digital receipts students receive when they submit their paper.
26+
27+
---
28+
129
### Date: 2020-November-30
230
### Release: 2020113001
331

db/upgrade.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -489,15 +489,15 @@ function xmldb_plagiarism_turnitin_upgrade($oldversion) {
489489
upgrade_plugin_savepoint(true, 2020091401, 'plagiarism', 'turnitin');
490490
}
491491

492-
if ($oldversion < 2021030401) {
492+
if ($oldversion < 2021060801) {
493493

494494
$table = new xmldb_table('plagiarism_turnitin_courses');
495495
$field = new xmldb_field('ownerid');
496496
if (!$dbman->field_exists($table, $field)) {
497497
$dbman->drop_field($table, $field);
498498
}
499499

500-
upgrade_plugin_savepoint(true, 2021030401, 'plagiarism', 'turnitin');
500+
upgrade_plugin_savepoint(true, 2021060801, 'plagiarism', 'turnitin');
501501
}
502502

503503
return $result;

version.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* @copyright 2012 iParadigms LLC
2020
*/
2121

22-
$plugin->version = 2021052501;
22+
$plugin->version = 2021060801;
2323
$plugin->release = "3.5+";
2424
$plugin->requires = 2018051700;
2525
$plugin->component = 'plagiarism_turnitin';

0 commit comments

Comments
 (0)