Skip to content

Commit

Permalink
Merge pull request #917 from edx/ashultz0/rm-proctor-attempt-name-db
Browse files Browse the repository at this point in the history
fix: finish removing unused proctored exam attempt name
  • Loading branch information
ashultz0 authored Jul 26, 2021
2 parents 1f59cc8 + 42a14a2 commit 9fb8042
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion edx_proctoring/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
@@ -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',
),
]
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 9fb8042

Please sign in to comment.