-
Notifications
You must be signed in to change notification settings - Fork 634
/
versions.sh
executable file
·226 lines (211 loc) · 6.41 KB
/
versions.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
#!/usr/bin/env bash
set -Eeuo pipefail
shell="$(
wget -qO- 'https://downloads.mongodb.org/current.json' \
| jq -r '
[
.versions[]
# filter out download objects we are definitely not interested in (enterprise, rhel, etc)
| del(.downloads[] | select(
(
.edition == "base"
or .edition == "targeted"
)
and (
.target // ""
| (
test("^(" + ([
"debian[0-9]+", # debian10, debian11, etc
"ubuntu[0-9]{4}", # ubuntu2004, ubuntu1804, etc
"windows.*" # windows, windows_x86_64, windows_x86_64-2012plus, etc
] | join("|")) + ")$")
and (
# a few things old enough we do not want anything to do with them /o\
test("^(" + ([
"debian[89].*",
"ubuntu1[0-9].*"
] | join("|")) + ")$")
| not
)
)
)
| not))
| {
version: (
# convert "4.4.x" into "4.4" and "4.9.x-rcY" into "4.9-rc"
(.version | split(".")[0:2] | join("."))
+ if .release_candidate then "-rc" else "" end
),
meta: .,
}
# filter out EOL versions
# (for some reason "current.json" still lists all these, and as of 2021-05-13 there is not an included way to differentiate them)
| select(.version as $v | [
# https://www.mongodb.com/support-policy/lifecycles
"3.0", # February 2018
"3.2", # September 2018
"3.4", # January 2020
"3.6", # April 2021
"4.0", # April 2022
"4.2", # April 2023
null # ... so we can have a trailing comma above, making diffs nicer :trollface:
] | index($v) | not)
# filter out so-called "rapid releases": https://docs.mongodb.com/upcoming/reference/versioning/
# "Rapid Releases are designed for use with MongoDB Atlas, and are not generally supported for use in an on-premise capacity."
| select(
(.version | split("[.-]"; "")) as $splitVersion
| ($splitVersion[0] | tonumber) >= 5 and ($splitVersion[1] | tonumber) > 0
| not
)
]
# now convert all that data to a basic shell list + map so we can loop over/use it appropriately
| "allVersions=( " + (map(.version | @sh) | join(" ")) + " )\n"
+ "declare -A versionMeta=(\n" + (
map(
"\t[" + (.version | @sh) + "]="
+ (.meta | @json | @sh)
) | join("\n")
) + "\n)"
'
)"
eval "$shell"
versions=( "$@" )
if [ ${#versions[@]} -eq 0 ]; then
versions=( "${allVersions[@]}" )
json='{}'
else
versions=( "${versions[@]%/}" )
json="$(< versions.json)"
fi
for version in "${versions[@]}"; do
export version
if [ -z "${versionMeta[$version]:+foo}" ]; then
echo >&2 "warning: skipping/removing '$version' (does not appear to exist upstream)"
json="$(jq <<<"$json" -c '.[env.version] = null')"
continue
fi
_jq() { jq <<<"${versionMeta[$version]}" "$@"; }
#echo "$version: $fullVersion"
_jq -r 'env.version + ": " + .version'
# download the Windows MSI sha256 (so we can embed it)
msiUrl="$(_jq -r '.downloads[] | select(.target | test("^windows")) | .msi // ""')"
[ -n "$msiUrl" ]
[[ "$msiUrl" != *$'\n'* ]] # just in case they do something wild like support windows-arm64 :D
# 4.3 doesn't seem to have a sha256 file (403 forbidden), so this has to be optional :(
msiSha256="$(wget -qO- "$msiUrl.sha256" || :)"
msiSha256="${msiSha256%% *}"
export msiUrl msiSha256
# GPG keys
gpgKeyVersion="${version%-rc}"
minor="${gpgKeyVersion#*.}" # "4.3" -> "3"
if [ "$(( minor % 2 ))" = 1 ]; then
gpgKeyVersion="${version%.*}.$(( minor + 1 ))"
fi
gpgKeys="$(grep "^$gpgKeyVersion:" gpg-keys.txt | cut -d: -f2)"
if [[ "$version" == *-rc ]]; then
# the "testing" repository (used for RCs) has a dedicated GPG key
gpgKeys+=" $(grep -E '^dev:' gpg-keys.txt | cut -d: -f2 | xargs)"
fi
[ -n "$gpgKeys" ]
export gpgKeys
json="$(
{
jq <<<"$json" -c .
_jq '{ (env.version): (
with_entries(select(.key as $key | [
# interesting bits of raw upstream metadata
"changes",
"date",
"githash",
"notes",
"version",
null # ... trailing comma hack
] | index($key)))
+ {
gpg: (env.gpgKeys | split(" ") | sort),
targets: (
reduce (
.downloads[]
| .target |= sub("^windows.*$"; "windows")
) as $d ({}; $d.target as $t |
.[$t].arches |= (. + [
{
# mapping from "current.json" arch values to bashbrew arch values
"aarch64": "arm64v8",
"arm64": "arm64v8",
"s390x": "s390x",
"x86_64": "amd64",
}[$d.arch] // ("unknown:" + $d.arch)
] | sort)
| if $t | test("^(debian|ubuntu)") then
.[$t].image = (
{
"debian10": "debian:buster-slim",
"debian11": "debian:bullseye-slim",
"debian12": "debian:bookworm-slim",
"ubuntu1604": "ubuntu:xenial",
"ubuntu1804": "ubuntu:bionic",
"ubuntu2004": "ubuntu:focal",
"ubuntu2204": "ubuntu:jammy",
}[$t] // "unknown"
)
| .[$t].suite = (
.[$t].image
| gsub("^.*:|-slim$"; "")
)
else . end
)
),
}
| .targets.windows += {
msi: env.msiUrl,
sha256: env.msiSha256,
variants: [
"windowsservercore-ltsc2022",
"windowsservercore-1809",
"nanoserver-ltsc2022",
"nanoserver-1809"
],
features: ([
# https://github.com/mongodb/mongo/blob/r6.0.0/src/mongo/installer/msi/wxs/FeatureFragment.wxs#L9-L85 (no Client)
# https://github.com/mongodb/mongo/blob/r4.4.2/src/mongo/installer/msi/wxs/FeatureFragment.wxs#L9-L92 (no MonitoringTools,ImportExportTools)
"ServerNoService",
if [ "4.4", "5.0" ] | index(env.version | rtrimstr("-rc")) then
"Client"
else empty end,
"Router",
"MiscellaneousTools",
empty
] | sort),
}
# ignore anything that does not support amd64
| del(.targets[] | select(.arches | index("amd64") | not))
| .linux = (
# automatically choose an appropriate linux target, preferring (in order):
# - more supported architectures
# - debian over ubuntu
# - newer release over older
.targets
| to_entries
| [ .[] | select(.key | test("^(debian|ubuntu)")) ]
| sort_by([
(.value.arches | length),
(
.key
| if startswith("ubuntu") then
1
elif startswith("debian") then
2
else 0 end
),
(.key | sub("^(debian|ubuntu)"; "") | tonumber), # 10, 11, 2004, 1804, etc
.key
])
| reverse[0].key
)
| .
) }'
} | jq -cs add
)"
done
jq <<<"$json" -S . > versions.json