Skip to content

Commit 593cd38

Browse files
committed
📦 release: v13.0.0
1 parent a826950 commit 593cd38

File tree

11 files changed

+18
-10
lines changed

11 files changed

+18
-10
lines changed

‎CHANGES.rst

+8
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@
99
Changes
1010
=======
1111

12+
Version 13.0.0 (released 2024-04-10)
13+
14+
- ext: space-out community menu items
15+
- systemfields: dump `@v` field during indexing
16+
- members modal: generalise to be reusable
17+
- records: optimize performance of is_verified
18+
- models: fix memberships querying
19+
1220
Version 12.2.0 (released 2024-03-23)
1321

1422
- application: fix before_first_request deprecation

‎invenio_communities/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
from .ext import InvenioCommunities
1212
from .proxies import current_communities
1313

14-
__version__ = "12.2.0"
14+
__version__ = "13.0.0"
1515

1616
__all__ = ("InvenioCommunities", "current_communities")

‎invenio_communities/assets/semantic-ui/js/invenio_communities/members/components/SearchWithRoleSelection.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of Invenio.
3-
* Copyright (C) 2024 CERN.
3+
* Copyright (C) 2024-2024 CERN.
44
*
55
* Invenio is free software; you can redistribute it and/or modify it
66
* under the terms of the MIT License; see LICENSE file for more details.

‎invenio_communities/assets/semantic-ui/js/invenio_communities/members/components/bulk_actions/SelectedMembers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of Invenio.
3-
* Copyright (C) 2022 CERN.
3+
* Copyright (C) 2022-2024 CERN.
44
*
55
* Invenio is free software; you can redistribute it and/or modify it
66
* under the terms of the MIT License; see LICENSE file for more details.

‎invenio_communities/assets/semantic-ui/js/invenio_communities/members/invitations/invitationsModal/GroupTabPane.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of Invenio.
3-
* Copyright (C) 2022 CERN.
3+
* Copyright (C) 2022-2024 CERN.
44
*
55
* Invenio is free software; you can redistribute it and/or modify it
66
* under the terms of the MIT License; see LICENSE file for more details.

‎invenio_communities/assets/semantic-ui/js/invenio_communities/members/invitations/invitationsModal/InvitationsMembersModal.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of Invenio.
3-
* Copyright (C) 2022 CERN.
3+
* Copyright (C) 2022-2024 CERN.
44
*
55
* Invenio is free software; you can redistribute it and/or modify it
66
* under the terms of the MIT License; see LICENSE file for more details.

‎invenio_communities/assets/semantic-ui/js/invenio_communities/members/invitations/invitationsModal/MemberSearchBar.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of Invenio.
3-
* Copyright (C) 2022 CERN.
3+
* Copyright (C) 2022-2024 CERN.
44
*
55
* Invenio is free software; you can redistribute it and/or modify it
66
* under the terms of the MIT License; see LICENSE file for more details.

‎invenio_communities/communities/records/systemfields/is_verified.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Copyright (C) 2023 CERN.
3+
# Copyright (C) 2023-2024 CERN.
44
#
55
# Invenio-RDM-Records is free software; you can redistribute it and/or modify
66
# it under the terms of the MIT License; see LICENSE file for more details.

‎invenio_communities/ext.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
#
33
# This file is part of Invenio.
4-
# Copyright (C) 2016-2021 CERN.
4+
# Copyright (C) 2016-2024 CERN.
55
# Copyright (C) 2022 Northwestern University.
66
# Copyright (C) 2023-2024 Graz University of Technology.
77
#

‎invenio_communities/members/records/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
#
33
# Copyright (C) 2022 Northwestern University.
4-
# Copyright (C) 2022 CERN.
4+
# Copyright (C) 2022-2024 CERN.
55
# Copyright (C) 2022 Graz University of Technology.
66
#
77
# Invenio-Communities is free software; you can redistribute it and/or modify

‎tests/communities/test_relations_organizations.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Copyright (C) 2022 CERN
3+
# Copyright (C) 2022-2024 CERN
44
#
55
# Invenio-Communities is free software; you can redistribute it and/or modify
66
# it under the terms of the MIT License; see LICENSE file for more details.

0 commit comments

Comments
 (0)