From 82e3350a09ca356ffb0bc9b86e0c571730d1ff5e Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Thu, 26 Oct 2023 15:01:26 -0700 Subject: [PATCH] Update 5.0 to 5.0.22 --- 5.0/Dockerfile | 4 ++-- 5.0/windows/nanoserver-1809/Dockerfile | 8 ++++---- 5.0/windows/nanoserver-ltsc2022/Dockerfile | 8 ++++---- 5.0/windows/windowsservercore-1809/Dockerfile | 8 ++++---- 5.0/windows/windowsservercore-ltsc2022/Dockerfile | 8 ++++---- versions.json | 12 ++++++------ 6 files changed, 24 insertions(+), 24 deletions(-) diff --git a/5.0/Dockerfile b/5.0/Dockerfile index 5ad526d3a3..e12aa3fa59 100644 --- a/5.0/Dockerfile +++ b/5.0/Dockerfile @@ -84,8 +84,8 @@ ENV MONGO_MAJOR 5.0 RUN echo "deb [ signed-by=/etc/apt/keyrings/mongodb.gpg ] http://$MONGO_REPO/apt/ubuntu focal/${MONGO_PACKAGE%-unstable}/$MONGO_MAJOR multiverse" | tee "/etc/apt/sources.list.d/${MONGO_PACKAGE%-unstable}.list" # https://docs.mongodb.org/master/release-notes/5.0/ -ENV MONGO_VERSION 5.0.21 -# 09/07/2023, https://github.com/mongodb/mongo/tree/4fad44a858d8ee2d642566fc8872ef410f6534e4 +ENV MONGO_VERSION 5.0.22 +# 10/25/2023, https://github.com/mongodb/mongo/tree/302c19437ae65b7d459360e18c5ac5086f494989 RUN set -x \ # installing "mongodb-enterprise" pulls in "tzdata" which prompts for input diff --git a/5.0/windows/nanoserver-1809/Dockerfile b/5.0/windows/nanoserver-1809/Dockerfile index bddd48309c..a5dd2a26ac 100644 --- a/5.0/windows/nanoserver-1809/Dockerfile +++ b/5.0/windows/nanoserver-1809/Dockerfile @@ -14,17 +14,17 @@ RUN setx /m PATH "C:\mongodb\bin;%PATH%" USER ContainerUser # doing this first to share cache across versions more aggressively -COPY --from=mongo:5.0.21-windowsservercore-1809 \ +COPY --from=mongo:5.0.22-windowsservercore-1809 \ C:\\Windows\\System32\\msvcp140.dll \ C:\\Windows\\System32\\vcruntime140.dll \ C:\\Windows\\System32\\vcruntime140_1.dll \ C:\\Windows\\System32\\ # https://docs.mongodb.org/master/release-notes/5.0/ -ENV MONGO_VERSION 5.0.21 -# 09/07/2023, https://github.com/mongodb/mongo/tree/4fad44a858d8ee2d642566fc8872ef410f6534e4 +ENV MONGO_VERSION 5.0.22 +# 10/25/2023, https://github.com/mongodb/mongo/tree/302c19437ae65b7d459360e18c5ac5086f494989 -COPY --from=mongo:5.0.21-windowsservercore-1809 C:\\mongodb C:\\mongodb +COPY --from=mongo:5.0.22-windowsservercore-1809 C:\\mongodb C:\\mongodb RUN mongo --version && mongod --version VOLUME C:\\data\\db C:\\data\\configdb diff --git a/5.0/windows/nanoserver-ltsc2022/Dockerfile b/5.0/windows/nanoserver-ltsc2022/Dockerfile index 643ca29f3b..7b568bc574 100644 --- a/5.0/windows/nanoserver-ltsc2022/Dockerfile +++ b/5.0/windows/nanoserver-ltsc2022/Dockerfile @@ -14,17 +14,17 @@ RUN setx /m PATH "C:\mongodb\bin;%PATH%" USER ContainerUser # doing this first to share cache across versions more aggressively -COPY --from=mongo:5.0.21-windowsservercore-ltsc2022 \ +COPY --from=mongo:5.0.22-windowsservercore-ltsc2022 \ C:\\Windows\\System32\\msvcp140.dll \ C:\\Windows\\System32\\vcruntime140.dll \ C:\\Windows\\System32\\vcruntime140_1.dll \ C:\\Windows\\System32\\ # https://docs.mongodb.org/master/release-notes/5.0/ -ENV MONGO_VERSION 5.0.21 -# 09/07/2023, https://github.com/mongodb/mongo/tree/4fad44a858d8ee2d642566fc8872ef410f6534e4 +ENV MONGO_VERSION 5.0.22 +# 10/25/2023, https://github.com/mongodb/mongo/tree/302c19437ae65b7d459360e18c5ac5086f494989 -COPY --from=mongo:5.0.21-windowsservercore-ltsc2022 C:\\mongodb C:\\mongodb +COPY --from=mongo:5.0.22-windowsservercore-ltsc2022 C:\\mongodb C:\\mongodb RUN mongo --version && mongod --version VOLUME C:\\data\\db C:\\data\\configdb diff --git a/5.0/windows/windowsservercore-1809/Dockerfile b/5.0/windows/windowsservercore-1809/Dockerfile index 80f1d7bb4e..03b93f36f5 100644 --- a/5.0/windows/windowsservercore-1809/Dockerfile +++ b/5.0/windows/windowsservercore-1809/Dockerfile @@ -9,11 +9,11 @@ FROM mcr.microsoft.com/windows/servercore:1809 SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop';"] # https://docs.mongodb.org/master/release-notes/5.0/ -ENV MONGO_VERSION 5.0.21 -# 09/07/2023, https://github.com/mongodb/mongo/tree/4fad44a858d8ee2d642566fc8872ef410f6534e4 +ENV MONGO_VERSION 5.0.22 +# 10/25/2023, https://github.com/mongodb/mongo/tree/302c19437ae65b7d459360e18c5ac5086f494989 -ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-5.0.21-signed.msi -ENV MONGO_DOWNLOAD_SHA256=3f8bff0f584ff8270b1164aaf130ad26578723a4bdcddaf001b361ae4e46e308 +ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-5.0.22-signed.msi +ENV MONGO_DOWNLOAD_SHA256=ce6c6b3365e23ffc2245dce2030523ef4440fd154b6965ac5d4e19bc86e86a4d RUN Write-Host ('Downloading {0} ...' -f $env:MONGO_DOWNLOAD_URL); \ [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \ diff --git a/5.0/windows/windowsservercore-ltsc2022/Dockerfile b/5.0/windows/windowsservercore-ltsc2022/Dockerfile index b34f0eead4..3055e7f2df 100644 --- a/5.0/windows/windowsservercore-ltsc2022/Dockerfile +++ b/5.0/windows/windowsservercore-ltsc2022/Dockerfile @@ -9,11 +9,11 @@ FROM mcr.microsoft.com/windows/servercore:ltsc2022 SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop';"] # https://docs.mongodb.org/master/release-notes/5.0/ -ENV MONGO_VERSION 5.0.21 -# 09/07/2023, https://github.com/mongodb/mongo/tree/4fad44a858d8ee2d642566fc8872ef410f6534e4 +ENV MONGO_VERSION 5.0.22 +# 10/25/2023, https://github.com/mongodb/mongo/tree/302c19437ae65b7d459360e18c5ac5086f494989 -ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-5.0.21-signed.msi -ENV MONGO_DOWNLOAD_SHA256=3f8bff0f584ff8270b1164aaf130ad26578723a4bdcddaf001b361ae4e46e308 +ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-5.0.22-signed.msi +ENV MONGO_DOWNLOAD_SHA256=ce6c6b3365e23ffc2245dce2030523ef4440fd154b6965ac5d4e19bc86e86a4d RUN Write-Host ('Downloading {0} ...' -f $env:MONGO_DOWNLOAD_URL); \ [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \ diff --git a/versions.json b/versions.json index cc16645311..6ed16f3bbf 100644 --- a/versions.json +++ b/versions.json @@ -48,9 +48,9 @@ }, "4.4-rc": null, "5.0": { - "changes": "https://jira.mongodb.org/issues/?jql=project%20%3D%20SERVER%20AND%20fixVersion%20%3D%20%225.0.21%22%20ORDER%20BY%20status%20DESC%2C%20priority%20DESC", - "date": "09/07/2023", - "githash": "4fad44a858d8ee2d642566fc8872ef410f6534e4", + "changes": "https://jira.mongodb.org/issues/?jql=project%20%3D%20SERVER%20AND%20fixVersion%20%3D%20%225.0.22%22%20ORDER%20BY%20status%20DESC%2C%20priority%20DESC", + "date": "10/25/2023", + "githash": "302c19437ae65b7d459360e18c5ac5086f494989", "gpg": [ "F5679A222C647C87527C2F8CB00A0BD1E2C63C11" ], @@ -89,8 +89,8 @@ "Router", "ServerNoService" ], - "msi": "https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-5.0.21-signed.msi", - "sha256": "3f8bff0f584ff8270b1164aaf130ad26578723a4bdcddaf001b361ae4e46e308", + "msi": "https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-5.0.22-signed.msi", + "sha256": "ce6c6b3365e23ffc2245dce2030523ef4440fd154b6965ac5d4e19bc86e86a4d", "variants": [ "windowsservercore-ltsc2022", "windowsservercore-1809", @@ -99,7 +99,7 @@ ] } }, - "version": "5.0.21" + "version": "5.0.22" }, "5.0-rc": { "changes": "https://jira.mongodb.org/issues/?jql=project%20%3D%20SERVER%20AND%20fixVersion%20%3D%20%225.0.22%22%20ORDER%20BY%20status%20DESC%2C%20priority%20DESC",