diff --git a/7.0-rc/Dockerfile b/7.0-rc/Dockerfile index 1823471292..4edff3a325 100644 --- a/7.0-rc/Dockerfile +++ b/7.0-rc/Dockerfile @@ -86,8 +86,8 @@ RUN echo "deb [ signed-by=/etc/apt/keyrings/mongodb.gpg ] http://$MONGO_REPO/apt RUN echo "deb [ signed-by=/etc/apt/keyrings/mongodb.gpg ] http://$MONGO_REPO/apt/ubuntu jammy/${MONGO_PACKAGE%-unstable}/6.0 multiverse" | tee "/etc/apt/sources.list.d/mongodb-previous.list" # https://docs.mongodb.org/master/release-notes/7.0/ -ENV MONGO_VERSION 7.0.0~rc7 -# 07/10/2023, https://github.com/mongodb/mongo/tree/02fbd323441c0c047c800f39c5489e0424ab94a8 +ENV MONGO_VERSION 7.0.0~rc8 +# 07/19/2023, https://github.com/mongodb/mongo/tree/27da922959c12df48ae2ecf8aad0f37f42f71451 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 c9e15169dc..edf17e77b6 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.0-rc7-windowsservercore-1809 \ +COPY --from=mongo:7.0.0-rc8-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.0-rc7 -# 07/10/2023, https://github.com/mongodb/mongo/tree/02fbd323441c0c047c800f39c5489e0424ab94a8 +ENV MONGO_VERSION 7.0.0-rc8 +# 07/19/2023, https://github.com/mongodb/mongo/tree/27da922959c12df48ae2ecf8aad0f37f42f71451 -COPY --from=mongo:7.0.0-rc7-windowsservercore-1809 C:\\mongodb C:\\mongodb +COPY --from=mongo:7.0.0-rc8-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 6ab4f82b0c..c4c296b00e 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.0-rc7-windowsservercore-ltsc2022 \ +COPY --from=mongo:7.0.0-rc8-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.0-rc7 -# 07/10/2023, https://github.com/mongodb/mongo/tree/02fbd323441c0c047c800f39c5489e0424ab94a8 +ENV MONGO_VERSION 7.0.0-rc8 +# 07/19/2023, https://github.com/mongodb/mongo/tree/27da922959c12df48ae2ecf8aad0f37f42f71451 -COPY --from=mongo:7.0.0-rc7-windowsservercore-ltsc2022 C:\\mongodb C:\\mongodb +COPY --from=mongo:7.0.0-rc8-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 696526c450..76317c7b58 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.0-rc7 -# 07/10/2023, https://github.com/mongodb/mongo/tree/02fbd323441c0c047c800f39c5489e0424ab94a8 +ENV MONGO_VERSION 7.0.0-rc8 +# 07/19/2023, https://github.com/mongodb/mongo/tree/27da922959c12df48ae2ecf8aad0f37f42f71451 -ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.0-rc7-signed.msi -ENV MONGO_DOWNLOAD_SHA256=ef84bba152b14e3e076186f0d951ee11d7cd9cfded5bd88c0f856e398b62c920 +ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.0-rc8-signed.msi +ENV MONGO_DOWNLOAD_SHA256=f2a6cd4ebb57391163f4173a5515dc81577094919c833794c686abe878e9e395 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 1c5393f96b..ecf9e19146 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.0-rc7 -# 07/10/2023, https://github.com/mongodb/mongo/tree/02fbd323441c0c047c800f39c5489e0424ab94a8 +ENV MONGO_VERSION 7.0.0-rc8 +# 07/19/2023, https://github.com/mongodb/mongo/tree/27da922959c12df48ae2ecf8aad0f37f42f71451 -ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.0-rc7-signed.msi -ENV MONGO_DOWNLOAD_SHA256=ef84bba152b14e3e076186f0d951ee11d7cd9cfded5bd88c0f856e398b62c920 +ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.0-rc8-signed.msi +ENV MONGO_DOWNLOAD_SHA256=f2a6cd4ebb57391163f4173a5515dc81577094919c833794c686abe878e9e395 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 dced2b1ee9..bc05fde175 100644 --- a/versions.json +++ b/versions.json @@ -165,9 +165,9 @@ }, "6.0-rc": null, "7.0-rc": { - "changes": "https://jira.mongodb.org/issues/?jql=project%20%3D%20SERVER%20AND%20fixVersion%20%3D%20%227.0.0-rc7%22%20ORDER%20BY%20status%20DESC%2C%20priority%20DESC", - "date": "07/10/2023", - "githash": "02fbd323441c0c047c800f39c5489e0424ab94a8", + "changes": "https://jira.mongodb.org/issues/?jql=project%20%3D%20SERVER%20AND%20fixVersion%20%3D%20%227.0.0-rc8%22%20ORDER%20BY%20status%20DESC%2C%20priority%20DESC", + "date": "07/19/2023", + "githash": "27da922959c12df48ae2ecf8aad0f37f42f71451", "gpg": [ "20691EEC35216C63CAF66CE1656408E390CFB1F5", "39BD841E4BE5FB195A65400E6A26B1AE64C3C388", @@ -210,8 +210,8 @@ "Router", "ServerNoService" ], - "msi": "https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.0-rc7-signed.msi", - "sha256": "ef84bba152b14e3e076186f0d951ee11d7cd9cfded5bd88c0f856e398b62c920", + "msi": "https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-7.0.0-rc8-signed.msi", + "sha256": "f2a6cd4ebb57391163f4173a5515dc81577094919c833794c686abe878e9e395", "variants": [ "windowsservercore-ltsc2022", "windowsservercore-1809", @@ -220,6 +220,6 @@ ] } }, - "version": "7.0.0-rc7" + "version": "7.0.0-rc8" } }