From 584303f66286a7dc46ccc0c9157db10c9971a85f Mon Sep 17 00:00:00 2001 From: Docker Library Bot Date: Fri, 5 Jan 2024 21:07:23 -0800 Subject: [PATCH] Update 7.0 to 7.0.5 --- 7.0/Dockerfile | 4 ++-- 7.0/windows/nanoserver-1809/Dockerfile | 8 ++++---- 7.0/windows/nanoserver-ltsc2022/Dockerfile | 8 ++++---- 7.0/windows/windowsservercore-1809/Dockerfile | 8 ++++---- .../windowsservercore-ltsc2022/Dockerfile | 8 ++++---- versions.json | 19 +++++++++++++------ 6 files changed, 31 insertions(+), 24 deletions(-) diff --git a/7.0/Dockerfile b/7.0/Dockerfile index eb14ca4aa4..f63aa48f61 100644 --- a/7.0/Dockerfile +++ b/7.0/Dockerfile @@ -87,8 +87,8 @@ ENV MONGO_MAJOR 7.0 RUN echo "deb [ signed-by=/etc/apt/keyrings/mongodb.gpg ] http://$MONGO_REPO/apt/ubuntu jammy/${MONGO_PACKAGE%-unstable}/$MONGO_MAJOR multiverse" | tee "/etc/apt/sources.list.d/${MONGO_PACKAGE%-unstable}.list" # https://docs.mongodb.org/master/release-notes/7.0/ -ENV MONGO_VERSION 7.0.4 -# 11/15/2023, https://github.com/mongodb/mongo/tree/38f3e37057a43d2e9f41a39142681a76062d582e +ENV MONGO_VERSION 7.0.5 +# 12/28/2023, https://github.com/mongodb/mongo/tree/7809d71e84e314b497f282ea8aa06d7ded3eb205 RUN set -x \ # installing "mongodb-enterprise" pulls in "tzdata" which prompts for input diff --git a/7.0/windows/nanoserver-1809/Dockerfile b/7.0/windows/nanoserver-1809/Dockerfile index a74d624d0e..490a172f15 100644 --- a/7.0/windows/nanoserver-1809/Dockerfile +++ b/7.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:7.0.4-windowsservercore-1809 \ +COPY --from=mongo:7.0.5-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/7.0/ -ENV MONGO_VERSION 7.0.4 -# 11/15/2023, https://github.com/mongodb/mongo/tree/38f3e37057a43d2e9f41a39142681a76062d582e +ENV MONGO_VERSION 7.0.5 +# 12/28/2023, https://github.com/mongodb/mongo/tree/7809d71e84e314b497f282ea8aa06d7ded3eb205 -COPY --from=mongo:7.0.4-windowsservercore-1809 C:\\mongodb C:\\mongodb +COPY --from=mongo:7.0.5-windowsservercore-1809 C:\\mongodb C:\\mongodb RUN mongod --version VOLUME C:\\data\\db C:\\data\\configdb diff --git a/7.0/windows/nanoserver-ltsc2022/Dockerfile b/7.0/windows/nanoserver-ltsc2022/Dockerfile index 158a88b77c..a6d2287352 100644 --- a/7.0/windows/nanoserver-ltsc2022/Dockerfile +++ b/7.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:7.0.4-windowsservercore-ltsc2022 \ +COPY --from=mongo:7.0.5-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/7.0/ -ENV MONGO_VERSION 7.0.4 -# 11/15/2023, https://github.com/mongodb/mongo/tree/38f3e37057a43d2e9f41a39142681a76062d582e +ENV MONGO_VERSION 7.0.5 +# 12/28/2023, https://github.com/mongodb/mongo/tree/7809d71e84e314b497f282ea8aa06d7ded3eb205 -COPY --from=mongo:7.0.4-windowsservercore-ltsc2022 C:\\mongodb C:\\mongodb +COPY --from=mongo:7.0.5-windowsservercore-ltsc2022 C:\\mongodb C:\\mongodb RUN mongod --version VOLUME C:\\data\\db C:\\data\\configdb diff --git a/7.0/windows/windowsservercore-1809/Dockerfile b/7.0/windows/windowsservercore-1809/Dockerfile index 5a007fb259..e91caec8c3 100644 --- a/7.0/windows/windowsservercore-1809/Dockerfile +++ b/7.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/7.0/ -ENV MONGO_VERSION 7.0.4 -# 11/15/2023, https://github.com/mongodb/mongo/tree/38f3e37057a43d2e9f41a39142681a76062d582e +ENV MONGO_VERSION 7.0.5 +# 12/28/2023, https://github.com/mongodb/mongo/tree/7809d71e84e314b497f282ea8aa06d7ded3eb205 -ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.4-signed.msi -ENV MONGO_DOWNLOAD_SHA256=86a9ce6ce62c9b6a3fee8739572419b59040fa25c7e07a4d1ce28894670e2a2b +ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.5-signed.msi +ENV MONGO_DOWNLOAD_SHA256=96441addde451b9d81dfaa10aca9678ada35d17d02a9a07481c6137d3df55e2b RUN Write-Host ('Downloading {0} ...' -f $env:MONGO_DOWNLOAD_URL); \ [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \ diff --git a/7.0/windows/windowsservercore-ltsc2022/Dockerfile b/7.0/windows/windowsservercore-ltsc2022/Dockerfile index 2958a11e7b..2295971e11 100644 --- a/7.0/windows/windowsservercore-ltsc2022/Dockerfile +++ b/7.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/7.0/ -ENV MONGO_VERSION 7.0.4 -# 11/15/2023, https://github.com/mongodb/mongo/tree/38f3e37057a43d2e9f41a39142681a76062d582e +ENV MONGO_VERSION 7.0.5 +# 12/28/2023, https://github.com/mongodb/mongo/tree/7809d71e84e314b497f282ea8aa06d7ded3eb205 -ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.4-signed.msi -ENV MONGO_DOWNLOAD_SHA256=86a9ce6ce62c9b6a3fee8739572419b59040fa25c7e07a4d1ce28894670e2a2b +ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.5-signed.msi +ENV MONGO_DOWNLOAD_SHA256=96441addde451b9d81dfaa10aca9678ada35d17d02a9a07481c6137d3df55e2b 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 916b22356b..ccb5cce313 100644 --- a/versions.json +++ b/versions.json @@ -266,9 +266,9 @@ }, "6.0-rc": null, "7.0": { - "changes": "https://jira.mongodb.org/issues/?jql=project%20%3D%20SERVER%20AND%20fixVersion%20%3D%20%227.0.4%22%20ORDER%20BY%20status%20DESC%2C%20priority%20DESC", - "date": "11/15/2023", - "githash": "38f3e37057a43d2e9f41a39142681a76062d582e", + "changes": "https://jira.mongodb.org/issues/?jql=project%20%3D%20SERVER%20AND%20fixVersion%20%3D%20%227.0.5%22%20ORDER%20BY%20status%20DESC%2C%20priority%20DESC", + "date": "12/28/2023", + "githash": "7809d71e84e314b497f282ea8aa06d7ded3eb205", "gpg": [ "E58830201F7DD82CD808AA84160D26BB1785BA38" ], @@ -282,6 +282,13 @@ "image": "debian:bullseye-slim", "suite": "bullseye" }, + "debian12": { + "arches": [ + "amd64" + ], + "image": "debian:bookworm-slim", + "suite": "bookworm" + }, "ubuntu2004": { "arches": [ "amd64", @@ -307,8 +314,8 @@ "Router", "ServerNoService" ], - "msi": "https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.4-signed.msi", - "sha256": "86a9ce6ce62c9b6a3fee8739572419b59040fa25c7e07a4d1ce28894670e2a2b", + "msi": "https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.5-signed.msi", + "sha256": "96441addde451b9d81dfaa10aca9678ada35d17d02a9a07481c6137d3df55e2b", "variants": [ "windowsservercore-ltsc2022", "windowsservercore-1809", @@ -317,7 +324,7 @@ ] } }, - "version": "7.0.4" + "version": "7.0.5" }, "7.0-rc": { "changes": "https://jira.mongodb.org/issues/?jql=project%20%3D%20SERVER%20AND%20fixVersion%20%3D%20%227.0.5%22%20ORDER%20BY%20status%20DESC%2C%20priority%20DESC",