diff --git a/5.0/Dockerfile b/5.0/Dockerfile index af9e11649f..14d802520c 100644 --- a/5.0/Dockerfile +++ b/5.0/Dockerfile @@ -85,8 +85,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.14 -# 11/17/2022, https://github.com/mongodb/mongo/tree/1b3b0073a0b436a8a502b612f24fb2bd572772e5 +ENV MONGO_VERSION 5.0.15 +# 02/23/2023, https://github.com/mongodb/mongo/tree/935639beed3d0c19c2551c93854b831107c0b118 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 0e20704442..60dafd1c3a 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.14-windowsservercore-1809 \ +COPY --from=mongo:5.0.15-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.14 -# 11/17/2022, https://github.com/mongodb/mongo/tree/1b3b0073a0b436a8a502b612f24fb2bd572772e5 +ENV MONGO_VERSION 5.0.15 +# 02/23/2023, https://github.com/mongodb/mongo/tree/935639beed3d0c19c2551c93854b831107c0b118 -COPY --from=mongo:5.0.14-windowsservercore-1809 C:\\mongodb C:\\mongodb +COPY --from=mongo:5.0.15-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 950d986584..8367a0e8a8 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.14-windowsservercore-ltsc2022 \ +COPY --from=mongo:5.0.15-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.14 -# 11/17/2022, https://github.com/mongodb/mongo/tree/1b3b0073a0b436a8a502b612f24fb2bd572772e5 +ENV MONGO_VERSION 5.0.15 +# 02/23/2023, https://github.com/mongodb/mongo/tree/935639beed3d0c19c2551c93854b831107c0b118 -COPY --from=mongo:5.0.14-windowsservercore-ltsc2022 C:\\mongodb C:\\mongodb +COPY --from=mongo:5.0.15-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 af304d6c82..c2272998d6 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.14 -# 11/17/2022, https://github.com/mongodb/mongo/tree/1b3b0073a0b436a8a502b612f24fb2bd572772e5 +ENV MONGO_VERSION 5.0.15 +# 02/23/2023, https://github.com/mongodb/mongo/tree/935639beed3d0c19c2551c93854b831107c0b118 -ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-5.0.14-signed.msi -ENV MONGO_DOWNLOAD_SHA256=d67e360f14dd4f1516d322d85c9c9aed3ff0bcf5e08b50ea9e60f64ee4817720 +ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-5.0.15-signed.msi +ENV MONGO_DOWNLOAD_SHA256=882dce3858f3580011cd295f5c6502a4effd19178968abd7c20f8aabb50a7c15 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 1faaa3643d..fa282321a2 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.14 -# 11/17/2022, https://github.com/mongodb/mongo/tree/1b3b0073a0b436a8a502b612f24fb2bd572772e5 +ENV MONGO_VERSION 5.0.15 +# 02/23/2023, https://github.com/mongodb/mongo/tree/935639beed3d0c19c2551c93854b831107c0b118 -ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-5.0.14-signed.msi -ENV MONGO_DOWNLOAD_SHA256=d67e360f14dd4f1516d322d85c9c9aed3ff0bcf5e08b50ea9e60f64ee4817720 +ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-5.0.15-signed.msi +ENV MONGO_DOWNLOAD_SHA256=882dce3858f3580011cd295f5c6502a4effd19178968abd7c20f8aabb50a7c15 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 72fc5ab49c..ea70d034c8 100644 --- a/versions.json +++ b/versions.json @@ -120,9 +120,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.14%22%20ORDER%20BY%20status%20DESC%2C%20priority%20DESC", - "date": "11/17/2022", - "githash": "1b3b0073a0b436a8a502b612f24fb2bd572772e5", + "changes": "https://jira.mongodb.org/issues/?jql=project%20%3D%20SERVER%20AND%20fixVersion%20%3D%20%225.0.15%22%20ORDER%20BY%20status%20DESC%2C%20priority%20DESC", + "date": "02/23/2023", + "githash": "935639beed3d0c19c2551c93854b831107c0b118", "gpg": [ "F5679A222C647C87527C2F8CB00A0BD1E2C63C11" ], @@ -169,8 +169,8 @@ "Router", "ServerNoService" ], - "msi": "https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-5.0.14-signed.msi", - "sha256": "d67e360f14dd4f1516d322d85c9c9aed3ff0bcf5e08b50ea9e60f64ee4817720", + "msi": "https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-5.0.15-signed.msi", + "sha256": "882dce3858f3580011cd295f5c6502a4effd19178968abd7c20f8aabb50a7c15", "variants": [ "windowsservercore-ltsc2022", "windowsservercore-1809", @@ -179,7 +179,7 @@ ] } }, - "version": "5.0.14" + "version": "5.0.15" }, "6.0": { "changes": "https://jira.mongodb.org/issues/?jql=project%20%3D%20SERVER%20AND%20fixVersion%20%3D%20%226.0.4%22%20ORDER%20BY%20status%20DESC%2C%20priority%20DESC",