Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/releases/vNext/upgrade-vNext.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,22 @@ Official support for Python 3.9 will end on October 31, 2025.
See the [official Python version status page](https://devguide.python.org/versions/) for more information.
Future releases of InvenioRDM will require a more recent Python version.

### Fix thesis resource type

1. Update the resource type in `vocabularies/resource_types.yaml` by updating the label for `publication-dissertation` to "Thesis" and then run:
```python
invenio rdm-records add-to-fixture resourcetypes
```

2. Run the data migration script in [#data-migration](#data-migration) section.

3. Delete `publication-thesis` vocabulary:

```sh
from invenio_vocabularies.proxies import current_service as vocabulary_service
vocabulary_service.delete(system_identity, ('resourcetypes', 'publication-thesis'))
```

#### Record Deletion

To start using the new Record Deletion feature, one needs to go through the following steps during deployment:
Expand Down