mirror of https://github.com/docker/compose.git
Merge branch 'release'
Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
commit
91182ccb34
76
CHANGELOG.md
76
CHANGELOG.md
|
@ -1,6 +1,82 @@
|
||||||
Change log
|
Change log
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
1.23.0 (2018-10-30)
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
### Important note
|
||||||
|
|
||||||
|
The default naming scheme for containers created by Compose in this version
|
||||||
|
has changed from `<project>_<service>_<index>` to
|
||||||
|
`<project>_<service>_<index>_<slug>`, where `<slug>` is a randomly-generated
|
||||||
|
hexadecimal string. Please make sure to update scripts relying on the old
|
||||||
|
naming scheme accordingly before upgrading.
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
- Logs for containers restarting after a crash will now appear in the output
|
||||||
|
of the `up` and `logs` commands.
|
||||||
|
|
||||||
|
- Added `--hash` option to the `docker-compose config` command, allowing users
|
||||||
|
to print a hash string for each service's configuration to facilitate rolling
|
||||||
|
updates.
|
||||||
|
|
||||||
|
- Added `--parallel` flag to the `docker-compose build` command, allowing
|
||||||
|
Compose to build up to 5 images simultaneously.
|
||||||
|
|
||||||
|
- Output for the `pull` command now reports status / progress even when pulling
|
||||||
|
multiple images in parallel.
|
||||||
|
|
||||||
|
- For images with multiple names, Compose will now attempt to match the one
|
||||||
|
present in the service configuration in the output of the `images` command.
|
||||||
|
|
||||||
|
### Bugfixes
|
||||||
|
|
||||||
|
- Parallel `run` commands for the same service will no longer fail due to name
|
||||||
|
collisions.
|
||||||
|
|
||||||
|
- Fixed an issue where paths longer than 260 characters on Windows clients would
|
||||||
|
cause `docker-compose build` to fail.
|
||||||
|
|
||||||
|
- Fixed a bug where attempting to mount `/var/run/docker.sock` with
|
||||||
|
Docker Desktop for Windows would result in failure.
|
||||||
|
|
||||||
|
- The `--project-directory` option is now used by Compose to determine where to
|
||||||
|
look for the `.env` file.
|
||||||
|
|
||||||
|
- `docker-compose build` no longer fails when attempting to pull an image with
|
||||||
|
credentials provided by the gcloud credential helper.
|
||||||
|
|
||||||
|
- Fixed the `--exit-code-from` option in `docker-compose up` to always report
|
||||||
|
the actual exit code even when the watched container isn't the cause of the
|
||||||
|
exit.
|
||||||
|
|
||||||
|
- Fixed an issue that would prevent recreating a service in some cases where
|
||||||
|
a volume would be mapped to the same mountpoint as a volume declared inside
|
||||||
|
the image's Dockerfile.
|
||||||
|
|
||||||
|
- Fixed a bug that caused hash configuration with multiple networks to be
|
||||||
|
inconsistent, causing some services to be unnecessarily restarted.
|
||||||
|
|
||||||
|
- Fixed a bug that would cause failures with variable substitution for services
|
||||||
|
with a name containing one or more dot characters
|
||||||
|
|
||||||
|
- Fixed a pipe handling issue when using the containerized version of Compose.
|
||||||
|
|
||||||
|
- Fixed a bug causing `external: false` entries in the Compose file to be
|
||||||
|
printed as `external: true` in the output of `docker-compose config`
|
||||||
|
|
||||||
|
- Fixed a bug where issuing a `docker-compose pull` command on services
|
||||||
|
without a defined image key would cause Compose to crash
|
||||||
|
|
||||||
|
- Volumes and binds are now mounted in the order they're declared in the
|
||||||
|
service definition
|
||||||
|
|
||||||
|
### Miscellaneous
|
||||||
|
|
||||||
|
- The `zsh` completion script has been updated with new options, and no
|
||||||
|
longer suggests container names where service names are expected.
|
||||||
|
|
||||||
1.22.0 (2018-07-17)
|
1.22.0 (2018-07-17)
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
|
|
|
@ -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.23.0dev'
|
__version__ = '1.23.0'
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
VERSION="1.22.0"
|
VERSION="1.23.0"
|
||||||
IMAGE="docker/compose:$VERSION"
|
IMAGE="docker/compose:$VERSION"
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue