Skip to content

Commit 33aa1a7

Browse files
committed
Merge pull request #1010 from docker/1.8.0rc1
1.8.0rc1
2 parents 6bafac0 + 84ed0ae commit 33aa1a7

File tree

3 files changed

+44
-1
lines changed

3 files changed

+44
-1
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
include test-requirements.txt
22
include requirements.txt
33
include README.md
4+
include README.rst
45
include LICENSE
56
recursive-include tests *.py
67
recursive-include tests/unit/testdata *

docker/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version = "1.8.0-dev"
1+
version = "1.8.0-rc1"
22
version_info = tuple([int(d) for d in version.split("-")[0].split(".")])

docs/change_log.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,48 @@
11
Change Log
22
==========
33

4+
1.8.0
5+
-----
6+
7+
[List of PRs / issues for this release](https://github.com/docker/docker-py/issues?q=milestone%3A1.8.0+is%3Aclosed)
8+
9+
### Features
10+
11+
* Added `Client.update_container` method (Update resource configs of a
12+
container)
13+
* Added support for gzipped context in `Client.build`
14+
* Added ability to specify IP address when connecting a container to a
15+
network
16+
* Added `tmpfs` support to `Client.create_host_config`
17+
* Added support for the `changes` param in `Client.commit`
18+
* Added support for the `follow` param in `Client.logs`
19+
* Added support for the `check_duplicate` param in `Client.create_network`
20+
* Added support for the `decode` param in `Client.push` and `Client.pull`
21+
* Added `docker.from_env` shortcut function. Instantiates a client with
22+
`kwargs_from_env`
23+
* `kwargs_from_env` now supports an optional `environment` parameter.
24+
If present, values will be fetched from this dictionary instead of
25+
`os.environ`
26+
27+
28+
### Bugfixes
29+
30+
* Fixed a bug where some environment variables specified through
31+
`create_container` would be improperly formatted
32+
* Fixed an issue where the default TLS version in TLSConfig would
33+
break in some environments. `docker-py` now uses TLSv1 by default
34+
This setting can be overridden using the `ssl_version` param in
35+
`kwargs_from_env` or the `TLSConfig` constructor
36+
* Fixed a bug where using the unix socket connection would raise
37+
an error in some edge-case situations
38+
* Fixed a bug where `tcp` hosts would fail to connect to TLS-enabled
39+
endpoints.
40+
41+
### Miscellaneous
42+
43+
* Default API version is now 1.22 (introduced in Docker 1.10.0)
44+
45+
446
1.7.2
547
-----
648

0 commit comments

Comments
 (0)