Commit Graph

3390 Commits

Author SHA1 Message Date
Eloy Lafuente (stronk7) 9e5cda1f6c weekly release 3.5.5+ 2019-04-26 18:41:11 +02:00
Eloy Lafuente (stronk7) 5d3bf61c27 weekly release 3.5.5+ 2019-04-23 17:36:22 +02:00
Eloy Lafuente (stronk7) ca0f244e09 weekly release 3.5.5+ 2019-04-17 20:04:20 +02:00
Eloy Lafuente (stronk7) 8ffac7d8e3 weekly release 3.5.5+ 2019-04-12 21:35:08 +02:00
Eloy Lafuente (stronk7) 12476a35a6 weekly release 3.5.5+ 2019-04-09 20:37:04 +02:00
Eloy Lafuente (stronk7) 96607cf5b3 weekly release 3.5.5+ 2019-04-05 18:32:34 +02:00
Eloy Lafuente (stronk7) 5e2338c868 weekly release 3.5.5+ 2019-04-02 15:52:50 +02:00
Eloy Lafuente (stronk7) d28abb632d weekly release 3.5.5+ 2019-03-28 16:49:09 +01:00
David Mudrák 959c70e87b MDL-64996 analytics: Make sure the no_teaching model is trained
Due to the bug, the no_teaching model might have been marked as
not-trained in the database. Static predictions models (i.e. those using
a target based on assumptions, not facts) are always considered as
trained. If they were marked as not-trained, the prediction scheduled
task would skip them and they would produce no predictions.

Ideally, such a fix should be done for all static models. But there is
no easy way to do it during the upgrade where accessing the analytics
API is not possible. I don't think there are many models out there that
would be affected by this so this seems to be good enough solution for
now (and the future ability to reset models will cover the rest).
2019-03-25 09:16:13 +01:00
Eloy Lafuente (stronk7) d70651f787 weekly release 3.5.5+ 2019-03-21 20:19:36 +01:00
Jake Dallimore b1376641d4 weekly release 3.5.5+ 2019-03-15 11:01:27 +08:00
David Monllaó deb6d89f94 MDL-61585 analytics: Include missing indicators 2019-03-11 09:39:51 +01:00
Sara Arjona 5e878219fb Moodle release 3.5.5 2019-03-08 11:03:11 +01:00
Eloy Lafuente (stronk7) 8360ef9293 weekly release 3.5.4+ 2019-03-07 16:41:53 +01:00
Eloy Lafuente (stronk7) b38eb7882b weekly release 3.5.4+ 2019-02-28 18:51:41 +01:00
Andrew Nicols f5dde8d05e weekly release 3.5.4+ 2019-02-22 10:51:25 +08:00
Andrew Nicols 41a15e6d73 weekly release 3.5.4+ 2019-02-15 08:29:24 +08:00
Jun Pataleta 43f894f2ba weekly release 3.5.4+ 2019-02-08 14:54:34 +08:00
Jun Pataleta 06c98804f8 weekly release 3.5.4+ 2019-02-01 08:57:10 +08:00
Eloy Lafuente (stronk7) be521ca625 weekly release 3.5.4+ 2019-01-24 15:12:31 +01:00
Justus Dieckmann 609203ada6 MDL-58256 group: prevents users to be added to a group twice 2019-01-22 13:05:34 +01:00
David Mudrák f9d389f45b MDL-64553 message: Add index for the notifications.useridfrom field
The useridfrom would normally be a foreign key to the users table. But
it can also contain some extra negative values with special semantics
(-10 or -20 for no-reply or support user). Therefore we can't make it a
foreign key and the index must be created explicitly.
2019-01-21 13:31:17 +01:00
Jake Dallimore 247b70b0de Merge branch 'MDL-60972-35_delete_section_files' of https://github.com/awagner/moodle into MOODLE_35_STABLE 2019-01-21 09:03:46 +08:00
Eloy Lafuente (stronk7) b39f7194a8 weekly release 3.5.4+ 2019-01-17 17:47:58 +01:00
Andreas Wagner 9ebaea25f6 MDL-60972 core_course: delete section files, when section is deleted. 2019-01-17 08:18:34 +01:00
Eloy Lafuente (stronk7) 4c6ae316d8 Moodle release 3.5.4 2019-01-12 13:25:56 +01:00
Sara Arjona 609b020512 weekly release 3.5.3+ 2019-01-10 17:51:28 +01:00
Michael Hawkins 9ca8ccbefc MDL-64395 groups: Added XSS Risk to the manage groups capability 2019-01-08 16:21:48 +01:00
Adrian Greeve 79d87ad683 weekly release 3.5.3+ 2018-12-20 11:09:14 +01:00
Jake Dallimore c8b4ee45a4 weekly release 3.5.3+ 2018-12-14 07:51:44 +08:00
Jake Dallimore 2fbae51df0 weekly release 3.5.3+ 2018-12-10 08:10:18 +08:00
Jake Dallimore f6b4c923ec Merge branch 'MDL-63710-MOODLE_35' of https://github.com/ilya-catalyst/moodle into MOODLE_35_STABLE 2018-12-06 11:45:04 +08:00
Ilya Tregubov daa7d65f34 MDL-63710 repository: Delete orphaned file records. 2018-12-06 12:38:25 +11:00
Tim Hunt 6a58779607 MDL-46783 permissions: let some moodle/ caps be overriden in all mods
The capabilities changed ('contextlevel' => CONTEXT_COURSE changed to
'contextlevel' => CONTEXT_MODULE) are:

