mirror of https://github.com/docker/compose.git
Bump 1.15.0-rc1
Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
parent
56a23bfcd2
commit
344a69331c
44
CHANGELOG.md
44
CHANGELOG.md
|
@ -1,6 +1,50 @@
|
||||||
Change log
|
Change log
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
1.15.0 (2017-07-18)
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
### New features
|
||||||
|
|
||||||
|
#### Compose file version 2.2
|
||||||
|
|
||||||
|
- Added support for the `network` parameter in build configurations.
|
||||||
|
|
||||||
|
#### Compose file version 2.1 and up
|
||||||
|
|
||||||
|
- The `pid` option in a service's definition now supports a `service:<name>`
|
||||||
|
value.
|
||||||
|
|
||||||
|
- Added support for the `storage_opt` parameter in in service definitions.
|
||||||
|
This option is not available for the v3 format
|
||||||
|
|
||||||
|
#### All formats
|
||||||
|
|
||||||
|
- Added `--quiet` flag to `docker-compose pull`, suppressing progress output
|
||||||
|
|
||||||
|
- Some improvements to CLI output
|
||||||
|
|
||||||
|
### Bugfixes
|
||||||
|
|
||||||
|
- Volumes specified through the `--volume` flag of `docker-compose run` now
|
||||||
|
complement volumes declared in the service's defintion instead of replacing
|
||||||
|
them
|
||||||
|
|
||||||
|
- Fixed a bug where using multiple Compose files would unset the scale value
|
||||||
|
defined inside the Compose file.
|
||||||
|
|
||||||
|
- Fixed an issue where the `credHelpers` entries in the `config.json` file
|
||||||
|
were not being honored by Compose
|
||||||
|
|
||||||
|
- Fixed a bug where using multiple Compose files with port declarations
|
||||||
|
would cause failures in Python 3 environments
|
||||||
|
|
||||||
|
- Fixed a bug where some proxy-related options present in the user's
|
||||||
|
environment would prevent Compose from running
|
||||||
|
|
||||||
|
- Fixed an issue where the output of `docker-compose config` would be invalid
|
||||||
|
if the original file used `Y` or `N` values
|
||||||
|
|
||||||
1.14.0 (2017-06-19)
|
1.14.0 (2017-06-19)
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
|
|
|
@ -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.15.0dev'
|
__version__ = '1.15.0-rc1'
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
VERSION="1.14.0"
|
VERSION="1.15.0-rc1"
|
||||||
IMAGE="docker/compose:$VERSION"
|
IMAGE="docker/compose:$VERSION"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -17,6 +17,7 @@ from compose.const import COMPOSEFILE_V2_0 as V2_0
|
||||||
from compose.const import COMPOSEFILE_V2_0 as V2_1
|
from compose.const import COMPOSEFILE_V2_0 as V2_1
|
||||||
from compose.const import COMPOSEFILE_V2_2 as V2_2
|
from compose.const import COMPOSEFILE_V2_2 as V2_2
|
||||||
from compose.const import COMPOSEFILE_V3_0 as V3_0
|
from compose.const import COMPOSEFILE_V3_0 as V3_0
|
||||||
|
from compose.const import COMPOSEFILE_V3_2 as V3_2
|
||||||
from compose.const import COMPOSEFILE_V3_3 as V3_3
|
from compose.const import COMPOSEFILE_V3_3 as V3_3
|
||||||
from compose.const import LABEL_PROJECT
|
from compose.const import LABEL_PROJECT
|
||||||
from compose.progress_stream import stream_output
|
from compose.progress_stream import stream_output
|
||||||
|
@ -52,7 +53,7 @@ def engine_max_version():
|
||||||
if version_lt(version, '1.13'):
|
if version_lt(version, '1.13'):
|
||||||
return V2_1
|
return V2_1
|
||||||
if version_lt(version, '17.06'):
|
if version_lt(version, '17.06'):
|
||||||
return V2_2
|
return V3_2
|
||||||
return V3_3
|
return V3_3
|
||||||
|
|
||||||
|
|
||||||
|
@ -72,7 +73,7 @@ def v2_1_only():
|
||||||
|
|
||||||
|
|
||||||
def v2_2_only():
|
def v2_2_only():
|
||||||
return min_version_skip(V2_0)
|
return min_version_skip(V2_2)
|
||||||
|
|
||||||
|
|
||||||
def v3_only():
|
def v3_only():
|
||||||
|
|
Loading…
Reference in New Issue