@@ -5,6 +5,82 @@ keywords: release notes, compose
5
5
toc_max : 2
6
6
---
7
7
8
+ 1.24.0 (2019-03-28)
9
+ -------------------
10
+
11
+ ### Features
12
+
13
+ - Added support for connecting to the Docker Engine using the ` ssh ` protocol.
14
+
15
+ - Added a ` --all ` flag to ` docker-compose ps ` to include stopped one-off containers
16
+ in the command's output.
17
+
18
+ - Add bash completion for ` ps --all|-a `
19
+
20
+ - Support for credential_spec
21
+
22
+ - Add ` --parallel ` to ` docker build ` 's options in ` bash ` and ` zsh ` completion
23
+
24
+ ### Bugfixes
25
+
26
+ - Fixed a bug where some valid credential helpers weren't properly handled by Compose
27
+ when attempting to pull images from private registries.
28
+
29
+ - Fixed an issue where the output of ` docker-compose start ` before containers were created
30
+ was misleading
31
+
32
+ - To match the Docker CLI behavior and to avoid confusing issues, Compose will no longer
33
+ accept whitespace in variable names sourced from environment files.
34
+
35
+ - Compose will now report a configuration error if a service attempts to declare
36
+ duplicate mount points in the volumes section.
37
+
38
+ - Fixed an issue with the containerized version of Compose that prevented users from
39
+ writing to stdin during interactive sessions started by ` run ` or ` exec ` .
40
+
41
+ - One-off containers started by ` run ` no longer adopt the restart policy of the service,
42
+ and are instead set to never restart.
43
+
44
+ - Fixed an issue that caused some container events to not appear in the output of
45
+ the ` docker-compose events ` command.
46
+
47
+ - Missing images will no longer stop the execution of ` docker-compose down ` commands
48
+ (a warning will be displayed instead).
49
+
50
+ - Force ` virtualenv ` version for macOS CI
51
+
52
+ - Fix merging of compose files when network has ` None ` config
53
+
54
+ - Fix ` CTRL+C ` issues by enabling ` bootloader_ignore_signals ` in ` pyinstaller `
55
+
56
+ - Bump ` docker-py ` version to ` 3.7.2 ` to fix SSH and proxy config issues
57
+
58
+ - Fix release script and some typos on release documentation
59
+
60
+ 1.23.2 (2018-11-28)
61
+ -------------------
62
+
63
+ ### Bugfixes
64
+
65
+ - Reverted a 1.23.0 change that appended random strings to container names
66
+ created by ` docker-compose up ` , causing addressability issues.
67
+ Note: Containers created by ` docker-compose run ` will continue to use
68
+ randomly generated names to avoid collisions during parallel runs.
69
+
70
+ - Fixed an issue where some ` dockerfile ` paths would fail unexpectedly when
71
+ attempting to build on Windows.
72
+
73
+ - Fixed a bug where build context URLs would fail to build on Windows.
74
+
75
+ - Fixed a bug that caused ` run ` and ` exec ` commands to fail for some otherwise
76
+ accepted values of the ` --host ` parameter.
77
+
78
+ - Fixed an issue where overrides for the ` storage_opt ` and ` isolation ` keys in
79
+ service definitions weren't properly applied.
80
+
81
+ - Fixed a bug where some invalid Compose files would raise an uncaught
82
+ exception during validation.
83
+
8
84
## 1.23.1 (2018-11-01)
9
85
10
86
### Bug Fixes
0 commit comments