File tree Expand file tree Collapse file tree 3 files changed +44
-1
lines changed Expand file tree Collapse file tree 3 files changed +44
-1
lines changed Original file line number Diff line number Diff line change 1
1
include test-requirements.txt
2
2
include requirements.txt
3
3
include README.md
4
+ include README.rst
4
5
include LICENSE
5
6
recursive-include tests *.py
6
7
recursive-include tests/unit/testdata *
Original file line number Diff line number Diff line change 1
- version = "1.8.0-dev "
1
+ version = "1.8.0-rc1 "
2
2
version_info = tuple ([int (d ) for d in version .split ("-" )[0 ].split ("." )])
Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
3
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
+
4
46
1.7.2
5
47
-----
6
48
You can’t perform that action at this time.
0 commit comments