Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set MongoDB feature compatibility version to v8. #10403

Merged
merged 1 commit into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
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
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