1
0
Эх сурвалжийг харах

Bump 1.20.0-rc2

Signed-off-by: Joffrey F <[email protected]>
Joffrey F 7 жил өмнө
parent
commit
8c4af54257

+ 9 - 1
CHANGELOG.md

@@ -38,10 +38,12 @@ Change log
 - Proxy configuration found in the `~/.docker/config.json` file now populates
   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
   running container
 
+- Added the `--include-deps` flag to `docker-compose pull`
+
 - `docker-compose run` now kills and removes the running container upon
   receiving `SIGHUP`
 
@@ -55,6 +57,9 @@ Change log
 - Fixed `.dockerignore` handling, notably with regard to absolute paths
   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
   to not be honored by Compose
 
@@ -70,6 +75,9 @@ Change log
 - A `seccomp:<filepath>` entry in the `security_opt` config now correctly
   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
 
 - Fixed a crash occurring on Windows when the user's home directory name

+ 1 - 1
compose/__init__.py

@@ -1,4 +1,4 @@
 from __future__ import absolute_import
 from __future__ import unicode_literals
 
-__version__ = '1.20.0-rc1'
+__version__ = '1.20.0-rc2'

+ 1 - 1
script/run/run.sh

@@ -15,7 +15,7 @@
 
 set -e
 
-VERSION="1.20.0-rc1"
+VERSION="1.20.0-rc2"
 IMAGE="docker/compose:$VERSION"