diff options
author | Joffrey F <joffrey@docker.com> | 2015-02-12 16:14:30 -0800 |
---|---|---|
committer | Joffrey F <joffrey@docker.com> | 2015-02-12 16:14:30 -0800 |
commit | 0f1bd817ac8947b3089a40f5b5a50968c05d87de (patch) | |
tree | 8a4ca1ad287b7a32dc625e63e54e74ed7f5fa5f3 | |
parent | 2c60e67ddc1ab00ad89b508eff1681da7eba2a91 (diff) | |
download | docker-py-1.0.0-release.tar.gz |
1.0.0 changelog1.0.0-release
-rw-r--r-- | docs/change_log.md | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/change_log.md b/docs/change_log.md index 346b5a2..963878f 100644 --- a/docs/change_log.md +++ b/docs/change_log.md @@ -1,6 +1,35 @@ Change Log ========== +1.0.0 +----- + +### Features + +* Added new `Client.rename` method (`docker rename`) +* Added now `Client.stats` method (`docker stats`) +* Added `read_only` param support to `utils.create_host_config` and + `Client.start` (`docker run --read-only`) +* Added `pid_mode` param support to `utils.create_host_config` and + `Client.start` (`docker run --pid='host'`) +* Added `since`, `until` and `filters` params to `Client.events`. +* Added `decode` parameter to `Client.stats` and `Client.events` to decode + JSON objects on the fly (False by default). + +### Bugfixes + +* Fixed a bug that caused `Client.build` to crash when the provided source was + a remote source. + +### Miscellaneous + +* Default API version has been bumped to 1.17 (Docker Engine 1.5.0) +* `Client.timeout` is now a public attribute, and users are encouraged to use it + when request timeouts need to be changed at runtime. +* Added `Client.api_version` as a read-only property. +* The `memswap_limit` argument in `Client.create_container` now accepts string + type values similar to `mem_limit` ('6g', '120000k', etc.) +* Improved documentation 0.7.2 ----- |