File tree 3 files changed +21
-1
lines changed
3 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 1
- version = "3.1.4 "
1
+ version = "3.2.0 "
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
+ 3.2.0
5
+ -----
6
+
7
+ [ List of PRs/ issues for this release] ( https://github.com/docker/docker-py/milestone/45?closed=1 )
8
+
9
+ ### Features
10
+
11
+ * Generators returned by ` attach() ` , ` logs() ` and ` events() ` now have a
12
+ ` cancel() ` method to let consumers stop the iteration client-side.
13
+ * ` build() ` methods can now handle Dockerfiles supplied outside of the
14
+ build context.
15
+ * Added ` sparse ` argument to ` DockerClient.containers.list() `
16
+ * Added ` isolation ` parameter to ` build() ` methods.
17
+ * Added ` close() ` method to ` DockerClient `
18
+ * Added ` APIClient.inspect_distribution() ` method and
19
+ ` DockerClient.images.get_registry_data() `
20
+ * The latter returns an instance of the new ` RegistryData ` class
21
+
4
22
3.1.4
5
23
-----
6
24
7
25
[ List of PRs / issues for this release] ( https://github.com/docker/docker-py/milestone/48?closed=1 )
8
26
27
+ ### Bugfixes
9
28
10
29
* Fixed a bug where build contexts containing directory symlinks would produce
11
30
invalid tar archives
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ Client reference
26
26
.. autoattribute :: swarm
27
27
.. autoattribute :: volumes
28
28
29
+ .. automethod :: close()
29
30
.. automethod :: df()
30
31
.. automethod :: events()
31
32
.. automethod :: info()
You can’t perform that action at this time.
0 commit comments