File tree Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Expand file tree Collapse file tree 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 "
22version_info = tuple ([int (d ) for d in version .split ("-" )[0 ].split ("." )])
Original file line number Diff line number Diff line change 11Change log
22==========
33
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+
4223.1.4
523-----
624
725[ List of PRs / issues for this release] ( https://github.com/docker/docker-py/milestone/48?closed=1 )
826
27+ ### Bugfixes
928
1029* Fixed a bug where build contexts containing directory symlinks would produce
1130 invalid tar archives
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ Client reference
2626 .. autoattribute :: swarm
2727 .. autoattribute :: volumes
2828
29+ .. automethod :: close()
2930 .. automethod :: df()
3031 .. automethod :: events()
3132 .. automethod :: info()
You can’t perform that action at this time.
0 commit comments