diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 79c67dd3f11..ded386e566b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -14,6 +14,10 @@ Change Log Unreleased ~~~~~~~~~~ +[3.21.1] - 2021-07-26 +~~~~~~~~~~~~~~~~~~~~~ +* Removed name field in proctored exam attempt from the DB. + [3.21.0] - 2021-07-23 ~~~~~~~~~~~~~~~~~~~~~ * Added feature behind the bulk allowance waffle flag that groups allowances by users. diff --git a/edx_proctoring/__init__.py b/edx_proctoring/__init__.py index 133ec1ee68a..f4fdbcf7602 100644 --- a/edx_proctoring/__init__.py +++ b/edx_proctoring/__init__.py @@ -3,6 +3,6 @@ """ # Be sure to update the version number in edx_proctoring/package.json -__version__ = '3.21.0' +__version__ = '3.21.1' default_app_config = 'edx_proctoring.apps.EdxProctoringConfig' # pylint: disable=invalid-name diff --git a/edx_proctoring/migrations/0017_rm_proctoredexamstudentattempt_name.py b/edx_proctoring/migrations/0017_rm_proctoredexamstudentattempt_name.py new file mode 100644 index 00000000000..59355d02d08 --- /dev/null +++ b/edx_proctoring/migrations/0017_rm_proctoredexamstudentattempt_name.py @@ -0,0 +1,21 @@ +# Generated by Django 2.2.24 on 2021-07-21 19:43 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('edx_proctoring', '0016_nullable_proctoredexamstudentattempt_name'), + ] + + operations = [ + migrations.RemoveField( + model_name='proctoredexamstudentattempt', + name='student_name', + ), + migrations.RemoveField( + model_name='proctoredexamstudentattempthistory', + name='student_name', + ), + ] diff --git a/package.json b/package.json index 48027fe82db..394e962427b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@edx/edx-proctoring", "//": "Note that the version format is slightly different than that of the Python version when using prereleases.", - "version": "3.21.0", + "version": "3.21.1", "main": "edx_proctoring/static/index.js", "scripts": { "test": "gulp test"