Compare commits

..

7 commits

Author SHA1 Message Date
Alex Pyrgiotis
5af5baa828
fixup! Update the Dangerzone image and its dependencies 2025-03-31 20:07:21 +03:00
Alex Pyrgiotis
3ba849bb7c
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
2025-03-31 19:44:30 +03:00
Alex Pyrgiotis
99580ee9cf
Bump download links for 0.9.0 2025-03-31 19:38:19 +03:00
Alex Pyrgiotis
f26f410f4d
Update the Dangerzone image and its dependencies
Bump the Debian container image, gVisor version, and H2Orestart plugin.
2025-03-31 19:38:18 +03:00
Alex Pyrgiotis
2e4d86fce7
Update changelog
Update our changelog with all the new changes that have been merged in
the 0.9.0 version.
2025-03-31 19:37:23 +03:00
Alex Pyrgiotis
ce25a5da75
Bump version to 0.9.0 2025-03-31 19:24:12 +03:00
Alex Pyrgiotis
4bde995a8e
Bump poetry.lock file
Bump the poetry.lock file using `poetry lock --regenerate`.
2025-03-31 19:24:12 +03:00
3 changed files with 3 additions and 6 deletions

View file

@ -12,7 +12,7 @@ since 0.4.1, and this project adheres to [Semantic Versioning](https://semver.or
### Added
- Platform support: Add support for Fedora 42 ([#1091](https://github.com/freedomofpress/dangerzone/issues/1091))
- Platform support: Add support for Ubuntu 25.04 (Plucky Puffin) ([#1090](https://github.com/freedomofpress/dangerzone/issues/1090))
- Platform support: Add support for Ubuntu 25.04 (Plucky Puffin)([#1090](https://github.com/freedomofpress/dangerzone/issues/1090))
- (experimental): It is now possible to specify a custom container runtime in
the settings, by using the `container_runtime` key. It should contain the path
to the container runtime you want to use. Please note that this doesn't mean
@ -49,9 +49,6 @@ since 0.4.1, and this project adheres to [Semantic Versioning](https://semver.or
container storage will no longer show a tag for this dependency
([#1116](https://github.com/freedomofpress/dangerzone/pull/1116)).
Thanks [@sudoforge](https://github.com/sudoforge) for the contribution.
- The `debian` base image is now referenced with a fully qualified URI,
including the registry hostname ([#1118](https://github.com/freedomofpress/dangerzone/pull/1118)).
Thanks [@sudoforge](https://github.com/sudoforge) for the contribution.
- Update the Dangerzone container image and its dependencies (gVisor, Debian base image, H2Orestart) to the latest versions:
* Debian image release: `bookworm-20250317-slim@sha256:1209d8fd77def86ceb6663deef7956481cc6c14a25e1e64daec12c0ceffcc19d`
* Debian snapshots date: `2025-03-31`

View file

@ -4,7 +4,7 @@
ARG DEBIAN_IMAGE_DIGEST=sha256:1209d8fd77def86ceb6663deef7956481cc6c14a25e1e64daec12c0ceffcc19d
FROM docker.io/library/debian@${DEBIAN_IMAGE_DIGEST} AS dangerzone-image
FROM debian@${DEBIAN_IMAGE_DIGEST} AS dangerzone-image
ARG GVISOR_ARCHIVE_DATE=20250326
ARG DEBIAN_ARCHIVE_DATE=20250331

View file

@ -4,7 +4,7 @@
ARG DEBIAN_IMAGE_DIGEST={{DEBIAN_IMAGE_DIGEST}}
FROM docker.io/library/debian@${DEBIAN_IMAGE_DIGEST} AS dangerzone-image
FROM debian@${DEBIAN_IMAGE_DIGEST} AS dangerzone-image
ARG GVISOR_ARCHIVE_DATE={{GVISOR_ARCHIVE_DATE}}
ARG DEBIAN_ARCHIVE_DATE={{DEBIAN_ARCHIVE_DATE}}