7.0.0b3
Pre-release
Pre-release
ℹ️ See 7.0.0b2 for full release notes
Upgrade Notes (from 6.x) ⚠️
- Removed SSL version (
ssl_version
) and explicit hostname check (assert_hostname
) options (#3185)assert_hostname
has not been used since Python 3.6 and was removed in 3.12- Python 3.7+ supports TLSv1.3 by default
- Websocket support is no longer included by default (#3123)
- Use
pip install docker[websockets]
to includewebsocket-client
dependency - By default,
docker-py
hijacks the TCP connection and does not use Websockets - Websocket client is only required to use
attach_socket(container, ws=True)
- Use
- Python 3.7 no longer supported (reached end-of-life June 2023) (#3187)
Features ✨
- Add support for
filters
,keep_storage
, andall
inprune_builds()
on API v1.39+ (#3192)
Bugfixes 🐛
- Validate tag format before push (#3191)
Full Changelog
- Fix #3153 - Validate tag before build using OCI regex by @LombardiDaniel in #3191
- feat: accept filters and keep_storage in prune_builds by @emranbm in #3192
Commit Log: 7.0.0b2...7.0.0b3
New Contributors
- @LombardiDaniel made their first contribution in #3191
- @emranbm made their first contribution in #3192