diff options
author | Joffrey F <joffrey@docker.com> | 2016-03-23 13:14:34 -0700 |
---|---|---|
committer | Joffrey F <joffrey@docker.com> | 2016-03-23 13:14:34 -0700 |
commit | 84ed0ae2ef9b2d13201b1f2ae0c27ef92c6a6346 (patch) | |
tree | d10f0dba82375d82c30f9928b33c51bcdb6c1dd9 | |
parent | f1a0fe7b19f9a61f5c2bb208e417c3e2567474c5 (diff) | |
download | docker-py-1.8.0rc1.tar.gz |
Update ChangeLog1.8.0rc1
Signed-off-by: Joffrey F <joffrey@docker.com>
-rw-r--r-- | docs/change_log.md | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/docs/change_log.md b/docs/change_log.md index c5637d6..fc37ba0 100644 --- a/docs/change_log.md +++ b/docs/change_log.md @@ -1,6 +1,48 @@ Change Log ========== +1.8.0 +----- + +[List of PRs / issues for this release](https://github.com/docker/docker-py/issues?q=milestone%3A1.8.0+is%3Aclosed) + +### Features + +* Added `Client.update_container` method (Update resource configs of a + container) +* Added support for gzipped context in `Client.build` +* Added ability to specify IP address when connecting a container to a + network +* Added `tmpfs` support to `Client.create_host_config` +* Added support for the `changes` param in `Client.commit` +* Added support for the `follow` param in `Client.logs` +* Added support for the `check_duplicate` param in `Client.create_network` +* Added support for the `decode` param in `Client.push` and `Client.pull` +* Added `docker.from_env` shortcut function. Instantiates a client with + `kwargs_from_env` +* `kwargs_from_env` now supports an optional `environment` parameter. + If present, values will be fetched from this dictionary instead of + `os.environ` + + +### Bugfixes + +* Fixed a bug where some environment variables specified through + `create_container` would be improperly formatted +* Fixed an issue where the default TLS version in TLSConfig would + break in some environments. `docker-py` now uses TLSv1 by default + This setting can be overridden using the `ssl_version` param in + `kwargs_from_env` or the `TLSConfig` constructor +* Fixed a bug where using the unix socket connection would raise + an error in some edge-case situations +* Fixed a bug where `tcp` hosts would fail to connect to TLS-enabled + endpoints. + +### Miscellaneous + +* Default API version is now 1.22 (introduced in Docker 1.10.0) + + 1.7.2 ----- |