diff --git a/CHANGES.rst b/CHANGES.rst index 389e01f..105ddd7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,27 @@ Changes ======= +Version 5.0.0 (released 2024-01-29) + +- add domains REST api and underlying service + +- improved indexing, data flow and search + + * Refactors data flow and indexing so that the aggregate data model is + in charge of all data parsing of the user and role model as well as + indexing + + * Adds domain data and user identities and further attributes to the + users index and makes them searchable for admins. + + * Fixes indexing/facets of email domain values. + + * Allows admins to search for restricted email addresses. + + * Add admin facets for domain, account status, domain status. + + * Add sort options to admin user search. + Version 4.0.0 (released 2024-01-29) - installation: bump invenio-accounts and invenio-records-resources diff --git a/invenio_users_resources/__init__.py b/invenio_users_resources/__init__.py index 0941dfa..6d29542 100644 --- a/invenio_users_resources/__init__.py +++ b/invenio_users_resources/__init__.py @@ -9,6 +9,6 @@ """Invenio module providing management APIs for users and roles/groups.""" -__version__ = "4.0.0" +__version__ = "5.0.0" __all__ = ("__version__",)