Compare commits

..

6 Commits

Author SHA1 Message Date
f374b1bfa1 New patch release
Some checks failed
continuous-integration/drone/push Build is failing
2021-05-10 10:39:57 +02:00
0e6b0e0879 Add change log entry
Some checks failed
continuous-integration/drone/push Build is failing
2021-05-10 10:38:02 +02:00
3a353f4062 Possible fix to invalid length "20"?
Some checks failed
continuous-integration/drone/push Build is failing
See https://git.autonomic.zone/coop-cloud/abra/pulls/160.
2021-05-10 10:36:23 +02:00
e0258d397b Merge pull request 'feat: switches to conventional confirmation prompt' (#162) from roxxers/abra:prompt into main
Some checks failed
continuous-integration/drone/push Build is failing
Reviewed-on: https://git.autonomic.zone/coop-cloud/abra/pulls/162
2021-05-10 10:26:09 +02:00
e8ac353453 feat: switches to conventional confirmation prompt
Some checks failed
continuous-integration/drone/pr Build is failing
2021-05-08 21:45:52 +01:00
3wc
552abdd980 Don't clobber global $DOMAIN variable
Some checks failed
continuous-integration/drone/push Build is failing
Closes #156
2021-05-06 00:43:16 +02:00
3 changed files with 11 additions and 8 deletions

View File

@ -9,9 +9,12 @@
# abra x.x.x (UNRELEASED)
# abra 0.7.4 (2021-05-10)
- Sort `apps.json` when publishing ([39a7fc0](https://git.autonomic.zone/coop-cloud/abra/commit/39a7fc04fb5df1a6d78b84f51838530ab3eb76db))
- Fix publishing of rating for new apps ([0e28af9](https://git.autonomic.zone/coop-cloud/abra/commit/0e28af9eb1af6c6da705b4614ddd173c60576629))
- Detect compose filenames in `n+1` release generation ([ffc569e](https://git.autonomic.zone/coop-cloud/abra/commit/ffc569e275df7ca784a4db1a3331e17975fd8c87))
- Fix secret generation when specifying length ([3a353f4](https://git.autonomic.zone/coop-cloud/abra/commit/3a353f4062baccde2c9f175b03afb2db6d462ae4))
# abra 0.7.3 (2021-04-28)

14
abra
View File

@ -3,7 +3,7 @@
GIT_URL="https://git.autonomic.zone/coop-cloud/"
ABRA_APPS_URL="https://apps.coopcloud.tech"
ABRA_DIR="${ABRA_DIR:-$HOME/.abra}"
ABRA_VERSION="0.7.3"
ABRA_VERSION="0.7.4"
ABRA_BACKUP_DIR="${ABRA_BACKUP_DIR:-$ABRA_DIR/backups}"
ABRA_VENDOR_DIR="$ABRA_DIR/vendor"
ABRA_APPS_JSON="${ABRA_DIR}/apps.json"
@ -808,17 +808,17 @@ ensure_stack_deployed() {
}
ensure_domain_deployed() {
DOMAIN=$1
local domain=$1
warning "Waiting for $DOMAIN to come up..."
warning "Waiting for $domain to come up..."
idx=1
until curl --output /dev/null --silent --head --fail "$DOMAIN"; do
debug "Polled $DOMAIN $idx time(s) already"
until curl --output /dev/null --silent --head --fail "$domain"; do
debug "Polled $domain $idx time(s) already"
sleep 3
idx=$(("$idx" + 1))
if [[ $idx -gt 10 ]]; then
error "$DOMAIN still isn't up, check status by running \"abra app ${STACK_NAME} ps\""
error "$domain still isn't up, check status by running \"abra app ${STACK_NAME} ps\""
fi
done
}
@ -899,7 +899,7 @@ prompt_confirm() {
return
fi
read -rp "Continue? (y/[n])? " choice
read -rp "Continue? [y/N]? " choice
case "$choice" in
y|Y ) return ;;

View File

@ -1,6 +1,6 @@
#!/bin/bash
ABRA_VERSION="0.7.3"
ABRA_VERSION="0.7.4"
GIT_URL="https://git.autonomic.zone/coop-cloud/abra"
ABRA_SRC="$GIT_URL/raw/tag/$ABRA_VERSION/abra"
ABRA_DIR="${ABRA_DIR:-$HOME/.abra/}"