Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ Change Log

Unreleased
~~~~~~~~~~
[5.2.1] - 2025-12-05
* Remove all references to Proctortrack

[5.2.0] - 2025-04-22
* adds support for django 5.2

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,4 +3,4 @@
"""

# Be sure to update the version number in edx_proctoring/package.json
__version__ = '5.2.0'
__version__ = '5.2.1'
2 changes: 1 addition & 1 deletion edx_proctoring/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1771,7 +1771,7 @@ def create_proctoring_attempt_status_email(exam_attempt_obj, course_name, course
default_contact_url = f'{scheme}://{constants.SITE_NAME}/support/contact_us'

# If the course has a proctoring escalation email set, use that rather than edX Support.
# Currently only courses using Proctortrack will have this set.
# This will be set if 'requires_escalation_email' is 'True' in proctoring backend.
proctoring_escalation_email = _get_proctoring_escalation_email(course_id)
if proctoring_escalation_email:
contact_url = f'mailto:{proctoring_escalation_email}'
Expand Down
2 changes: 1 addition & 1 deletion edx_proctoring/tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def test_history(self):
self.assertEqual(len(proctored_exam.history.filter(course_id='test_course', content_id='test_content')), 1)

proctored_exam.external_id = 'test_id_2'
proctored_exam.backend = 'proctortrack'
proctored_exam.backend = 'test_proctoring_provider'
proctored_exam.save()

self.assertEqual(len(proctored_exam.history.filter(course_id='test_course', content_id='test_content')), 2)
Expand Down
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": "5.2.0",
"version": "5.2.1",
"main": "edx_proctoring/static/index.js",
"scripts": {
"test": "gulp test"
Expand Down