Skip to content
Open
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
14 changes: 11 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,23 @@ Change Log
Unreleased
**********

1.17.0 - 2026-05-26
*******************

Added
=====

* Add support for platform glob scopes.

1.16.0 - 2026-05-21
********************

Changed
=======

* (Patched onto newer changes as well as 0.20.1) Removed checks for libraries v2 when the enforcer is loaded. This was
originally add to improve performance, but a circular import on
openedx-platform caused it to always default to true. This ensures that the
* (Patched onto newer changes as well as 0.20.1) Removed checks for libraries v2 when
the enforcer is loaded. This was originally add to improve performance, but a circular
import on openedx-platform caused it to always default to true. This ensures that the
enforcer continues to work even if the circular import is resolved.

1.15.0 - 2026-04-30
Expand Down
2 changes: 1 addition & 1 deletion openedx_authz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

import os

__version__ = "1.16.0"
__version__ = "1.17.0"

ROOT_DIRECTORY = os.path.dirname(os.path.abspath(__file__))
Loading