Skip to content

Commit 3e0e550

Browse files
authored
Merge pull request #203 from SEI-gstrom/version/3.0.34
Upgrade VINCE to 3.0.34
2 parents 089e436 + 2150276 commit 3e0e550

4 files changed

Lines changed: 14 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ VINCE Coordination platform code
77
## Description
88
VINCE Coordination platform
99

10+
Version 3.0.34 2026-03-19
11+
12+
* modified exception handling for certain cases in the "troublesome user" code (Internal-837)
13+
* fixed bug affecting vulnote workflow (Internal-828)
14+
* dependabot update recommendation: `gunicorn` 21.2.0 to 22.2.0
15+
16+
1017
Version 3.0.33 2026-03-16
1118

1219
* modified code for creating weekly report spreadsheet in response to user request (Internal-804)

bigvince/settings_.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
ROOT_DIR = environ.Path(__file__) - 3
5555

5656
# any change that requires database migrations is a minor release
57-
VERSION = "3.0.33"
57+
VERSION = "3.0.34"
5858

5959
# Quick-start development settings - unsuitable for production
6060
# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ ecdsa==0.18.0
3939
envs==1.4
4040
fs==2.4.16
4141
fs-s3fs==1.1.1
42-
gunicorn==21.2.0
42+
gunicorn==22.0.0
4343
idna==3.7
4444
importlib-metadata==5.0.0
4545
importlib-resources==5.10.0

vince/views.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4415,13 +4415,11 @@ def get_context_data(self, **kwargs):
44154415
context["marks"] = json.loads(check.marks)
44164416

44174417
else:
4418-
# If the current user is the vulnote author, look for incomplete reviews
4419-
# by any reviewer so the author can see the reviewer's feedback/edits
4420-
reviewer_review = None
4421-
if self.request.user == vulnote.owner:
4422-
reviewer_review = VulNoteReview.objects.filter(
4423-
vulnote=vulnote.current_revision.id, complete=False
4424-
).first()
4418+
# Look for incomplete reviews by any reviewer so all users with access
4419+
# can see the reviewer's feedback/edits (in read-only mode if not the reviewer)
4420+
reviewer_review = VulNoteReview.objects.filter(
4421+
vulnote=vulnote.current_revision.id, complete=False
4422+
).first()
44254423

44264424
if reviewer_review:
44274425
initial = {

0 commit comments

Comments
 (0)