Skip to content

Commit d51d06d

Browse files
committed
Merge pull request #862 from docker/1.6.0-release
1.6.0 release
2 parents c0ec551 + a0c0972 commit d51d06d

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

docker/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version = "1.6.0-dev"
1+
version = "1.6.0"
22
version_info = tuple([int(d) for d in version.split("-")[0].split(".")])

docs/change_log.md

+39
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,45 @@
11
Change Log
22
==========
33

4+
1.6.0
5+
-----
6+
7+
[List of PRs / issues for this release](https://github.com/docker/docker-py/issues?q=milestone%3A1.6.0+is%3Aclosed)
8+
9+
### Features
10+
11+
* Added support for the `since` param in `Client.logs` (introduced in API
12+
version 1.19)
13+
* Added support for the `DOCKER_CONFIG` environment variable when looking up
14+
auth config
15+
* Added support for the `stream` param in `Client.stats` (when set to `False`,
16+
allows user to retrieve a single snapshot instead of a constant data stream)
17+
* Added support for the `mem_swappiness`, `oom_kill_disable` params
18+
in `Client.create_host_config`
19+
* Added support for build arguments in `Client.build` through the `buildargs`
20+
param.
21+
22+
23+
### Bugfixes
24+
25+
* Fixed a bug where streaming data over HTTPS would sometimes behave
26+
incorrectly with Python 3.x
27+
* Fixed a bug where commands containing unicode characters would be incorrectly
28+
handled by `Client.create_container`.
29+
* Fixed a bug where auth config credentials containing unicode characters would
30+
cause failures when pushing / pulling images.
31+
* Setting `tail=0` in `Client.logs` no longer shows past logs.
32+
* Fixed a bug where `Client.pull` and `Client.push` couldn't handle image names
33+
containing a dot.
34+
35+
36+
### Miscellaneous
37+
38+
* Default API version is now 1.21 (introduced in Docker 1.9.0)
39+
* Several test improvements and cleanup that should make the suite easier to
40+
expand and maintain moving forward.
41+
42+
443
1.5.0
544
-----
645

0 commit comments

Comments
 (0)