mirror of
https://github.com/docker/compose.git
synced 2025-07-22 21:24:38 +02:00
"Bump 1.21.1"
Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
parent
b1a1c6a234
commit
192a665569
26
CHANGELOG.md
26
CHANGELOG.md
@ -1,6 +1,32 @@
|
|||||||
Change log
|
Change log
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
1.21.1 (2018-04-27)
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
### Bugfixes
|
||||||
|
|
||||||
|
- In 1.21.0, we introduced a change to how project names are sanitized for
|
||||||
|
internal use in resource names. This caused issues when manipulating an
|
||||||
|
existing, deployed application whose name had changed as a result.
|
||||||
|
This release properly detects resources using "legacy" naming conventions.
|
||||||
|
|
||||||
|
- Fixed an issue where specifying an in-context Dockerfile using an absolute
|
||||||
|
path would fail despite being valid.
|
||||||
|
|
||||||
|
- Fixed a bug where IPAM option changes were incorrectly detected, preventing
|
||||||
|
redeployments.
|
||||||
|
|
||||||
|
- Validation of v2 files now properly checks the structure of IPAM configs.
|
||||||
|
|
||||||
|
- Improved support for credentials stores on Windows to include binaries using
|
||||||
|
extensions other than `.exe`. The list of valid extensions is determined by
|
||||||
|
the contents of the `PATHEXT` environment variable.
|
||||||
|
|
||||||
|
- Fixed a bug where Compose would generate invalid binds containing duplicate
|
||||||
|
elements with some v3.2 files, triggering errors at the Engine level during
|
||||||
|
deployment.
|
||||||
|
|
||||||
1.21.0 (2018-04-10)
|
1.21.0 (2018-04-10)
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
|
@ -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.21.0'
|
__version__ = '1.21.1'
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
VERSION="1.21.0"
|
VERSION="1.21.1"
|
||||||
IMAGE="docker/compose:$VERSION"
|
IMAGE="docker/compose:$VERSION"
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user