Skip to content

Commit

Permalink
Set the MongoDB feature compatibility version to v7.
Browse files Browse the repository at this point in the history
Closes #8896.
  • Loading branch information
fniessink committed Jun 8, 2024
1 parent 1d4ff49 commit 500a1d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion components/api_server/src/initialization/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def set_feature_compatibility_version(admin_database: Database) -> None:
See https://docs.mongodb.com/manual/reference/command/setFeatureCompatibilityVersion/
"""
admin_database.command("setFeatureCompatibilityVersion", "6.0", confirm=True)
admin_database.command("setFeatureCompatibilityVersion", "7.0", confirm=True)


def create_indexes(database: Database) -> None:
Expand Down
1 change: 1 addition & 0 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ If your currently installed *Quality-time* version is v4.10.0 or older, please r

In addition:
- A new parameter 'clean code attributes category' is added.
- Set the MongoDB feature compatibility version to v7. Closes [#8896](https://github.com/ICTU/quality-time/issues/8896).

## v5.13.0 - 2024-05-23

Expand Down

0 comments on commit 500a1d7

Please sign in to comment.