Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use jq's IN() instead of index() #269

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ releases="$(
# add a key for the appropriate "X.Y" or "X.Y-rc" value
| .folder = (.version | ([ split("[.-]"; "") | if .[0] == "7" then .[0] else .[0,1] end ] | join(".")) + if index("-") then "-rc" else "" end)
# filter to *just* versions that the upstream file claims are actually supported ("supported_branches")
| select((.folder | rtrimstr("-rc")) as $ver | $versions | index($ver) | not|not)
| select((.folder | rtrimstr("-rc")) | IN($versions[]) | not|not)
) as $rel ({}; .[$rel.version] = $rel)
| to_entries
# put all releases in sorted order
Expand Down Expand Up @@ -116,14 +116,14 @@ for version in "${versions[@]}"; do
[
# https://www.drupal.org/project/drupal/releases/10.2.0-rc1#php-deps
# Drupal now supports PHP 8.3 and recommends at least PHP 8.2.
if [ "7", "10.0" ] | index(env.version) then empty else
if env.version | IN("7", "10.0") then empty else
"8.3"
end,
# https://www.drupal.org/node/3413288 ("Drupal 11 will require PHP 8.3")
if [ "7", "10.0", "10.2", "10.3" ] | index(env.version) then
if env.version | IN("7", "10.0", "10.2", "10.3") then
"8.2"
else empty end,
if [ "7", "10.0" ] | index(env.version) then
if env.version | IN("7", "10.0") then
"8.1"
else empty end,
# https://www.drupal.org/docs/system-requirements/php-requirements
Expand Down
Loading