mirror of
https://github.com/cytopia/devilbox.git
synced 2025-02-21 01:42:14 +00:00
Bump release
This commit is contained in:
parent
657ba28afd
commit
6735daaaeb
@ -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';
|
||||
|
||||
//
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user