Skip to content

Commit

Permalink
Merge pull request #1009 from edx/ashultz0/rm-attempthistory-2
Browse files Browse the repository at this point in the history
feat: migration to drop now unused attempt history table
  • Loading branch information
ashultz0 authored Dec 8, 2021
2 parents b8bc9d3 + 85c9820 commit eec9cf2
Show file tree
Hide file tree
Showing 4 changed files with 22 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
~~~~~~~~~~

[4.8.1] - 2021-12-07
~~~~~~~~~~~~~~~~~~~~
* Remove older exam attempt history table.

[4.8.0] - 2021-12-07
~~~~~~~~~~~~~~~~~~~~
* Remove older exam attempt history object that has been replaced.
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__ = '4.8.0'
__version__ = '4.8.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,16 @@
# Generated by Django 2.2.24 on 2021-11-30 19:03

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('edx_proctoring', '0023_historicalproctoredexam'),
]

operations = [
migrations.DeleteModel(
name='ProctoredExamStudentAttemptHistory',
),
]
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": "4.8.0",
"version": "4.8.1",
"main": "edx_proctoring/static/index.js",
"scripts": {
"test": "gulp test"
Expand Down

0 comments on commit eec9cf2

Please sign in to comment.