Skip to content

Commit b7f884d

Browse files
committed
Update to 4.4.0 (GA)
1 parent 23d4bfd commit b7f884d

File tree

5 files changed

+11
-12
lines changed

5 files changed

+11
-12
lines changed

4.4-rc/Dockerfile renamed to 4.4/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ RUN set -ex; \
5959

6060
RUN mkdir /docker-entrypoint-initdb.d
6161

62-
ENV GPG_KEYS 99DC630F00A2F97F27C6A02A253612A09571B484 20691EEC35216C63CAF66CE1656408E390CFB1F5 E162F504A20CDF15827F718D4B7C549A058F8B6B 9DA31620334BD75D9DCB49F368818C72E52529D4 2930ADAE8CAF5059EE73BB4B58712A2291FA4AD5
62+
ENV GPG_KEYS 20691EEC35216C63CAF66CE1656408E390CFB1F5
6363
RUN set -ex; \
6464
export GNUPGHOME="$(mktemp -d)"; \
6565
for key in $GPG_KEYS; do \
@@ -78,8 +78,8 @@ ARG MONGO_PACKAGE=mongodb-org
7878
ARG MONGO_REPO=repo.mongodb.org
7979
ENV MONGO_PACKAGE=${MONGO_PACKAGE} MONGO_REPO=${MONGO_REPO}
8080

81-
ENV MONGO_MAJOR testing
82-
ENV MONGO_VERSION 4.4.0~rc14
81+
ENV MONGO_MAJOR 4.4
82+
ENV MONGO_VERSION 4.4.0
8383
# bashbrew-architectures:amd64 arm64v8 s390x
8484
RUN echo "deb http://$MONGO_REPO/apt/ubuntu bionic/${MONGO_PACKAGE%-unstable}/$MONGO_MAJOR multiverse" | tee "/etc/apt/sources.list.d/${MONGO_PACKAGE%-unstable}.list"
8585

4.4-rc/windows/windowsservercore-1809/Dockerfile renamed to 4.4/windows/windowsservercore-1809/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ FROM mcr.microsoft.com/windows/servercore:1809
22

33
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop';"]
44

5-
ENV MONGO_VERSION 4.4.0-rc14
6-
ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-4.4.0-rc14-signed.msi
7-
ENV MONGO_DOWNLOAD_SHA256=74febaa98cd4dc7095aa34c9451235e50f3fa5d662230b465800eba79b865a9d
5+
ENV MONGO_VERSION 4.4.0
6+
ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-4.4.0-signed.msi
7+
ENV MONGO_DOWNLOAD_SHA256=ab326721c480dfafe0d0c3c1489c25e3a411b86e830dd91151b5ae24b8c9d508
88

99
RUN Write-Host ('Downloading {0} ...' -f $env:MONGO_DOWNLOAD_URL); \
1010
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \

4.4-rc/windows/windowsservercore-ltsc2016/Dockerfile renamed to 4.4/windows/windowsservercore-ltsc2016/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ FROM mcr.microsoft.com/windows/servercore:ltsc2016
22

33
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop';"]
44

5-
ENV MONGO_VERSION 4.4.0-rc14
6-
ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-4.4.0-rc14-signed.msi
7-
ENV MONGO_DOWNLOAD_SHA256=74febaa98cd4dc7095aa34c9451235e50f3fa5d662230b465800eba79b865a9d
5+
ENV MONGO_VERSION 4.4.0
6+
ENV MONGO_DOWNLOAD_URL https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-4.4.0-signed.msi
7+
ENV MONGO_DOWNLOAD_SHA256=ab326721c480dfafe0d0c3c1489c25e3a411b86e830dd91151b5ae24b8c9d508
88

99
RUN Write-Host ('Downloading {0} ...' -f $env:MONGO_DOWNLOAD_URL); \
1010
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \

generate-stackbrew-library.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ set -eu
33

44
declare -A aliases=(
55
[3.6]='3'
6-
[4.2]='4 latest'
7-
[4.3]='unstable'
8-
[4.3-rc]='rc'
6+
[4.4]='4 latest'
7+
[4.5]='unstable'
98
)
109

1110
self="$(basename "$BASH_SOURCE")"

0 commit comments

Comments
 (0)