You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/change-log.md
+41Lines changed: 41 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,47 @@
1
1
Changelog
2
2
==========
3
3
4
+
6.1.2
5
+
-----
6
+
#### Bugfixes
7
+
- Fix for socket timeouts on long `docker exec` calls
8
+
9
+
6.1.1
10
+
-----
11
+
#### Bugfixes
12
+
- Fix `containers.stats()` hanging with `stream=True`
13
+
- Correct return type in docs for `containers.diff()` method
14
+
15
+
16
+
6.1.0
17
+
-----
18
+
19
+
### Upgrade Notes
20
+
- Errors are no longer returned during client initialization if the credential helper cannot be found. A warning will be emitted instead, and an error is returned if the credential helper is used.
21
+
22
+
### Features
23
+
- Python 3.11 support
24
+
- Use `poll()` instead of `select()` on non-Windows platforms
25
+
- New API fields
26
+
-`network_driver_opt` on container run / create
27
+
-`one-shot` on container stats
28
+
-`status` on services list
29
+
30
+
### Bugfixes
31
+
- Support for requests 2.29.0+ and urllib3 2.x
32
+
- Do not strip characters from volume names
33
+
- Fix connection leak on container.exec_* operations
34
+
- Fix errors closing named pipes on Windows
35
+
36
+
6.0.1
37
+
-----
38
+
This version is not compatible with requests 2.29+ or urllib3 2.x.
39
+
Either explicitly add `requests < 2.29` and `urllib3 < 2` to your requirements constraints or upgrade to 6.1.0+.
40
+
41
+
### Bugfixes
42
+
- Fix for `The pipe has been ended errors` on Windows
43
+
- Support floats for container log filtering by timestamp (`since` / `until`)
0 commit comments