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 10, 2024
1 parent c75f6a6 commit 7c81aab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
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 @@ -35,6 +35,7 @@ If your currently installed *Quality-time* version is not v5.13.0, please first

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
2 changes: 1 addition & 1 deletion docs/src/versioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The table below contains the *Quality-time* releases since the last minor of the

| Version | Date | Mongo | FC | Migrations | Downgrade | Upgrade |
|------------|--------------|--------|--------|------------|----------------|-----------------|
| v5.14.0 | (unreleased) | v7 | v6 | added | not possible | n/a |
| v5.14.0 | (unreleased) | v7 | **v7** | added | not possible | n/a |
| v5.13.0 | 2024-05-23 | v7 | v6 | added | not possible | v5.14.0 |
| v5.12.0 | 2024-05-17 | v7 | v6 | added | not possible | v5.13.0-v5.14.0 |
| v5.11.0 | 2024-04-22 | v7 | v6 | | v5.6.0-v5.10.0 | v5.12.0-v5.14.0 |
Expand Down

0 comments on commit 7c81aab

Please sign in to comment.