summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoffrey F <joffrey@docker.com>2014-11-03 20:39:49 +0100
committerJoffrey F <joffrey@docker.com>2014-11-03 20:39:49 +0100
commit8ea385eb215c67a9bba0fd2c3d91af4bbdeb4aa6 (patch)
tree1c8677172adbe2b1def6fc33f94ddeb5603708c6
parente35fa131109eb82f296d580d48824ec4b97a55a7 (diff)
downloaddocker-py-8ea385eb215c67a9bba0fd2c3d91af4bbdeb4aa6.tar.gz
Updated ChangeLog
-rw-r--r--docs/change_log.md44
1 files changed, 42 insertions, 2 deletions
diff --git a/docs/change_log.md b/docs/change_log.md
index f42f6e0..66b0ff1 100644
--- a/docs/change_log.md
+++ b/docs/change_log.md
@@ -1,10 +1,50 @@
Change Log
==========
-0.5.4
+0.6.0
-----
+* **This version introduces breaking changes!**
+
+## Breaking changes
+
+* The default SSL protocol is now the highest TLS v1.x (was SSL v2.3 before)
+ (Poodle fix)
+* The `history` command now returns a dict instead of a raw JSON string.
+
+## Features
+
+* Added the `exec` command.
+* Added `pause` and `unpause` commands.
+* Added support fo the `cpuset` param in `create_container`
+* Added support for host devices (`devices` param in `start`)
+* Added support for the `tail` param in `logs`.
+* Added support for the `filters` param in `images` and `containers`
+* The `kwargs_from_env` method is now available in the `docker.utils`
+ module. This should make it easier for boot2docker user to connect
+ to their daemon.
+
+### Bugfixes
+
+* Fixed a bug where empty directories weren't correctly included when
+ providing a context to `Client.build`.
+* Fixed a bug where UNIX socket connections weren't properly cleaned up,
+ causing `ResourceWarning`s to appear in some cases.
+* Fixed a bug where docker-py would crash if the docker daemon was stopped
+ while reading a streaming response
+* Fixed a bug with streaming responses in Python 3
+* `remove_image` now supports a dict containing an `Id` key as its `id`
+ parameter (similar to other methods requiring a resource ID)
+
+### Documentation
+
+* Added new MkDocs documentation. Currently hosted on
+ [ReadTheDocs](http://docker-py.readthedocs.org/en/latest/)
+
+### Miscellaneous
-* Added MkDocs documentation.
+* Added tests to sdist
+* Added a Makefile for running tests in Docker
+* Updated Dockerfile
0.5.3
-----