* moodle/site:accessallgroups
* moodle/site:viewfullnames
* moodle/site:trustcontent
* moodle/site:viewuseridentity

This list came from reviewing the _get_extra_capabilities functions in
all core activities. They were all somewhat inconsistent, but I think it
makes sense that these capabilities are consistently overridable in all
activities. E.g. moodle/site:accessallgroups affects conditional
availability even if there is no other user of groups, and
moodle/site:viewuseridentity and moodle/site:viewfullnames affect the
logs report, if nothing else.

As a result of this, several _get_extra_capabilities functions are no
longer needed, and all the rest have been simplified.
2018-12-04 18:01:29 +00:00
Eloy Lafuente (stronk7) 3aca528730 weekly release 3.5.3+ 2018-12-04 13:06:05 +01:00
Eloy Lafuente (stronk7) 394c5ae9b8 weekly release 3.5.3+ 2018-11-30 18:02:10 +01:00
David Monllao b64e7253b2 weekly release 3.5.3+ 2018-11-28 11:23:14 +01:00
Eloy Lafuente (stronk7) 51b022db9b weekly release 3.5.3+ 2018-11-23 16:36:48 +01:00
David Monllao 56d8e413ba weekly release 3.5.3+ 2018-11-20 12:55:14 +01:00
Eloy Lafuente (stronk7) fc2cde8f80 weekly release 3.5.3+ 2018-11-16 12:03:10 +01:00
David Monllao 628a7bb557 weekly release 3.5.3+ 2018-11-13 13:10:48 +01:00
Eloy Lafuente (stronk7) 789dcd6975 Moodle release 3.5.3 2018-11-10 20:36:27 +01:00
Eloy Lafuente (stronk7) b908052850 weekly release 3.5.2+ 2018-11-10 12:53:24 +01:00
Eloy Lafuente (stronk7) 4ead20ffea weekly release 3.5.2+ 2018-11-06 19:06:47 +01:00
Eloy Lafuente (stronk7) 9d870a800d weekly release 3.5.2+ 2018-11-02 21:08:38 +01:00
Eloy Lafuente (stronk7) e1e20d0c9b weekly release 3.5.2+ 2018-10-30 18:24:07 +01:00
Eloy Lafuente (stronk7) f2eb4c0b8f weekly release 3.5.2+ 2018-10-26 18:05:09 +02:00
David Monllao 76528a767e weekly release 3.5.2+ 2018-10-23 16:39:30 +02:00
David Monllao 5cccfd2eab Merge branch 'MDL-62144-35' of git://github.com/damyon/moodle into MOODLE_35_STABLE 2018-10-22 16:34:37 +02:00
Eloy Lafuente (stronk7) 1a33d0869a weekly release 3.5.2+ 2018-10-22 10:37:24 +08:00