Skip to content

Commit

Permalink
Update to 3.0.9 version update
Browse files Browse the repository at this point in the history
  • Loading branch information
sei-vsarvepalli committed Oct 28, 2024
1 parent d3d3b6e commit 82c442b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
CHANGELOG
VINCE Coordination platform code

Version 3.0.9 2024-10-28

* Update to fix Security issue with enumerate users in vincecomm (Internal-783 CVE-2024-10469)
* Update date format to VinceComm as per GH-Issue (GH Issue #157)


Version 3.0.8 2024-10-14

* Fixed a potential security issue with pickle DOS reported by @coldwaterq [coldwaterq](https://github.com/coldwaterq) as [CVE-2024-9953](https://www.cve.org/CVERecord?id=CVE-2024-9953) resolved in 3.0.8
Expand Down
2 changes: 1 addition & 1 deletion bigvince/settings_.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
ROOT_DIR = environ.Path(__file__) - 3

# any change that requires database migrations is a minor release
VERSION = "3.0.8"
VERSION = "3.0.9"

# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/2.1/howto/deployment/checklist/
Expand Down
7 changes: 6 additions & 1 deletion vinny/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1536,7 +1536,10 @@ def test_func(self):
).first()
if admin:
return PendingTestMixin.test_func(self)
return PendingTestMixin.test_func(self)
else:
return False
return PendingTestMixin.test_func(self)
return False

def dispatch(self, request, *args, **kwargs):
if self.kwargs.get("vendor_id"):
Expand Down Expand Up @@ -2884,6 +2887,8 @@ def get_context_data(self, **kwargs):
case = Case.objects.get(id=self.kwargs["pk"])
# content = VendorNotificationContent.objects.filter(case=case).first()
context["case"] = case
logger.debug(f"case.due_date is {case.due_date}")
logger.debug(f"context['case'].due_date is {context['case'].due_date}")
context["casepage"] = 1
context["today"] = timezone.now
# context['content'] = content
Expand Down

0 comments on commit 82c442b

Please sign in to comment.