diff --git a/7.0-rc/Dockerfile b/7.0-rc/Dockerfile index 95f436a132..74a6e2aa0e 100644 --- a/7.0-rc/Dockerfile +++ b/7.0-rc/Dockerfile @@ -89,8 +89,8 @@ RUN echo "deb [ signed-by=/etc/apt/keyrings/mongodb.asc ] http://$MONGO_REPO/apt RUN echo "deb [ signed-by=/etc/apt/keyrings/mongodb.asc ] http://$MONGO_REPO/apt/ubuntu jammy/${MONGO_PACKAGE%-unstable}/7.0 multiverse" | tee "/etc/apt/sources.list.d/mongodb-7.0.list" # https://docs.mongodb.org/master/release-notes/7.0/ -ENV MONGO_VERSION 7.0.9~rc0 -# 04/11/2024, https://github.com/mongodb/mongo/tree/d1e1ef429d689240089187289fd6a379a282c325 +ENV MONGO_VERSION 7.0.9~rc1 +# 04/19/2024, https://github.com/mongodb/mongo/tree/3ff3a3925c36ed277cf5eafca5495f2e3728dd67 RUN set -x \ # installing "mongodb-enterprise" pulls in "tzdata" which prompts for input diff --git a/7.0-rc/windows/nanoserver-1809/Dockerfile b/7.0-rc/windows/nanoserver-1809/Dockerfile index 4dd12d8e0a..42c0e2f07f 100644 --- a/7.0-rc/windows/nanoserver-1809/Dockerfile +++ b/7.0-rc/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.9-rc0-windowsservercore-1809 \ +COPY --from=mongo:7.0.9-rc1-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.9-rc0 -# 04/11/2024, https://github.com/mongodb/mongo/tree/d1e1ef429d689240089187289fd6a379a282c325 +ENV MONGO_VERSION 7.0.9-rc1 +# 04/19/2024, https://github.com/mongodb/mongo/tree/3ff3a3925c36ed277cf5eafca5495f2e3728dd67 -COPY --from=mongo:7.0.9-rc0-windowsservercore-1809 C:\\mongodb C:\\mongodb +COPY --from=mongo:7.0.9-rc1-windowsservercore-1809 C:\\mongodb C:\\mongodb RUN mongod --version VOLUME C:\\data\\db C:\\data\\configdb diff --git a/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile b/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile index 847c3872d2..434c6ac2d3 100644 --- a/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile +++ b/7.0-rc/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.9-rc0-windowsservercore-ltsc2022 \ +COPY --from=mongo:7.0.9-rc1-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.9-rc0 -# 04/11/2024, https://github.com/mongodb/mongo/tree/d1e1ef429d689240089187289fd6a379a282c325 +ENV MONGO_VERSION 7.0.9-rc1 +# 04/19/2024, https://github.com/mongodb/mongo/tree/3ff3a3925c36ed277cf5eafca5495f2e3728dd67 -COPY --from=mongo:7.0.9-rc0-windowsservercore-ltsc2022 C:\\mongodb C:\\mongodb +COPY --from=mongo:7.0.9-rc1-windowsservercore-ltsc2022 C:\\mongodb C:\\mongodb RUN mongod --version VOLUME C:\\data\\db C:\\data\\configdb diff --git a/7.0-rc/windows/windowsservercore-1809/Dockerfile b/7.0-rc/windows/windowsservercore-1809/Dockerfile index 82a6d51b29..c5717d43e5 100644 --- a/7.0-rc/windows/windowsservercore-1809/Dockerfile +++ b/7.0-rc/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.9-rc0 -# 04/11/2024, https://github.com/mongodb/mongo/tree/d1e1ef429d689240089187289fd6a379a282c325 +ENV MONGO_VERSION 7.0.9-rc1 +# 04/19/2024, https://github.com/mongodb/mongo/tree/3ff3a3925c36ed277cf5eafca5495f2e3728dd67 -ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.9-rc0-signed.msi -ENV MONGO_DOWNLOAD_SHA256=5c83d9884b0a55923aae028561719a246ef92329f5cb72a11166ee2d719a6faa +ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.9-rc1-signed.msi +ENV MONGO_DOWNLOAD_SHA256=22ac8a980f6c2ce1570bb0f8e9a5a813e2188e6904d9898b5007cb86b864849c RUN Write-Host ('Downloading {0} ...' -f $env:MONGO_DOWNLOAD_URL); \ [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \ diff --git a/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile b/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile index 7c35fd39bc..723849b397 100644 --- a/7.0-rc/windows/windowsservercore-ltsc2022/Dockerfile +++ b/7.0-rc/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.9-rc0 -# 04/11/2024, https://github.com/mongodb/mongo/tree/d1e1ef429d689240089187289fd6a379a282c325 +ENV MONGO_VERSION 7.0.9-rc1 +# 04/19/2024, https://github.com/mongodb/mongo/tree/3ff3a3925c36ed277cf5eafca5495f2e3728dd67 -ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.9-rc0-signed.msi -ENV MONGO_DOWNLOAD_SHA256=5c83d9884b0a55923aae028561719a246ef92329f5cb72a11166ee2d719a6faa +ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.9-rc1-signed.msi +ENV MONGO_DOWNLOAD_SHA256=22ac8a980f6c2ce1570bb0f8e9a5a813e2188e6904d9898b5007cb86b864849c 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 8ab06d8c0d..c59076c3f2 100644 --- a/versions.json +++ b/versions.json @@ -247,8 +247,8 @@ }, "7.0-rc": { "changes": "https://jira.mongodb.org/issues/?jql=project%20%3D%20SERVER%20AND%20fixVersion%20%3D%20%227.0.9%22%20ORDER%20BY%20status%20DESC%2C%20priority%20DESC", - "date": "04/11/2024", - "githash": "d1e1ef429d689240089187289fd6a379a282c325", + "date": "04/19/2024", + "githash": "3ff3a3925c36ed277cf5eafca5495f2e3728dd67", "linux": "ubuntu2204", "notes": "https://docs.mongodb.org/master/release-notes/7.0/", "pgp": [ @@ -305,8 +305,8 @@ "Router", "ServerNoService" ], - "msi": "https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.9-rc0-signed.msi", - "sha256": "5c83d9884b0a55923aae028561719a246ef92329f5cb72a11166ee2d719a6faa", + "msi": "https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.9-rc1-signed.msi", + "sha256": "22ac8a980f6c2ce1570bb0f8e9a5a813e2188e6904d9898b5007cb86b864849c", "variants": [ "windowsservercore-ltsc2022", "windowsservercore-1809", @@ -315,6 +315,6 @@ ] } }, - "version": "7.0.9-rc0" + "version": "7.0.9-rc1" } }