Eloy Lafuente (stronk7)
3572a25cc3
MDL-65644 upgrade: add 3.7.0 separation line to all upgrade scripts
2019-05-20 19:35:05 +02:00
Eloy Lafuente (stronk7)
c9a1a6341c
MDL-65571 versions: bump all versions and requires near release
...
version = 2019052000 release version
requires= 2019051100 current beta (week6roll2) version
2019-05-12 23:46:34 +02:00
Jun Pataleta
7eb5148264
MDL-46975 auth_email: Behat test for email validation on signup
2019-03-29 13:37:07 +08:00
Eloy Lafuente (stronk7)
a12207be25
MDL-63276 upgrade: clean < 3.2.0 upgrade steps
...
3.7 (min PHP 7.1) requires 3.2 (first version supporting PHP 7.1)
This just deletes all the upgrade steps previous to 3.2.0. Some
small adjustments, like adding missing MOODLE_INTERNAL or tweaking
globals can also be applied when needed.
Also includes an upgrade step to prevent upgrading from any
version < 2016120500 (v3.2.0) as anti-cheating measure.
Next commit will get rid of/deprecate all the upgradelib functions
not used anymore in codebase. (note there isn't any this time).
2019-01-03 01:17:17 +01:00
Eloy Lafuente (stronk7)
f47c8f3525
MDL-64300 upgrade: add 3.6.0 separation line to all upgrade scripts
2018-12-02 18:36:40 +01:00
Eloy Lafuente (stronk7)
085353b315
MDL-64282 versions: bump all versions and requires near release
...
version = 2018120300 release version
requires= 2018112800 current rc2 (week7roll1) version
2018-11-29 18:24:08 +01:00
Eloy Lafuente (stronk7)
00977e984e
MDL-62478 upgrade: add 3.5.0 separation line to all upgrade scripts
2018-05-28 13:15:48 +02:00
Eloy Lafuente (stronk7)
57ea6753d3
MDL-62361 versions: bump all versions and requires near release
...
version = 2018051400 release version
requires= 2018050800 current beta+ (week4roll1) version
2018-05-09 02:46:30 +02:00
Juan Leyva
e709853ee6
MDL-62175 auth_email: Fix site policy enabled check
2018-04-24 11:48:00 +02:00
cescobedo
6291e67b11
MDL-61873 auth: Add privacy implementation for all auth plugins
...
None of the Auth plugins (except manual and oauth2) have any user preference or database table.
They all implement the null provider.
2018-04-07 11:24:17 +02:00
Jake Dallimore
73582bd26e
Merge branch 'eugene-auth-email-wantsurl' of https://github.com/bynare/moodle-fixes
2018-04-03 18:40:52 +08:00
Jake Dallimore
e1a527c0d4
Merge branch 'wip-MDL-61477-master-behat' of https://github.com/marinaglancy/moodle
2018-03-15 16:44:02 +08:00
Marina Glancy
c3b548479b
MDL-61477 auth_email: behat tests for sign up
2018-03-15 16:23:06 +08:00
Marina Glancy
acb3b78804
MDL-61477 auth_email: add sitepolicyhandler to the config WS
2018-03-15 11:32:59 +08:00
Marina Glancy
1727c939ba
MDL-61477 admin: sitepolicy handler API
...
- Define sitepolicy handler manager class, base class and the core handler
- Allow to set a plugin as sitepolicyhandler that implements the sitepolicy API
- Modify web services to return information from the 3rd party handler instead of core if needed
2018-03-15 11:32:55 +08:00
Jeff Webster
346657acef
MDL-48501 auth/email: update external class to use reCAPTCHA v2
2018-03-08 14:48:35 -05:00
Eugene Venter
feb23f1b96
MDL-60905 auth_email: remember loginpage wantsurl for account creation
...
this allows for redirecting to the correct location upon account
confirmation ;)
2017-11-27 13:42:26 +13:00
Eloy Lafuente (stronk7)
6499085f36
MDL-60784 upgrade: add 3.4.0 separation line to all upgrade scripts
2017-11-12 18:43:30 +01:00
Eloy Lafuente (stronk7)
ba854606e6
MDL-60764 versions: bump all versions and requires near release
...
version = 2017111300 release version
requires= 2017110800 current rc2 version
2017-11-10 02:52:53 +01:00
Juan Leyva
ca90ed2109
MDL-60141 auth_email: Fix sitepolicy field type in get_signup_settings
2017-09-15 11:50:07 +02:00
Eloy Lafuente (stronk7)
5e27228335
MDL-58933 upgrade: add 3.3.0 separation line to all upgrade scripts
2017-05-19 19:22:07 +02:00
Eloy Lafuente (stronk7)
d989ee1e03
MDL-58853 versions: bump all versions and requires near release
...
version = 2017051500 release version
requires= 2017050500 current rc1 version
2017-05-09 02:58:28 +02:00
David Mudrák
2b948c204a
MDL-58793 auth: Do not report migrated settings as new ones on upgrade
...
As a result of fixing the auth plugins config storage in MDL-12689, many
settings would be falsely reported as new ones by
admin/upgradesettings.php. We do not want to confuse admins so we try to
reduce the bewilderment by pre-populating the config_plugins table with
default values. This should be done only for disabled auth methods. The
enabled methods have their settings already stored, so reporting actual
new settings for them is valid.
2017-05-08 11:51:55 +02:00
David Mudrák
9f29e45e15
MDL-58793 auth: Fix invalid access to $this in settings.php files
...
It has never been guaranteed that settings.php would always be included
from inside the core\plugininfo\auth::load_settings() scope only.
Alternative fix would be to use $plugininfo->name but I think it is
better to be explicit here (same as we are explicit with setting names,
strings etc).
2017-05-08 11:47:29 +02:00
David Mudrák
31bd102316
MDL-58692 auth: Improve the migration of auth setting names
...
Some auth plugins used to have a mix of the legacy style of plugin names
in config_plugins table (such as 'auth/mnet') and the new correct
style (such as 'auth_mnet'). Attempting to rename the setting plugin via
low level SQL UPDATE could lead to duplicate key violation.
The patch introduces a new helper function to safely migrate the old
settings to the new ones, eventually informing the admin about the
values mismatch.
2017-05-03 12:02:43 +02:00
David Monllao
b1e8f8bf37
MDL-12689 mod_data: Remove trailing whitespaces
2017-04-04 00:14:35 +02:00
Stephen Bourget
037273d87e
MDL-12689: convert auth plugins to use settings.php
2017-04-03 10:50:09 -04:00
Juan Leyva
92f505171d
MDL-57361 auth_email: Force policy agreed on sign-up
2017-03-01 18:20:19 +01:00
Juan Leyva
9db43c7341
MDL-57629 webservice: Fix external functions phpdoc
...
Replace external_external_function_parameters with
external_function_parameters
2017-01-11 16:56:25 +01:00
Eloy Lafuente (stronk7)
04649747a4
MDL-57197 versions: bump all versions and requires near release
...
version = 2016120500 release version
requires= 2016112900 current rc4 version
2016-11-29 22:57:05 +01:00
Juan Leyva
d0da94cdf4
MDL-56974 auth_email: Incorrect param type for redirect in sign_up WS
2016-11-19 18:21:56 +00:00
Juan Leyva
b5f3e90e1c
MDL-56739 auth: Support launching the app upon user confirm
2016-11-11 15:06:36 +00:00
Juan Leyva
d6a25bc49a
MDL-56739 auth: Support custom confirmation URL
2016-11-10 09:35:21 +00:00
Ankit Agarwal
9d72acb7ed
MDL-56634 webservices: Remove script from api desc and clean desc printing
2016-11-02 10:06:05 +05:30
Andrew Nicols
952ffbc2b2
MDL-56092 auth_email: Correct assumed ordering in unit test
2016-10-06 09:07:08 +08:00
Juan Leyva
e66a45d994
MDL-56092 auth_email: New WS auth_email_signup_user
2016-10-04 09:50:04 +01:00
Juan Leyva
4e2f7e0cd8
MDL-56092 auth_email: New WS auth_email_get_signup_settings
2016-10-04 09:50:03 +01:00
Eloy Lafuente (stronk7)
1abca11e0a
MDL-54638 versions: bump all versions and requires near release
...
version = 2016052300 release version
requires= 2016051900 current rc1 version
2016-05-19 02:16:15 +02:00
Marina Glancy
4a89e83b80
MDL-52285 auth: use __construct() for constructors
2015-12-10 13:40:42 +08:00
Eloy Lafuente (stronk7)
2e144835bb
MDL-52059 versions: bump all versions and requires near release
...
version = planned 2015111600 release version
requires= current 2015111000 rc3 version
2015-11-10 12:33:52 +01:00
Marina Glancy
0f7f30021a
MDL-51217 auth: check if recaptcha enabled for current plugin
2015-09-16 15:30:04 +08:00
Ruslan Kabalin
7f2033eafe
MDL-51217 auth: Check if recaptcha enabled in the plugin used for signup.
2015-08-26 15:25:40 +01:00
Eloy Lafuente (stronk7)
26ea380d24
MDL-50102 versions: bump all versions and requires near release
...
version = planned 2015051100 release version
requires= current 2015050500 rc1 version
Note: On purpose, the course format social wrong version (2015102100)
has been kept unmodified. Looking forward a solution right now.
2015-05-05 17:43:19 +02:00
Marina Glancy
4f8b6d5674
MDL-50099 auth: less verbose account confirmed message
2015-05-05 15:33:36 +01:00
Helen Foster
0634dc3b76
MDL-50033 lang: Merge English strings from the en_fix language pack
2015-04-29 21:43:00 +02:00
Petr Skoda
1d658535b6
MDL-47830 auth: Add pw rotation restrictions
2014-12-01 08:53:52 +13:00
Petr Skoda
f720c2c060
MDL-48282 Standardise update of user->firstaccess
2014-11-21 09:25:57 +13:00
Eloy Lafuente (stronk7)
de881693f7
MDL-48021 bump: Bump all versions to planned release
...
This bumps all versions to planned 2.8 release
(2014111000) version and all the dependencies to
current 2.8rc1 (2014110400)
2014-11-04 17:52:35 +01:00
Rajesh Taneja
9363073b22
MDL-45641 event: Manually trigger event where needed.
...
Some places, user_created_user and user_updated_user
events should be triggred after profile data is saved.
2014-06-27 15:44:56 +08:00
Eloy Lafuente (stronk7)
538bf99ece
MDL-45486 Bump all versions to planned release
...
This bumps all versions to planned 2.7 release
(2014051200) version and all the dependencies to
current 2.7rc2 (2014050800)
2014-05-09 02:12:28 +02:00