Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release version 4.1.3.1 #175

Merged
merged 2 commits into from
Nov 8, 2024
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
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ Changelog
=========


4.1.3.1 (2024-11-08)
====================

* remove `admin:cms_page_resolve` from the whitelist, as this view has been removed from the CMS.


4.1.3.0 (2024-10-29)
====================

Expand Down
3 changes: 0 additions & 3 deletions aldryn_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,6 @@ def to_settings(self, data, settings):
# stage sso enabled
# add internal endpoints that do not require authentication
settings['ALDRYN_SSO_LOGIN_WHITE_LIST'].append(reverse_lazy('cms-check-uninstall'))
# this is an internal django-cms url
# which gets called when a user logs out from toolbar
settings['ALDRYN_SSO_LOGIN_WHITE_LIST'].append(reverse_lazy('admin:cms_page_resolve'))

# Prevent injecting random comments to counter BREACH/CRIME attacks
# into the page tree snippets, as the javascript parsing the result
Expand Down
2 changes: 1 addition & 1 deletion aldryn_django_cms/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '4.1.3.0'
__version__ = '4.1.3.1'
Loading