summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorJoffrey F <joffrey@docker.com>2017-04-21 14:43:03 -0700
committerJoffrey F <joffrey@docker.com>2017-04-21 14:49:04 -0700
commit38af51314e295ad14d24c2a323a164a787e77bf7 (patch)
treea83f5cc6fe8b40677294d8bad217c32ba6125263 /CHANGELOG.md
parentef40e3c6b99e24c580eabd57580778d60ae79d99 (diff)
Bump 1.13.0-rc1
Signed-off-by: Joffrey F <joffrey@docker.com>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md49
1 files changed, 48 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8d49ddea..a8f64d75 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,53 @@
Change log
==========
+1.13.0 (2017-05-01)
+-------------------
+
+### Breaking changes
+
+- `docker-compose up` now resets a service's scaling to its default value.
+ You can use the newly introduced `--scale` option to specify a custom
+ scale value
+
+### New features
+
+#### Compose file version 2.2
+
+- Introduced version 2.2 of the `docker-compose.yml` specification. This
+ version requires to be used with Docker Engine 1.13.0 or above
+
+- Added support for `init` in service definitions.
+
+- Added support for `scale` in service definitions. The configuration's value
+ can be overridden using the `--scale` flag in `docker-compose up`.
+ Please note that the `scale` command is disabled for this file format
+
+#### Compose file version 2.x
+
+- Added support for `options` in the `ipam` section of network definitions
+
+### Bugfixes
+
+- Fixed a bug where paths provided to compose via the `-f` option were not
+ being resolved properly
+
+- Fixed a bug where the `ext_ip::target_port` notation in the ports section
+ was incorrectly marked as invalid
+
+- Fixed an issue where the `exec` command would sometimes not return control
+ to the terminal when using the `-d` flag
+
+- Fixed a bug where secrets were missing from the output of the `config`
+ command for v3.2 files
+
+- Fixed an issue where `docker-compose` would hang if no internet connection
+ was available
+
+- Fixed an issue where paths containing unicode characters passed via the `-f`
+ flag were causing Compose to crash
+
+
1.12.0 (2017-04-04)
-------------------
@@ -8,7 +55,7 @@ Change log
#### Compose file version 3.2
-- Introduced version 3.2 of the `docker-compose.yml` specification.
+- Introduced version 3.2 of the `docker-compose.yml` specification
- Added support for `cache_from` in the `build` section of services