diff --git a/CHANGES.rst b/CHANGES.rst index e87aabb1..ae9ea9ef 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,11 @@ Changes ======= +Version 5.7.0 (released 2024-05-06) + +- files-schema: hide `uri` from serialization +- records: added access field to files + Version 5.6.0 (released 2024-04-23) - services: add support for nested links diff --git a/invenio_records_resources/__init__.py b/invenio_records_resources/__init__.py index dd4f1a91..5f669a51 100644 --- a/invenio_records_resources/__init__.py +++ b/invenio_records_resources/__init__.py @@ -10,6 +10,6 @@ from .ext import InvenioRecordsResources -__version__ = "5.6.0" +__version__ = "5.7.0" __all__ = ("__version__", "InvenioRecordsResources") diff --git a/invenio_records_resources/records/api.py b/invenio_records_resources/records/api.py index e43709c1..db448a0d 100644 --- a/invenio_records_resources/records/api.py +++ b/invenio_records_resources/records/api.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2020-2023 CERN. +# Copyright (C) 2020-2024 CERN. # Copyright (C) 2020 Northwestern University. # # Invenio-Records-Resources is free software; you can redistribute it and/or diff --git a/invenio_records_resources/records/dumpers.py b/invenio_records_resources/records/dumpers.py index 394d0943..d3b07812 100644 --- a/invenio_records_resources/records/dumpers.py +++ b/invenio_records_resources/records/dumpers.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2022-2023 CERN. +# Copyright (C) 2022-2024 CERN. # # Invenio-Records-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_records_resources/records/systemfields/files/manager.py b/invenio_records_resources/records/systemfields/files/manager.py index 7538525b..a2893e01 100644 --- a/invenio_records_resources/records/systemfields/files/manager.py +++ b/invenio_records_resources/records/systemfields/files/manager.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2020-2023 CERN. +# Copyright (C) 2020-2024 CERN. # Copyright (C) 2020-2021 Northwestern University. # # Invenio-Records-Resources is free software; you can redistribute it and/or diff --git a/invenio_records_resources/services/files/components/metadata.py b/invenio_records_resources/services/files/components/metadata.py index 88e14bc2..5ef70659 100644 --- a/invenio_records_resources/services/files/components/metadata.py +++ b/invenio_records_resources/services/files/components/metadata.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2021-2022 CERN. +# Copyright (C) 2021-2024 CERN. # # Invenio-Records-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_records_resources/services/files/schema.py b/invenio_records_resources/services/files/schema.py index 07d151ea..8d1aae32 100644 --- a/invenio_records_resources/services/files/schema.py +++ b/invenio_records_resources/services/files/schema.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2020-2022 CERN. +# Copyright (C) 2020-2024 CERN. # Copyright (C) 2020 European Union. # # Invenio-Records-Resources is free software; you can redistribute it and/or diff --git a/invenio_records_resources/services/files/tasks.py b/invenio_records_resources/services/files/tasks.py index 01a8999f..bacccfd0 100644 --- a/invenio_records_resources/services/files/tasks.py +++ b/invenio_records_resources/services/files/tasks.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2022 CERN. +# Copyright (C) 2022-2024 CERN. # # Invenio-Records-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_records_resources/services/files/transfer.py b/invenio_records_resources/services/files/transfer.py index 0021fb68..18cc3def 100644 --- a/invenio_records_resources/services/files/transfer.py +++ b/invenio_records_resources/services/files/transfer.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2022 CERN. +# Copyright (C) 2022-2024 CERN. # # Invenio-Records-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/tests/records/test_systemfield_files.py b/tests/records/test_systemfield_files.py index be41e188..dd63889f 100644 --- a/tests/records/test_systemfield_files.py +++ b/tests/records/test_systemfield_files.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2020-2023 CERN. +# Copyright (C) 2020-2024 CERN. # Copyright (C) 2020 Northwestern University. # # Invenio-Records-Resources is free software; you can redistribute it and/or diff --git a/tests/resources/test_files_resource.py b/tests/resources/test_files_resource.py index 742f3f6d..b6831a2d 100644 --- a/tests/resources/test_files_resource.py +++ b/tests/resources/test_files_resource.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2020-2021 CERN. +# Copyright (C) 2020-2024 CERN. # Copyright (C) 2021 Northwestern University. # Copyright (C) 2021 European Union. # diff --git a/tests/services/files/test_file_service.py b/tests/services/files/test_file_service.py index 7615cccd..b790bdd2 100644 --- a/tests/services/files/test_file_service.py +++ b/tests/services/files/test_file_service.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2020-2022 CERN. +# Copyright (C) 2020-2024 CERN. # # Invenio-Records-Resources is free software; you can redistribute it and/or # modify it under the terms of the MIT License; see LICENSE file for more