Update minimum Docker Desktop version

Update the minimum Docker Desktop version prior to the 0.9.0 release.
The new version should also fix a recent Docker bug, whereby the container
stdout was truncated, and caused our conversions to fail.

Fixes #1101
This commit is contained in:
Alex Pyrgiotis 2025-03-31 19:29:58 +03:00
parent 37c7608c0f
commit 6bb30505d3
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA
2 changed files with 3 additions and 2 deletions

View file

@ -31,6 +31,7 @@ since 0.4.1, and this project adheres to [Semantic Versioning](https://semver.or
- Fix our Debian Trixie installation instructions using Sequoia PGP ([#1052](https://github.com/freedomofpress/dangerzone/issues/1052))
- Fix the way multiprocessing works on macOS ([#873](https://github.com/freedomofpress/dangerzone/issues/873))
- Update minimum Docker Desktop version to fix an stdout truncation issue ([#1101](https://github.com/freedomofpress/dangerzone/issues/1101))
### Removed

View file

@ -13,8 +13,8 @@ from .base import IsolationProvider, terminate_process_group
TIMEOUT_KILL = 5 # Timeout in seconds until the kill command returns.
MINIMUM_DOCKER_DESKTOP = {
"Darwin": "4.36.0",
"Windows": "4.36.0",
"Darwin": "4.40.0",
"Windows": "4.40.0",
}
# Define startupinfo for subprocesses