summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoffrey F <joffrey@docker.com>2015-06-16 14:44:39 -0700
committerJoffrey F <joffrey@docker.com>2015-06-16 14:44:39 -0700
commitf0a9c80a49ad8fe82f25866c3e444d4b1fe22fd1 (patch)
tree929eb7671e30b259b23ef64efcc7cba739800286
parentfb5db84f0b5e16b9fad3f023796f8b7799c97615 (diff)
downloaddocker-py-1.3.0-rc0.tar.gz
Updated ChangeLog for 1.2.31.3.0-rc0
-rw-r--r--docs/change_log.md29
1 files changed, 28 insertions, 1 deletions
diff --git a/docs/change_log.md b/docs/change_log.md
index f334630..837655f 100644
--- a/docs/change_log.md
+++ b/docs/change_log.md
@@ -4,8 +4,35 @@ Change Log
1.2.3
-----
-Work in progress.
+[List of PRs / issues for this release](https://github.com/docker/docker-py/issues?q=milestone%3A1.2.3+is%3Aclosed)
+### Deprecation warning
+
+* Passing host config in the `Client.start` method is now deprecated. Please use the
+ `host_config` in `Client.create_container` instead.
+
+### Features
+
+* Added support for `privileged` param in `Client.exec_create`
+ (only available in API >= 1.19)
+
+### Bugfixes
+
+* Fixed a bug where the `read_only` param in host_config wasn't handled
+ properly.
+* Fixed a bug in `Client.execute` (this method is still deprecated).
+* The `cpuset` param in `Client.create_container` is also passed as
+ the `CpusetCpus` param (`Cpuset` deprecated in recent versions of the API)
+* Fixed an issue with integration tests being run inside a container
+ (`make integration-test`)
+* Fixed a bug where an empty string would be considered a valid container ID
+ or image ID.
+* Fixed a bug in `Client.insert`
+
+
+### Documentation
+
+* Various fixes
1.2.2
-----