From 48f32bf7dbb5f0698f89ac30c918c4419ea4ac9b Mon Sep 17 00:00:00 2001 From: Alex Ioannidis Date: Wed, 7 Aug 2024 10:39:37 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20release:=20v11.6.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGES.rst | 18 ++++++++++++++++++ invenio_rdm_records/__init__.py | 2 +- .../administration/views/oai.py | 2 +- .../CreatibutorsField/CreatibutorsFieldItem.js | 2 +- .../contrib/imprint/__init__.py | 2 +- invenio_rdm_records/contrib/thesis/__init__.py | 2 +- .../contrib/thesis/custom_fields.py | 2 +- invenio_rdm_records/records/dumpers/pids.py | 2 +- invenio_rdm_records/resources/args.py | 2 +- .../resources/serializers/cff/__init__.py | 2 +- .../resources/serializers/codemeta/__init__.py | 2 +- .../resources/serializers/datacite/__init__.py | 2 +- .../resources/serializers/dcat/__init__.py | 2 +- .../resources/serializers/dcat/schema.py | 2 +- .../resources/serializers/geojson/__init__.py | 2 +- .../resources/serializers/iiif/__init__.py | 2 +- .../serializers/schemaorg/__init__.py | 2 +- .../resources/serializers/utils.py | 2 +- invenio_rdm_records/services/__init__.py | 2 +- invenio_rdm_records/services/access/service.py | 2 +- .../services/community_inclusion/service.py | 2 +- .../services/community_records/service.py | 2 +- .../services/components/review.py | 2 +- invenio_rdm_records/services/files/__init__.py | 2 +- invenio_rdm_records/services/files/service.py | 2 +- invenio_rdm_records/services/generators.py | 2 +- .../services/github/metadata.py | 2 +- invenio_rdm_records/services/pids/errors.py | 2 +- .../services/requests/service.py | 2 +- invenio_rdm_records/services/results.py | 2 +- .../services/schemas/__init__.py | 2 +- .../services/schemas/metadata.py | 2 +- .../services/schemas/parent/access.py | 2 +- invenio_rdm_records/tokens/errors.py | 2 +- tests/contrib/codemeta/conftest.py | 2 +- tests/fixtures/test_cli.py | 2 +- tests/records/dumpers/test_location_dumpers.py | 2 +- .../systemfields/test_permission_flags.py | 2 +- tests/requests/test_user_moderation_actions.py | 2 +- tests/resources/test_draft_file_permissions.py | 2 +- tests/resources/test_media_files.py | 2 +- tests/resources/test_publish_errors.py | 2 +- .../resources/test_record_file_permissions.py | 2 +- .../test_resources_community_records.py | 2 +- .../services/components/test_pids_component.py | 2 +- .../components/test_verified_component.py | 2 +- tests/services/test_sort.py | 2 +- tests/tokens/test_feature_flag.py | 2 +- tests/tokens/test_resource_access.py | 2 +- 49 files changed, 66 insertions(+), 48 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 8782e31d1..c9ad62a17 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -11,6 +11,24 @@ Changes ======= +Version v11.6.0 (released 2024-08-07) + +- creatibutors: fix buttons order +- permissions: change error handler for resolving pid permission denied +- record inclusion: use system identity to accept inclusion request when can_include_directly +- user_moderation: improve DB queries and use Celery tasks +- fix: use index to distinguish type of record in results + * The problem with "is_published" is that drafts created from records will + not be recognised correctly. + * Using the index is a valid solution but it is not a nice implementation. +- results: added support for drafts in the results list +- fix(community): set branding + * The set branding didn't work at all. It didn't work for rebranding if + a default already exists and it didn't work if no branding exists at + all. + * The default property of the CommunitiesRelationManager needs a string. + It can't handle a dict. + Version v11.5.0 (released 2024-07-22) - codemeta: added identifier to schema diff --git a/invenio_rdm_records/__init__.py b/invenio_rdm_records/__init__.py index 5529e34f5..d62a57c74 100644 --- a/invenio_rdm_records/__init__.py +++ b/invenio_rdm_records/__init__.py @@ -10,6 +10,6 @@ from .ext import InvenioRDMRecords -__version__ = "11.5.0" +__version__ = "11.6.0" __all__ = ("__version__", "InvenioRDMRecords") diff --git a/invenio_rdm_records/administration/views/oai.py b/invenio_rdm_records/administration/views/oai.py index 2c814630c..d71e4a277 100644 --- a/invenio_rdm_records/administration/views/oai.py +++ b/invenio_rdm_records/administration/views/oai.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2022 CERN. +# Copyright (C) 2022-2024 CERN. # Copyright (C) 2023 Graz University of Technology. # # invenio-administration is free software; you can redistribute it and/or diff --git a/invenio_rdm_records/assets/semantic-ui/js/invenio_rdm_records/src/deposit/fields/CreatibutorsField/CreatibutorsFieldItem.js b/invenio_rdm_records/assets/semantic-ui/js/invenio_rdm_records/src/deposit/fields/CreatibutorsField/CreatibutorsFieldItem.js index beda92057..861af712d 100644 --- a/invenio_rdm_records/assets/semantic-ui/js/invenio_rdm_records/src/deposit/fields/CreatibutorsField/CreatibutorsFieldItem.js +++ b/invenio_rdm_records/assets/semantic-ui/js/invenio_rdm_records/src/deposit/fields/CreatibutorsField/CreatibutorsFieldItem.js @@ -1,5 +1,5 @@ // This file is part of Invenio-RDM-Records -// Copyright (C) 2020-2023 CERN. +// Copyright (C) 2020-2024 CERN. // Copyright (C) 2020-2022 Northwestern University. // Copyright (C) 2021 New York University. // diff --git a/invenio_rdm_records/contrib/imprint/__init__.py b/invenio_rdm_records/contrib/imprint/__init__.py index 64ec4fbf8..dd409ed94 100644 --- a/invenio_rdm_records/contrib/imprint/__init__.py +++ b/invenio_rdm_records/contrib/imprint/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN. +# Copyright (C) 2023-2024 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/contrib/thesis/__init__.py b/invenio_rdm_records/contrib/thesis/__init__.py index c4f435b8f..0fd146580 100644 --- a/invenio_rdm_records/contrib/thesis/__init__.py +++ b/invenio_rdm_records/contrib/thesis/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN. +# Copyright (C) 2023-2024 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/contrib/thesis/custom_fields.py b/invenio_rdm_records/contrib/thesis/custom_fields.py index 0fdb7950d..797920e94 100644 --- a/invenio_rdm_records/contrib/thesis/custom_fields.py +++ b/invenio_rdm_records/contrib/thesis/custom_fields.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN. +# Copyright (C) 2023-2024 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/records/dumpers/pids.py b/invenio_rdm_records/records/dumpers/pids.py index df3b0b4cd..72d6a3607 100644 --- a/invenio_rdm_records/records/dumpers/pids.py +++ b/invenio_rdm_records/records/dumpers/pids.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2021 CERN. +# Copyright (C) 2021-2024 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/resources/args.py b/invenio_rdm_records/resources/args.py index 8676a3f5a..90531a126 100644 --- a/invenio_rdm_records/resources/args.py +++ b/invenio_rdm_records/resources/args.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2021 CERN. +# Copyright (C) 2021-2024 CERN. # # Invenio-Drafts-Resources is free software; you can redistribute it and/or # modify it under the terms of the MIT License; see LICENSE file for more diff --git a/invenio_rdm_records/resources/serializers/cff/__init__.py b/invenio_rdm_records/resources/serializers/cff/__init__.py index a66cfa97c..8ec5d1bb7 100644 --- a/invenio_rdm_records/resources/serializers/cff/__init__.py +++ b/invenio_rdm_records/resources/serializers/cff/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN. +# Copyright (C) 2023-2024 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/resources/serializers/codemeta/__init__.py b/invenio_rdm_records/resources/serializers/codemeta/__init__.py index 7414c49ad..87763cdb7 100644 --- a/invenio_rdm_records/resources/serializers/codemeta/__init__.py +++ b/invenio_rdm_records/resources/serializers/codemeta/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN. +# Copyright (C) 2023-2024 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/resources/serializers/datacite/__init__.py b/invenio_rdm_records/resources/serializers/datacite/__init__.py index da4d83904..fe7fcdc0f 100644 --- a/invenio_rdm_records/resources/serializers/datacite/__init__.py +++ b/invenio_rdm_records/resources/serializers/datacite/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2021 CERN. +# Copyright (C) 2021-2024 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/resources/serializers/dcat/__init__.py b/invenio_rdm_records/resources/serializers/dcat/__init__.py index 5a40275ea..25cc8d02f 100644 --- a/invenio_rdm_records/resources/serializers/dcat/__init__.py +++ b/invenio_rdm_records/resources/serializers/dcat/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN +# Copyright (C) 2023-2024 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/resources/serializers/dcat/schema.py b/invenio_rdm_records/resources/serializers/dcat/schema.py index abece84ad..0d5060128 100644 --- a/invenio_rdm_records/resources/serializers/dcat/schema.py +++ b/invenio_rdm_records/resources/serializers/dcat/schema.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN. +# Copyright (C) 2023-2024 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/resources/serializers/geojson/__init__.py b/invenio_rdm_records/resources/serializers/geojson/__init__.py index 44d66f363..0a75908de 100644 --- a/invenio_rdm_records/resources/serializers/geojson/__init__.py +++ b/invenio_rdm_records/resources/serializers/geojson/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN +# Copyright (C) 2023-2024 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/resources/serializers/iiif/__init__.py b/invenio_rdm_records/resources/serializers/iiif/__init__.py index 546c6691a..784eb4ecc 100644 --- a/invenio_rdm_records/resources/serializers/iiif/__init__.py +++ b/invenio_rdm_records/resources/serializers/iiif/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2021 CERN. +# Copyright (C) 2021-2024 CERN. # Copyright (C) 2021 data-futures. # Copyright (C) 2022 Universität Hamburg. # diff --git a/invenio_rdm_records/resources/serializers/schemaorg/__init__.py b/invenio_rdm_records/resources/serializers/schemaorg/__init__.py index f33a07c60..ce6a9f040 100644 --- a/invenio_rdm_records/resources/serializers/schemaorg/__init__.py +++ b/invenio_rdm_records/resources/serializers/schemaorg/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN. +# Copyright (C) 2023-2024 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/resources/serializers/utils.py b/invenio_rdm_records/resources/serializers/utils.py index 8f7f1ec5c..7ac0b3468 100644 --- a/invenio_rdm_records/resources/serializers/utils.py +++ b/invenio_rdm_records/resources/serializers/utils.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2021 CERN. +# Copyright (C) 2021-2024 CERN. # Copyright (C) 2021 Northwestern University. # # Invenio-RDM-Records is free software; you can redistribute it and/or modify diff --git a/invenio_rdm_records/services/__init__.py b/invenio_rdm_records/services/__init__.py index a23bf400b..e2301d519 100644 --- a/invenio_rdm_records/services/__init__.py +++ b/invenio_rdm_records/services/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN. +# Copyright (C) 2023-2024 CERN. # Copyright (C) 2022 Universität Hamburg. # # Invenio-RDM-Records is free software; you can redistribute it and/or modify diff --git a/invenio_rdm_records/services/access/service.py b/invenio_rdm_records/services/access/service.py index 645476f4a..d8fd9e2ca 100644 --- a/invenio_rdm_records/services/access/service.py +++ b/invenio_rdm_records/services/access/service.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2020-2021 CERN. +# Copyright (C) 2020-2024 CERN. # Copyright (C) 2020-2021 Northwestern University. # Copyright (C) 2021 TU Wien. # Copyright (C) 2023 Graz University of Technology. diff --git a/invenio_rdm_records/services/community_inclusion/service.py b/invenio_rdm_records/services/community_inclusion/service.py index bbd915fa8..b74056dfc 100644 --- a/invenio_rdm_records/services/community_inclusion/service.py +++ b/invenio_rdm_records/services/community_inclusion/service.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN. +# Copyright (C) 2023-2024 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/community_records/service.py b/invenio_rdm_records/services/community_records/service.py index a2b1a3954..8ed6c4c85 100644 --- a/invenio_rdm_records/services/community_records/service.py +++ b/invenio_rdm_records/services/community_records/service.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN. +# Copyright (C) 2023-2024 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/components/review.py b/invenio_rdm_records/services/components/review.py index 2b0a836d6..c6b7eea24 100644 --- a/invenio_rdm_records/services/components/review.py +++ b/invenio_rdm_records/services/components/review.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2021 CERN. +# Copyright (C) 2021-2024 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/services/files/__init__.py b/invenio_rdm_records/services/files/__init__.py index 87c58654d..46a8178e0 100644 --- a/invenio_rdm_records/services/files/__init__.py +++ b/invenio_rdm_records/services/files/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN. +# Copyright (C) 2023-2024 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/files/service.py b/invenio_rdm_records/services/files/service.py index 4dda9ec6b..80ff6f113 100644 --- a/invenio_rdm_records/services/files/service.py +++ b/invenio_rdm_records/services/files/service.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN. +# Copyright (C) 2023-2024 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/generators.py b/invenio_rdm_records/services/generators.py index 400432060..270476b27 100644 --- a/invenio_rdm_records/services/generators.py +++ b/invenio_rdm_records/services/generators.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # Copyright (C) 2021 Graz University of Technology. -# Copyright (C) 2021 CERN. +# Copyright (C) 2021-2024 CERN. # Copyright (C) 2021 TU Wien. # # Invenio-RDM-Records is free software; you can redistribute it and/or modify diff --git a/invenio_rdm_records/services/github/metadata.py b/invenio_rdm_records/services/github/metadata.py index 9bb058193..8e650c1a7 100644 --- a/invenio_rdm_records/services/github/metadata.py +++ b/invenio_rdm_records/services/github/metadata.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN. +# Copyright (C) 2023-2024 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/pids/errors.py b/invenio_rdm_records/services/pids/errors.py index 72075e5fb..3ebb39c6f 100644 --- a/invenio_rdm_records/services/pids/errors.py +++ b/invenio_rdm_records/services/pids/errors.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2021 CERN. +# Copyright (C) 2021-2024 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/requests/service.py b/invenio_rdm_records/services/requests/service.py index 49bfb60f0..560fa053a 100644 --- a/invenio_rdm_records/services/requests/service.py +++ b/invenio_rdm_records/services/requests/service.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN. +# Copyright (C) 2023-2024 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/results.py b/invenio_rdm_records/services/results.py index 9eb062697..12b10287d 100644 --- a/invenio_rdm_records/services/results.py +++ b/invenio_rdm_records/services/results.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2022 CERN. +# Copyright (C) 2022-2024 CERN. # Copyright (C) 2023 TU Wien. # Copyright (C) 2024 Graz University of Technology. # diff --git a/invenio_rdm_records/services/schemas/__init__.py b/invenio_rdm_records/services/schemas/__init__.py index 4b7abe371..27eb1e81d 100644 --- a/invenio_rdm_records/services/schemas/__init__.py +++ b/invenio_rdm_records/services/schemas/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2020-2021 CERN. +# Copyright (C) 2020-2024 CERN. # Copyright (C) 2020-2021 Northwestern University. # Copyright (C) 2021-2023 TU Wien. # Copyright (C) 2021-2023 Graz University of Technology. diff --git a/invenio_rdm_records/services/schemas/metadata.py b/invenio_rdm_records/services/schemas/metadata.py index 0b81a95f7..5185b333b 100644 --- a/invenio_rdm_records/services/schemas/metadata.py +++ b/invenio_rdm_records/services/schemas/metadata.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2020-2022 CERN. +# Copyright (C) 2020-2024 CERN. # Copyright (C) 2020 Northwestern University. # Copyright (C) 2021-2023 Graz University of Technology. # diff --git a/invenio_rdm_records/services/schemas/parent/access.py b/invenio_rdm_records/services/schemas/parent/access.py index 2e18b70ff..2f765b8ff 100644 --- a/invenio_rdm_records/services/schemas/parent/access.py +++ b/invenio_rdm_records/services/schemas/parent/access.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2020-2021 CERN. +# Copyright (C) 2020-2024 CERN. # Copyright (C) 2020 Northwestern University. # Copyright (C) 2021 TU Wien. # diff --git a/invenio_rdm_records/tokens/errors.py b/invenio_rdm_records/tokens/errors.py index 37d05c29a..dd99e0341 100644 --- a/invenio_rdm_records/tokens/errors.py +++ b/invenio_rdm_records/tokens/errors.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN. +# Copyright (C) 2023-2024 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/tests/contrib/codemeta/conftest.py b/tests/contrib/codemeta/conftest.py index 36b38df13..5d06f75f2 100644 --- a/tests/contrib/codemeta/conftest.py +++ b/tests/contrib/codemeta/conftest.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN. +# Copyright (C) 2023-2024 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/tests/fixtures/test_cli.py b/tests/fixtures/test_cli.py index f5f646443..3de715e0f 100644 --- a/tests/fixtures/test_cli.py +++ b/tests/fixtures/test_cli.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2021-2022 CERN. +# Copyright (C) 2021-2024 CERN. # Copyright (C) 2021-2022 Northwestern University. # # Invenio-RDM-Records is free software; you can redistribute it and/or modify diff --git a/tests/records/dumpers/test_location_dumpers.py b/tests/records/dumpers/test_location_dumpers.py index 2cd7f7ee9..ee85d021e 100644 --- a/tests/records/dumpers/test_location_dumpers.py +++ b/tests/records/dumpers/test_location_dumpers.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2020 CERN. +# Copyright (C) 2020-2024 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/tests/records/systemfields/test_permission_flags.py b/tests/records/systemfields/test_permission_flags.py index d52da7fa7..98497f53d 100644 --- a/tests/records/systemfields/test_permission_flags.py +++ b/tests/records/systemfields/test_permission_flags.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN +# Copyright (C) 2023-2024 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/tests/requests/test_user_moderation_actions.py b/tests/requests/test_user_moderation_actions.py index bc2f50ea3..984b0d85b 100644 --- a/tests/requests/test_user_moderation_actions.py +++ b/tests/requests/test_user_moderation_actions.py @@ -1,6 +1,6 @@ # # -*- coding: utf-8 -*- # # -# # Copyright (C) 2023 CERN. +# # Copyright (C) 2023-2024 CERN. # # Copyright (C) 2023 TU Wien. # # # # Invenio-RDM is free software; you can redistribute it and/or modify diff --git a/tests/resources/test_draft_file_permissions.py b/tests/resources/test_draft_file_permissions.py index 6f3e6cbbe..8521c3d31 100644 --- a/tests/resources/test_draft_file_permissions.py +++ b/tests/resources/test_draft_file_permissions.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2021 CERN. +# Copyright (C) 2021-2024 CERN. # Copyright (C) 2021 Northwestern University. # # Invenio-RDM-Records is free software; you can redistribute it and/or modify diff --git a/tests/resources/test_media_files.py b/tests/resources/test_media_files.py index fef418515..eacc57017 100644 --- a/tests/resources/test_media_files.py +++ b/tests/resources/test_media_files.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2021 CERN. +# Copyright (C) 2021-2024 CERN. # Copyright (C) 2021 Northwestern University. # # Invenio-RDM-Records is free software; you can redistribute it and/or modify diff --git a/tests/resources/test_publish_errors.py b/tests/resources/test_publish_errors.py index d6c9144e2..52cf10be2 100644 --- a/tests/resources/test_publish_errors.py +++ b/tests/resources/test_publish_errors.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2020-2021 CERN. +# Copyright (C) 2020-2024 CERN. # Copyright (C) 2020-2021 Northwestern University. # # Invenio-RDM-Records is free software; you can redistribute it and/or modify diff --git a/tests/resources/test_record_file_permissions.py b/tests/resources/test_record_file_permissions.py index 52b437a2d..26855fe42 100644 --- a/tests/resources/test_record_file_permissions.py +++ b/tests/resources/test_record_file_permissions.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2021 CERN. +# Copyright (C) 2021-2024 CERN. # Copyright (C) 2021 Northwestern University. # Copyright (C) 2023 TU Wien. # diff --git a/tests/resources/test_resources_community_records.py b/tests/resources/test_resources_community_records.py index 5d435121c..7349145b5 100644 --- a/tests/resources/test_resources_community_records.py +++ b/tests/resources/test_resources_community_records.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN. +# Copyright (C) 2023-2024 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/tests/services/components/test_pids_component.py b/tests/services/components/test_pids_component.py index 8409a04e6..cbd3dc841 100644 --- a/tests/services/components/test_pids_component.py +++ b/tests/services/components/test_pids_component.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2021 CERN. +# Copyright (C) 2021-2024 CERN. # Copyright (C) 2023 Northwestern University. # # Invenio-RDM-Records is free software; you can redistribute it and/or modify diff --git a/tests/services/components/test_verified_component.py b/tests/services/components/test_verified_component.py index 89042536f..255c75301 100644 --- a/tests/services/components/test_verified_component.py +++ b/tests/services/components/test_verified_component.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN. +# Copyright (C) 2023-2024 CERN. # # Invenio-RDM 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/tests/services/test_sort.py b/tests/services/test_sort.py index 619e02737..c5c9a6939 100644 --- a/tests/services/test_sort.py +++ b/tests/services/test_sort.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2021 CERN. +# Copyright (C) 2021-2024 CERN. # Copyright (C) 2021 Northwestern University. # # Invenio-Records-Resources is free software; you can redistribute it and/or diff --git a/tests/tokens/test_feature_flag.py b/tests/tokens/test_feature_flag.py index 44004cf3c..30af5aba8 100644 --- a/tests/tokens/test_feature_flag.py +++ b/tests/tokens/test_feature_flag.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN. +# Copyright (C) 2023-2024 CERN. # # Invenio 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/tests/tokens/test_resource_access.py b/tests/tokens/test_resource_access.py index 16f0a41ba..b951a3299 100644 --- a/tests/tokens/test_resource_access.py +++ b/tests/tokens/test_resource_access.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2023 CERN. +# Copyright (C) 2023-2024 CERN. # # Invenio is free software; you can redistribute it and/or modify it # under the terms of the MIT License; see LICENSE file for more details.