Skip to content

Commit 4fb698e

Browse files
authored
chore: remove all references to edx-proctoring-proctortrack (#1310)
All references to edx-proctoring-proctortrack are being removed from the openedx organization as explained here: openedx/openedx-platform#36329
1 parent b491419 commit 4fb698e

5 files changed

Lines changed: 7 additions & 4 deletions

File tree

CHANGELOG.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ Change Log
1313
1414
Unreleased
1515
~~~~~~~~~~
16+
[5.2.1] - 2025-12-05
17+
* Remove all references to Proctortrack
18+
1619
[5.2.0] - 2025-04-22
1720
* adds support for django 5.2
1821

edx_proctoring/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
"""
44

55
# Be sure to update the version number in edx_proctoring/package.json
6-
__version__ = '5.2.0'
6+
__version__ = '5.2.1'

edx_proctoring/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1771,7 +1771,7 @@ def create_proctoring_attempt_status_email(exam_attempt_obj, course_name, course
17711771
default_contact_url = f'{scheme}://{constants.SITE_NAME}/support/contact_us'
17721772

17731773
# If the course has a proctoring escalation email set, use that rather than edX Support.
1774-
# Currently only courses using Proctortrack will have this set.
1774+
# This will be set if 'requires_escalation_email' is 'True' in proctoring backend.
17751775
proctoring_escalation_email = _get_proctoring_escalation_email(course_id)
17761776
if proctoring_escalation_email:
17771777
contact_url = f'mailto:{proctoring_escalation_email}'

edx_proctoring/tests/test_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def test_history(self):
6767
self.assertEqual(len(proctored_exam.history.filter(course_id='test_course', content_id='test_content')), 1)
6868

6969
proctored_exam.external_id = 'test_id_2'
70-
proctored_exam.backend = 'proctortrack'
70+
proctored_exam.backend = 'test_proctoring_provider'
7171
proctored_exam.save()
7272

7373
self.assertEqual(len(proctored_exam.history.filter(course_id='test_course', content_id='test_content')), 2)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@edx/edx-proctoring",
33
"//": "Note that the version format is slightly different than that of the Python version when using prereleases.",
4-
"version": "5.2.0",
4+
"version": "5.2.1",
55
"main": "edx_proctoring/static/index.js",
66
"scripts": {
77
"test": "gulp test"

0 commit comments

Comments
 (0)