diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 359824ebb3..8b2252a1e7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -16,6 +16,12 @@ Change Log Unreleased ---------- +[4.10.2] +-------- + +feat: removed unencrypted user credentials data columns + + [4.10.1] -------- diff --git a/enterprise/__init__.py b/enterprise/__init__.py index 9fe7d26ac9..1fff1428d6 100644 --- a/enterprise/__init__.py +++ b/enterprise/__init__.py @@ -2,4 +2,4 @@ Your project description goes here. """ -__version__ = "4.10.1" +__version__ = "4.10.2" diff --git a/tests/test_integrated_channels/test_moodle/test_exporters/test_learner_data.py b/tests/test_integrated_channels/test_moodle/test_exporters/test_learner_data.py index 6b27e4cd16..0ab89e387a 100644 --- a/tests/test_integrated_channels/test_moodle/test_exporters/test_learner_data.py +++ b/tests/test_integrated_channels/test_moodle/test_exporters/test_learner_data.py @@ -30,9 +30,9 @@ def setUp(self): moodle_base_url='foobar', service_short_name='shortname', category_id=1, - username='username', - password='password', - token='token', + decrypted_username='username', + decrypted_password='password', + decrypted_token='token', ) @mock.patch('enterprise.api_client.discovery.CourseCatalogApiServiceClient')