diff --git a/7.0-rc/Dockerfile b/7.0-rc/Dockerfile index 0168c10f9..27eda9df2 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.13~rc0 -# 08/05/2024, https://github.com/mongodb/mongo/tree/1628203bd5754119e4c3f4324c8cf25eb3bc75aa +ENV MONGO_VERSION 7.0.13~rc1 +# 08/07/2024, https://github.com/mongodb/mongo/tree/7d06f0a750b0cfdaf4aab7ced47db746ed4ce271 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 92ab5a74b..69b2ebb26 100644 --- a/7.0-rc/windows/nanoserver-1809/Dockerfile +++ b/7.0-rc/windows/nanoserver-1809/Dockerfile @@ -14,7 +14,7 @@ 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.13-rc0-windowsservercore-1809 \ +COPY --from=mongo:7.0.13-rc1-windowsservercore-1809 \ C:\\Windows\\System32\\msvcp140.dll \ C:\\Windows\\System32\\msvcp140_1.dll \ C:\\Windows\\System32\\vcruntime140.dll \ @@ -22,10 +22,10 @@ COPY --from=mongo:7.0.13-rc0-windowsservercore-1809 \ C:\\Windows\\System32\\ # https://docs.mongodb.org/master/release-notes/7.0/ -ENV MONGO_VERSION 7.0.13-rc0 -# 08/05/2024, https://github.com/mongodb/mongo/tree/1628203bd5754119e4c3f4324c8cf25eb3bc75aa +ENV MONGO_VERSION 7.0.13-rc1 +# 08/07/2024, https://github.com/mongodb/mongo/tree/7d06f0a750b0cfdaf4aab7ced47db746ed4ce271 -COPY --from=mongo:7.0.13-rc0-windowsservercore-1809 C:\\mongodb C:\\mongodb +COPY --from=mongo:7.0.13-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 b6295cc32..55e8076e7 100644 --- a/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile +++ b/7.0-rc/windows/nanoserver-ltsc2022/Dockerfile @@ -14,7 +14,7 @@ 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.13-rc0-windowsservercore-ltsc2022 \ +COPY --from=mongo:7.0.13-rc1-windowsservercore-ltsc2022 \ C:\\Windows\\System32\\msvcp140.dll \ C:\\Windows\\System32\\msvcp140_1.dll \ C:\\Windows\\System32\\vcruntime140.dll \ @@ -22,10 +22,10 @@ COPY --from=mongo:7.0.13-rc0-windowsservercore-ltsc2022 \ C:\\Windows\\System32\\ # https://docs.mongodb.org/master/release-notes/7.0/ -ENV MONGO_VERSION 7.0.13-rc0 -# 08/05/2024, https://github.com/mongodb/mongo/tree/1628203bd5754119e4c3f4324c8cf25eb3bc75aa +ENV MONGO_VERSION 7.0.13-rc1 +# 08/07/2024, https://github.com/mongodb/mongo/tree/7d06f0a750b0cfdaf4aab7ced47db746ed4ce271 -COPY --from=mongo:7.0.13-rc0-windowsservercore-ltsc2022 C:\\mongodb C:\\mongodb +COPY --from=mongo:7.0.13-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 0377e51b8..90d57e2fd 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.13-rc0 -# 08/05/2024, https://github.com/mongodb/mongo/tree/1628203bd5754119e4c3f4324c8cf25eb3bc75aa +ENV MONGO_VERSION 7.0.13-rc1 +# 08/07/2024, https://github.com/mongodb/mongo/tree/7d06f0a750b0cfdaf4aab7ced47db746ed4ce271 -ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.13-rc0-signed.msi -ENV MONGO_DOWNLOAD_SHA256=86b878731b6d156dee7e6511a41db92b4cb57bff08fe011ba0e6c38264b91bf2 +ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.13-rc1-signed.msi +ENV MONGO_DOWNLOAD_SHA256=42fb4a542f2ca80542fe4f0cb21b6105d4e9613c85c733cf34b074169c3b99ba 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 941580d1a..5426dc956 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.13-rc0 -# 08/05/2024, https://github.com/mongodb/mongo/tree/1628203bd5754119e4c3f4324c8cf25eb3bc75aa +ENV MONGO_VERSION 7.0.13-rc1 +# 08/07/2024, https://github.com/mongodb/mongo/tree/7d06f0a750b0cfdaf4aab7ced47db746ed4ce271 -ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.13-rc0-signed.msi -ENV MONGO_DOWNLOAD_SHA256=86b878731b6d156dee7e6511a41db92b4cb57bff08fe011ba0e6c38264b91bf2 +ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.13-rc1-signed.msi +ENV MONGO_DOWNLOAD_SHA256=42fb4a542f2ca80542fe4f0cb21b6105d4e9613c85c733cf34b074169c3b99ba 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 72d274f81..5ea6c16f1 100644 --- a/versions.json +++ b/versions.json @@ -265,8 +265,8 @@ }, "7.0-rc": { "changes": "https://jira.mongodb.org/issues/?jql=project%20%3D%20SERVER%20AND%20fixVersion%20%3D%20%227.0.13%22%20ORDER%20BY%20status%20DESC%2C%20priority%20DESC", - "date": "08/05/2024", - "githash": "1628203bd5754119e4c3f4324c8cf25eb3bc75aa", + "date": "08/07/2024", + "githash": "7d06f0a750b0cfdaf4aab7ced47db746ed4ce271", "linux": "ubuntu2204", "notes": "https://docs.mongodb.org/master/release-notes/7.0/", "pgp": [ @@ -323,8 +323,8 @@ "Router", "ServerNoService" ], - "msi": "https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.13-rc0-signed.msi", - "sha256": "86b878731b6d156dee7e6511a41db92b4cb57bff08fe011ba0e6c38264b91bf2", + "msi": "https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.13-rc1-signed.msi", + "sha256": "42fb4a542f2ca80542fe4f0cb21b6105d4e9613c85c733cf34b074169c3b99ba", "variants": [ "windowsservercore-ltsc2022", "windowsservercore-1809", @@ -333,7 +333,7 @@ ] } }, - "version": "7.0.13-rc0" + "version": "7.0.13-rc1" }, "8.0": null, "8.0-rc": {