Skip to content

Commit

Permalink
PSMDB-1326 Release notes 5.0.20-17 (#759)
Browse files Browse the repository at this point in the history
Updated install with Docker image for ARM

modified:   .github/workflows/main.yml
	modified:   docs/install/docker.md
	new file:   docs/release_notes/5.0.20-17.md
	modified:   docs/release_notes/index.md
	modified:   mkdocs-base.yml
	modified:   variables.yml
  • Loading branch information
nastena1606 authored Sep 7, 2023
1 parent bac228f commit a7f01cd
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Deploy docs
run: |
mike deploy 5.0 -b publish -p
mike retitle 5.0 "5.0.19-16" -b publish -p
mike retitle 5.0 "5.0.20-17" -b publish -p
# - name: Install Node.js 14.x
# uses: percona-platform/setup-node@v2
Expand Down
23 changes: 17 additions & 6 deletions docs/install/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,26 @@ For more information about using Docker, see the [Docker Docs](https://docs.dock

By default, Docker will pull the image from Docker Hub if it is not available locally.

To run the latest Percona Server for MongoDB 5.0 in a Docker container, use the following command:
To run the latest Percona Server for MongoDB 5.0 in a Docker container, run the following command as the root user or via `sudo`:

Run this command as root or by using the **sudo** command
=== "On x86_64 platforms"

```{.bash data-prompt="$"}
$ docker run -d --name psmdb --restart always \
percona/percona-server-mongodb:5.0
```
```{.bash data-prompt="$"}
$ docker run -d --name psmdb --restart always \
percona/percona-server-mongodb:5.0
```

=== "On ARM64 platforms"

The Docker image is available starting with version 5.0-20-17.

```{.bash data-prompt="$"}
$ docker run -d --name psmdb --restart always \
percona/percona-server-mongodb:<TAG>-arm64
```
Replace the `<TAG>` with the desired version (for example, 5.0-20-17-arm64)

The command does the following:


Expand Down
23 changes: 23 additions & 0 deletions docs/release_notes/5.0.20-17.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Percona Server for MongoDB 5.0.20-17 (2023-09-07)

[Installation](../install/index.md){.md-button}

Percona Server for MongoDB 5.0.20-17 is an enhanced, source-available, and highly-scalable database that is a
fully-compatible, drop-in replacement for [MongoDB 5.0.20 Community Edition](https://www.mongodb.com/docs/manual/release-notes/5.0/#5.0.20---august-14--2023).

It supports MongoDB 5.0.20 protocols and drivers.

## Release Highlights

* Percona Server for MongoDB 5.0.20-17 features a Docker image for ARM64 architectures.

The bug fixes, provided by MongoDB and included in Percona Server for MongoDB, are the following:

* [SERVER-74954](https://jira.mongodb.org/browse/SERVER-74954) - Fixed the issue with the incorrect output for the query where the `$or` operator rewrites the `$elemMatch` extra condition.
* [SERVER-78813](https://jira.mongodb.org/browse/SERVER-78813) - Fixed commit point propagation for exhaust oplog cursors.
* [SERVER-79136](https://jira.mongodb.org/browse/SERVER-79136) - Blocked the `$group` min/max rewrite in timestamp if there is a non-meta filter.
* [WT-10449](https://jira.mongodb.org/browse/WT-10449) - Improved the reconciliation time and slow eviction for pages with lots of updates by avoiding saving the update chain when there are no updates to be written to the history store
* [WT-11031](https://jira.mongodb.org/browse/WT-11031) - Fixed the Rollback to Stable behavior to skip tables with no time window information in the checkpoint.

Find the full list of changes in the [MongoDB 5.0.20 Community Edition release notes](https://www.mongodb.com/docs/manual/release-notes/5.0/#5.0.20---august-14--2023).

2 changes: 2 additions & 0 deletions docs/release_notes/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Percona Server for MongoDB 5.0 Release Notes

* [Percona Server for MongoDB 5.0.20-17 (2023-09-07)](5.0.20-17.md)

* [Percona Server for MongoDB 5.0.19-16 (2023-08-10)](5.0.19-16.md)

* [Percona Server for MongoDB 5.0.18-15 (2023-06-01)](5.0.18-15.md)
Expand Down
3 changes: 2 additions & 1 deletion mkdocs-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ plugins:
with-pdf: # https://github.com/orzih/mkdocs-with-pdf
output_path: '_pdf/PerconaServerforMongoDB-5.0.pdf'
cover_title: 'Server for MongoDB Documentation 5.0'
cover_subtitle: 5.0.19-16 (August 10, 2023)
cover_subtitle: 5.0.20-17 (September 7, 2023)
author: 'Percona Technical Documentation Team'
cover_logo: docs/_images/Percona_Logo_Color.png
debug_html: false
Expand Down Expand Up @@ -188,6 +188,7 @@ nav:
- install/uninstall.md
- Release notes:
- Releade notes index: release_notes/index.md
- release_notes/5.0.20-17.md
- release_notes/5.0.19-16.md
- release_notes/5.0.18-15.md
- release_notes/5.0.17-14.md
Expand Down
4 changes: 2 additions & 2 deletions variables.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PBM Variables set for HTML output
# See also mkdocs.yml plugins.with-pdf.cover_subtitle and output_path

release: '5.0.19-16'
release: '5.0.20-17'
version: '5.0'
release_date: 2023-08-10
release_date: 2023-09-07

0 comments on commit a7f01cd

Please sign in to comment.