Skip to content

Commit

Permalink
Merge branch 'release/0.24.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
jimbonothing64 committed May 20, 2024
2 parents 8cabbbf + bd5f204 commit 4076815
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

## 0.23.0
## 0.24.1

- Fix bad CSRF trusted origin

## 0.24.0

- Fix admin login by adding CSRF trusted origins
- Update docker images to use debian bookworm
Expand Down
2 changes: 1 addition & 1 deletion dthm4kaiako/config/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Configuration for Django system."""

__version__ = "0.24.0"
__version__ = "0.24.1"
__version_info__ = tuple(
[
int(num) if num.isdigit() else num
Expand Down
2 changes: 1 addition & 1 deletion dthm4kaiako/config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -458,5 +458,5 @@
]
CSRF_TRUSTED_ORIGINS = [
'https://dthm4kaiako-dev.csse.canterbury.ac.nz',
'https://dthm4kaiako.ac.nz/',
'https://dthm4kaiako.ac.nz',
]

0 comments on commit 4076815

Please sign in to comment.