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

V3.5.1 #470

Merged
merged 2 commits into from
Dec 21, 2023
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
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
Changes
=======

Version 3.5.1 (released 2023-12-10)

- views: disable registering of `settings.change_password` menu
if `ACCOUNTS_REGISTER_BLUEPRINT` is False

Version 3.5.0 (released 2023-11-10)

- datastore: override put method to add changes to db history
Expand Down
2 changes: 1 addition & 1 deletion invenio_accounts/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
from .ext import InvenioAccounts, InvenioAccountsREST, InvenioAccountsUI
from .proxies import current_accounts

__version__ = "3.5.0"
__version__ = "3.5.1"

__all__ = (
"__version__",
Expand Down
2 changes: 1 addition & 1 deletion invenio_accounts/views/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def init_menu():
# Register root breadcrumbs
item = current_menu.submenu("breadcrumbs.settings")
item.register("invenio_userprofiles.profile", _("Account"))
if not current_app.config.get("ACCOUNTS_REGISTER_BLUEPRINT"):
if current_app.config.get("ACCOUNTS_REGISTER_BLUEPRINT") is False:
return

# - Register menu
Expand Down
Loading