mirror of https://github.com/docker/compose.git
Bump 1.20.0-rc2
Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
parent
768e28ee30
commit
8c4af54257
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -38,10 +38,12 @@ Change log
|
||||||
- Proxy configuration found in the `~/.docker/config.json` file now populates
|
- Proxy configuration found in the `~/.docker/config.json` file now populates
|
||||||
environment and build args for containers created by Compose
|
environment and build args for containers created by Compose
|
||||||
|
|
||||||
- Added a `--use-aliases` flag to `docker-compose run`, indicating that
|
- Added the `--use-aliases` flag to `docker-compose run`, indicating that
|
||||||
network aliases declared in the service's config should be used for the
|
network aliases declared in the service's config should be used for the
|
||||||
running container
|
running container
|
||||||
|
|
||||||
|
- Added the `--include-deps` flag to `docker-compose pull`
|
||||||
|
|
||||||
- `docker-compose run` now kills and removes the running container upon
|
- `docker-compose run` now kills and removes the running container upon
|
||||||
receiving `SIGHUP`
|
receiving `SIGHUP`
|
||||||
|
|
||||||
|
@ -55,6 +57,9 @@ Change log
|
||||||
- Fixed `.dockerignore` handling, notably with regard to absolute paths
|
- Fixed `.dockerignore` handling, notably with regard to absolute paths
|
||||||
and last-line precedence rules
|
and last-line precedence rules
|
||||||
|
|
||||||
|
- Fixed an issue where Compose would make costly DNS lookups when connecting
|
||||||
|
to the Engine when using Docker For Mac
|
||||||
|
|
||||||
- Fixed a bug introduced in 1.19.0 which caused the default certificate path
|
- Fixed a bug introduced in 1.19.0 which caused the default certificate path
|
||||||
to not be honored by Compose
|
to not be honored by Compose
|
||||||
|
|
||||||
|
@ -70,6 +75,9 @@ Change log
|
||||||
- A `seccomp:<filepath>` entry in the `security_opt` config now correctly
|
- A `seccomp:<filepath>` entry in the `security_opt` config now correctly
|
||||||
sends the contents of the file to the engine
|
sends the contents of the file to the engine
|
||||||
|
|
||||||
|
- ANSI output for `up` and `down` operations should no longer affect the wrong
|
||||||
|
lines
|
||||||
|
|
||||||
- Improved support for non-unicode locales
|
- Improved support for non-unicode locales
|
||||||
|
|
||||||
- Fixed a crash occurring on Windows when the user's home directory name
|
- Fixed a crash occurring on Windows when the user's home directory name
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
from __future__ import absolute_import
|
from __future__ import absolute_import
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
__version__ = '1.20.0-rc1'
|
__version__ = '1.20.0-rc2'
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
VERSION="1.20.0-rc1"
|
VERSION="1.20.0-rc2"
|
||||||
IMAGE="docker/compose:$VERSION"
|
IMAGE="docker/compose:$VERSION"
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue