From 03d33749111929cd46d230daf7ab0eefd4cc702d Mon Sep 17 00:00:00 2001 From: Alex Ioannidis Date: Thu, 16 Jan 2025 08:44:55 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20release:=20v16.6.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGES.rst | 11 +++++++++++ invenio_rdm_records/__init__.py | 4 ++-- .../fields/AffiliationsField/AffiliationsField.js | 2 +- .../src/deposit/serializers/RightsVocabularyField.js | 2 +- invenio_rdm_records/notifications/builders.py | 2 +- invenio_rdm_records/requests/community_inclusion.py | 2 +- invenio_rdm_records/requests/community_submission.py | 2 +- .../resources/serializers/bibtex/schema.py | 2 +- .../services/communities/moderation.py | 2 +- tests/resources/serializers/test_bibtex_serializer.py | 2 +- 10 files changed, 21 insertions(+), 10 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 3ef075f98..e5b15dee3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -12,6 +12,17 @@ Changes ======= +Version v16.6.0 (released 2025-01-16) + +- notifications: add custom comment template for record inclusion + and draft review requests +- deposit-ui: fix affiliations dropdown behavior for custom values +- moderation: fix use of uow +- serializers/bibtex: Conference paper not falling back to proceedings +- serializers/bibtex: Conference proceeding to proceedings +- serializers/bibtex: year and month using publication date +- rights: fix serialize condition for controlled license + Version v16.5.1 (released 2024-12-16) - pids: add manage permission to be able to manage DOIs diff --git a/invenio_rdm_records/__init__.py b/invenio_rdm_records/__init__.py index 093d404c3..b23f9dc21 100644 --- a/invenio_rdm_records/__init__.py +++ b/invenio_rdm_records/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2019-2024 CERN. +# Copyright (C) 2019-2025 CERN. # Copyright (C) 2019-2024 Northwestern University. # Copyright (C) 2024 KTH Royal Institute of Technology. # Copyright (C) 2024 Graz University of Technology. @@ -12,6 +12,6 @@ from .ext import InvenioRDMRecords -__version__ = "16.5.1" +__version__ = "16.6.0" __all__ = ("__version__", "InvenioRDMRecords") diff --git a/invenio_rdm_records/assets/semantic-ui/js/invenio_rdm_records/src/deposit/fields/AffiliationsField/AffiliationsField.js b/invenio_rdm_records/assets/semantic-ui/js/invenio_rdm_records/src/deposit/fields/AffiliationsField/AffiliationsField.js index 79a8b8837..cd2d5eeb2 100644 --- a/invenio_rdm_records/assets/semantic-ui/js/invenio_rdm_records/src/deposit/fields/AffiliationsField/AffiliationsField.js +++ b/invenio_rdm_records/assets/semantic-ui/js/invenio_rdm_records/src/deposit/fields/AffiliationsField/AffiliationsField.js @@ -1,5 +1,5 @@ // This file is part of Invenio-RDM-Records -// Copyright (C) 2020-2024 CERN. +// Copyright (C) 2020-2025 CERN. // Copyright (C) 2020-2022 Northwestern University. // Copyright (C) 2021 Graz University of Technology. // diff --git a/invenio_rdm_records/assets/semantic-ui/js/invenio_rdm_records/src/deposit/serializers/RightsVocabularyField.js b/invenio_rdm_records/assets/semantic-ui/js/invenio_rdm_records/src/deposit/serializers/RightsVocabularyField.js index 7200d7e79..281e0313d 100644 --- a/invenio_rdm_records/assets/semantic-ui/js/invenio_rdm_records/src/deposit/serializers/RightsVocabularyField.js +++ b/invenio_rdm_records/assets/semantic-ui/js/invenio_rdm_records/src/deposit/serializers/RightsVocabularyField.js @@ -1,5 +1,5 @@ // This file is part of Invenio-RDM-Records -// Copyright (C) 2020-2023 CERN. +// Copyright (C) 2020-2025 CERN. // Copyright (C) 2020-2022 Northwestern University. // // Invenio-RDM-Records is free software; you can redistribute it and/or modify it diff --git a/invenio_rdm_records/notifications/builders.py b/invenio_rdm_records/notifications/builders.py index ae18e50d6..94c3dabd6 100644 --- a/invenio_rdm_records/notifications/builders.py +++ b/invenio_rdm_records/notifications/builders.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023-2024 CERN. +# Copyright (C) 2023-2025 CERN. # Copyright (C) 2023 Graz University of Technology. # # Invenio-RDM-Records is free software; you can redistribute it and/or modify diff --git a/invenio_rdm_records/requests/community_inclusion.py b/invenio_rdm_records/requests/community_inclusion.py index e03e928c4..fa6605c38 100644 --- a/invenio_rdm_records/requests/community_inclusion.py +++ b/invenio_rdm_records/requests/community_inclusion.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023-2024 CERN. +# Copyright (C) 2023-2025 CERN. # # Invenio-RDM-Records is free software; you can redistribute it and/or modify # it under the terms of the MIT License; see LICENSE file for more details. diff --git a/invenio_rdm_records/requests/community_submission.py b/invenio_rdm_records/requests/community_submission.py index 95a535c4b..945210d67 100644 --- a/invenio_rdm_records/requests/community_submission.py +++ b/invenio_rdm_records/requests/community_submission.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2021-2024 CERN. +# Copyright (C) 2021-2025 CERN. # Copyright (C) 2023 Graz University of Technology. # # Invenio-RDM-Records is free software; you can redistribute it and/or modify diff --git a/invenio_rdm_records/resources/serializers/bibtex/schema.py b/invenio_rdm_records/resources/serializers/bibtex/schema.py index 8016b55e7..64ed200f9 100644 --- a/invenio_rdm_records/resources/serializers/bibtex/schema.py +++ b/invenio_rdm_records/resources/serializers/bibtex/schema.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023-2024 CERN +# Copyright (C) 2023-2025 CERN # # Invenio-RDM-Records is free software; you can redistribute it and/or modify # it under the terms of the MIT License; see LICENSE file for more details. diff --git a/invenio_rdm_records/services/communities/moderation.py b/invenio_rdm_records/services/communities/moderation.py index f7d8a81ee..5c6fbf8fd 100644 --- a/invenio_rdm_records/services/communities/moderation.py +++ b/invenio_rdm_records/services/communities/moderation.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2024 CERN. +# Copyright (C) 2024-2025 CERN. # Copyright (C) 2025 Graz University of Technology. # # Invenio-RDM-Records is free software; you can redistribute it and/or modify diff --git a/tests/resources/serializers/test_bibtex_serializer.py b/tests/resources/serializers/test_bibtex_serializer.py index 40c5b2c09..1ef1aab9a 100644 --- a/tests/resources/serializers/test_bibtex_serializer.py +++ b/tests/resources/serializers/test_bibtex_serializer.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023-2024 CERN +# Copyright (C) 2023-2025 CERN # # Invenio-RDM-Records is free software; you can redistribute it and/or modify # it under the terms of the MIT License; see LICENSE file for more details.