Bump release

This commit is contained in:
cytopia 2020-11-14 10:34:31 +01:00
parent 657ba28afd
commit 6735daaaeb
No known key found for this signature in database
GPG Key ID: 6D56EDB8695128A2
4 changed files with 13 additions and 5 deletions

View File

@ -13,8 +13,8 @@ error_reporting(-1);
putenv('RES_OPTIONS=retrans:1 retry:1 timeout:1 attempts:1');
$DEVILBOX_VERSION = 'v1.8.1';
$DEVILBOX_DATE = '2020-11-12';
$DEVILBOX_VERSION = 'v1.8.2';
$DEVILBOX_DATE = '2020-11-14';
$DEVILBOX_API_PAGE = 'devilbox-api/status.json';
//

View File

@ -7,6 +7,15 @@ major versions.
## Unreleased
## Release v1.8.2 (2020-11-14)
#### Fixed
- [#643](https://github.com/cytopia/devilbox/issues/643) Wrong entrypoint in mysql images
- [#703](https://github.com/cytopia/devilbox/issues/703) Don't fail on uid/gid change
- [#749](https://github.com/cytopia/devilbox/issues/749) Fix to disable PHP modules without `*.so` ext
- Fixed `check-config.sh` to properly expand `~` character in path
## Release v1.8.1 (2020-11-12)
#### Fixed

View File

@ -5,7 +5,7 @@ This document will hold all information on how to update between major versions.
## Update from `v1.8.1` to `v1.8.2`
**PR:** TBD
**PR:** https://github.com/cytopia/devilbox/pull/750
This PR adds many new images, ensure to remove your current old state before running them:
```bash

View File

@ -504,8 +504,7 @@ fi
#--------------------------------------------------------------------------------------------------
print_head_1 "Checking projects"
HOST_PATH_HTTPD_DATADIR="$( grep -E '^HOST_PATH_HTTPD_DATADIR=' .env | awk -F'=' '{print $2}' )"
HOST_PATH_HTTPD_DATADIR="${HOST_PATH_HTTPD_DATADIR/#\~/${HOME}}"
HOST_PATH_HTTPD_DATADIR="$( get_path "$( grep -E '^HOST_PATH_HTTPD_DATADIR=' .env | awk -F'=' '{print $2}' )" )"
DATA_DIR_PERM_WRONG=0
while read -r project; do