Skip to content

Commit

Permalink
release v3.7.2 generated by @lando/prepare-release-action
Browse files Browse the repository at this point in the history
  • Loading branch information
rtfm-47 committed Dec 11, 2024
1 parent ddf0837 commit f0be3aa
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})

## v3.7.2 - [December 11, 2024](https://github.com/lando/setup-lando/releases/tag/v3.7.2)

* Fixed bug unintentionally disabling `lando setup` on `POSIX` for Lando `<3.24`

## v3.7.1 - [December 7, 2024](https://github.com/lando/setup-lando/releases/tag/v3.7.1)
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46569,7 +46569,7 @@ var __webpack_exports__ = {};
"use strict";


const SCRIPT_VERSION = 'v3.7.1';
const SCRIPT_VERSION = 'v3.7.2';

const core = __nccwpck_require__(7484);
const exec = __nccwpck_require__(5236);
Expand Down
2 changes: 1 addition & 1 deletion dist/setup-lando.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ function Get-SystemArchitecture {
}

# Config of sorts
$SCRIPT_VERSION = "v3.7.1"
$SCRIPT_VERSION = "v3.7.2"

$LANDO_DEFAULT_MV = "3"
$LANDO_BINDIR = "$env:USERPROFILE\.lando\bin"
Expand Down
10 changes: 6 additions & 4 deletions dist/setup-lando.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SCRIPT_VERSION="v3.7.1"
SCRIPT_VERSION="v3.7.2"
#!/bin/bash
set -u
# Lando POSIX setup script.
Expand Down Expand Up @@ -583,16 +583,18 @@ else
debug "resolved v${LMV} version '${ORIGINAL_VERSION}' to ${VERSION} (${URL})"
fi

# fatty slim
SLIM_SETUPY=$(version_compare "3.23.0" "$SVERSION" && echo '1' || echo '0')

# autoslim all v3 urls by default
# @TODO: restrict this to 3 < 3.24.0 at some point?
if [[ $URL != file://* ]] && [[ -z "${VERSION_DEV-}" ]] && [[ $FAT != '1' ]] && version_compare "3.23" "$SVERSION"; then
if [[ $URL != file://* ]] && [[ -z "${VERSION_DEV-}" ]] && [[ $FAT != '1' ]] && [[ $SLIM_SETUPY == '1' ]]; then
URL="${URL}-slim"
HRV="$VERSION-slim"
debug "autoslimin url for lando 3 to $URL"
fi

# force setup to 0 if lando 4
if [[ $SETUP == '1' ]] && version_compare "$SVERSION" "3.23"; then
if [[ $SETUP == '1' ]] && [[ $SLIM_SETUPY == '0' ]]; then
SETUP=0
debug "disabled autosetup --setup=${SETUP}, not needed in <3.24"
fi
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@lando/setup-lando",
"description": "GitHub Action to setup Lando on GitHub Actions.",
"version": "3.7.1",
"version": "3.7.2",
"author": "Mike Pirog @pirog",
"main": "setup-lando.js",
"license": "GPL-3.0",
Expand Down

0 comments on commit f0be3aa

Please sign in to comment.