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
12 changes: 12 additions & 0 deletions docs/releases/vNext/upgrade-vNext.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,18 @@ else:
click.secho(f"⚠ Warning: {final_pending} documents still pending", fg="yellow")
```

#### Update the indices for Members and Archived member requests

The optional feature to allow users to request membership to communities was introduced in this release. **Even if the feature is not enabled**, it does impact the indices used to store members and archived member requests (including invitations). The following commands **must** be run to update those indices no matter if the feature is enabled or not.

```console
# Update the mappings
invenio index update communitymembers-members-member-v1.0.0 --no-check
invenio index update communitymembers-archivedinvitations-archivedinvitation-v1.0.0 --no-check
```

Reindexing is not needed however, so those are the only steps necessary.

#### Upgrade option 1: In-place

This approach upgrades the dependencies in place. At the end of the process,
Expand Down