Skip to content

Commit

Permalink
Set MongoDB feature compatibility version to v8.
Browse files Browse the repository at this point in the history
Closes #10357.
  • Loading branch information
fniessink committed Nov 28, 2024
1 parent 2b3bcc5 commit dad63a2
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 @@ -32,7 +32,7 @@ def set_feature_compatibility_version(admin_database: Database) -> None:
See https://docs.mongodb.com/manual/reference/command/setFeatureCompatibilityVersion/
"""
admin_database.command("setFeatureCompatibilityVersion", "7.0", confirm=True)
admin_database.command("setFeatureCompatibilityVersion", "8.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 @@ -17,6 +17,7 @@ If your currently installed *Quality-time* version is not the latest version, pl
### Changed

- Change the 'unmerged branches' metric to 'inactive branches', also enabling it to count branches that have been merged but not deleted. Closes [#1253](https://github.com/ICTU/quality-time/issues/1253).
- Set the MongoDB feature compatibility version to v8. Closes [#10357](https://github.com/ICTU/quality-time/issues/10357).

## v5.19.0 - 2024-11-22

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 | Manual changes |
|------------|--------------|--------|--------|------------|-----------------|-----------------|----------------|
| v5.20.0 | [unreleased] | v8 | v7 | added | not possible | n/a | no |
| v5.20.0 | [unreleased] | v8 | **v8** | added | not possible | n/a | no |
| v5.19.0 | 2024-11-22 | v8 | v7 | | v5.14.0-v5.18.0 | v5.20.0 | no |
| v5.18.0 | 2024-11-06 | v8 | v7 | | v5.14.0-v5.17.1 | v5.19.0-v5.20.0 | no |
| v5.17.1 | 2024-10-25 | v8 | v7 | | v5.14.0-v5.17.0 | v5.18.0-v5.20.0 | no |
Expand Down

0 comments on commit dad63a2

Please sign in to comment.