Skip to content

Commit 2a4a7af

Browse files
committed
📦 release: v15.7.0
1 parent c707cad commit 2a4a7af

File tree

9 files changed

+30
-8
lines changed

9 files changed

+30
-8
lines changed

‎CHANGES.rst

+22
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,28 @@
1212
Changes
1313
=======
1414

15+
Version v15.7.0 (released 2024-11-04)
16+
17+
- resources: make record error handlers configurable
18+
* Possible via the new `RDM_RECORDS_ERROR_HANDLERS` config variable.
19+
- components: make content moderation configurable
20+
* Closes #1861.
21+
* Adds a new `RRM_CONTENT_MODERATION_HANDLERS` config variable to allow
22+
for configuring multiple handlers for the different write actions.
23+
- user_moderation: use search for faster actions
24+
* Use search results to determine the user's list of records.
25+
* Use a TaskOp and Unit of Work to avoid sending Celery tasks immediately.
26+
* Add a cleanup task that will perform a more thorough check using the
27+
DB to lookup the user's records.
28+
- deposit: add missing fields to record deserializer
29+
- UI/UX: add consistent suggestions display to affiliations
30+
- UI/UX: improve display of ROR information
31+
- collections: move records search into service
32+
- collections: added task to compute number of records for each collection
33+
- services: make file-service components configurable
34+
- access notification: provide correct draft preview link
35+
* Closes inveniosoftware/invenio-app-rdm#2827
36+
1537
Version v15.6.0 (released 2024-10-18)
1638

1739
- community: added myCommunitiesEnabled prop to CommunitySelectionSearch

‎invenio_rdm_records/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111

1212
from .ext import InvenioRDMRecords
1313

14-
__version__ = "15.6.0"
14+
__version__ = "15.7.0"
1515

1616
__all__ = ("__version__", "InvenioRDMRecords")

‎invenio_rdm_records/assets/semantic-ui/js/invenio_rdm_records/src/deposit/api/DepositRecordSerializer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This file is part of Invenio-RDM-Records
2-
// Copyright (C) 2020-2023 CERN.
2+
// Copyright (C) 2020-2024 CERN.
33
// Copyright (C) 2020-2022 Northwestern University.
44
//
55
// Invenio-RDM-Records is free software; you can redistribute it and/or modify it

‎invenio_rdm_records/assets/semantic-ui/js/invenio_rdm_records/src/deposit/api/DepositRecordSerializer.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This file is part of Invenio-RDM-Records
2-
// Copyright (C) 2020-2023 CERN.
2+
// Copyright (C) 2020-2024 CERN.
33
// Copyright (C) 2020-2022 Northwestern University.
44
//
55
// Invenio-RDM-Records is free software; you can redistribute it and/or modify it

‎invenio_rdm_records/assets/semantic-ui/js/invenio_rdm_records/src/deposit/fields/AffiliationsField/AffiliationsField.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This file is part of Invenio-RDM-Records
2-
// Copyright (C) 2020-2023 CERN.
2+
// Copyright (C) 2020-2024 CERN.
33
// Copyright (C) 2020-2022 Northwestern University.
44
// Copyright (C) 2021 Graz University of Technology.
55
//

‎invenio_rdm_records/assets/semantic-ui/js/invenio_rdm_records/src/deposit/fields/CreatibutorsField/CreatibutorsModal.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This file is part of Invenio-RDM-Records
2-
// Copyright (C) 2020-2023 CERN.
2+
// Copyright (C) 2020-2024 CERN.
33
// Copyright (C) 2020-2022 Northwestern University.
44
// Copyright (C) 2021 Graz University of Technology.
55
// Copyright (C) 2022 data-futures.org.

‎invenio_rdm_records/services/components/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_rdm_records/views.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Copyright (C) 2020-2022 CERN.
3+
# Copyright (C) 2020-2024 CERN.
44
# Copyright (C) 2021 TU Wien.
55
# Copyright (C) 2022 Universität Hamburg.
66
# Copyright (C) 2024 Graz University of Technology.

‎tests/requests/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Copyright (C) 2019-2021 CERN.
3+
# Copyright (C) 2019-2024 CERN.
44
# Copyright (C) 2019-2021 Northwestern University.
55
#
66
# Invenio-RDM-Records is free software; you can redistribute it and/or modify

0 commit comments

Comments
 (0)