Release notes for 1.3.0

Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
This commit is contained in:
Povilas Kanapickas 2025-01-07 21:06:46 +02:00
parent 23799245bd
commit 6de335beb2
21 changed files with 38 additions and 22 deletions

38
docs/Changelog-1.3.0.md Normal file
View File

@ -0,0 +1,38 @@
Version 1.3.0 (2025-01-07)
==========================
Bug fixes
---------
- Fixed support for de-facto alternative `Dockerfile` names (e.g. `Containerfile`)
- Fixed a bug that caused attempts to create already existing pods multiple times.
- Fixed compatibility with docker-compose in how symlinks to docker-compose.yml are handled.
- Fixed freeze caused by too long log lines without a newline.
- Fixed support for `network_mode: none`.
- Improved error detection by rejecting service definitions that contain both `network_mode` and
`networks` keys, which is not allowed.
Features
--------
- Added support for build labels.
- Added support for "platform" property in the build command.
- Added support for "ssh" property in the build command.
- Added support for cache_from and cache_to fields in build section.
- Added support for honoring the condition in the depends_on section of the service, if stated.
- Added `x-podman.no_hosts` setting to pass `--no-hosts` to podman run
- Added support for compatibility with docker compose for default network behavior when no network
defined in service. This is controlled via `default_net_behavior_compat` feature flag.
- Added a way to get compatibility of default network names with docker compose.
This is selected by setting `default_net_name_compat: true` on `x-podman` global dictionary.
- Added support for the `device_cgroup_rules` property in services.
- Added support for removing networks in `podman-compose down`.
- Added support for network scoped service aliases.
- Added support for network level `mac_address` attribute.
- Added ability to substitute variables with the environment of the service.
Misc
----
- Declared compatibility with Python 3.13.

View File

@ -1 +0,0 @@
Fixed support for de-facto alternative `Dockerfile` names (e.g. `Containerfile`)

View File

@ -1 +0,0 @@
Added support for build labels.

View File

@ -1 +0,0 @@
Added support for "platform" property in the build command.

View File

@ -1 +0,0 @@
Added support for "ssh" property in the build command.

View File

@ -1 +0,0 @@
Added support for cache_from and cache_to fields in build section.

View File

@ -1 +0,0 @@
Fixed a bug that caused attempts to create already existing pods multiple times.

View File

@ -1 +0,0 @@
Added support for honoring the condition in the depends_on section of the service, if stated.

View File

@ -1 +0,0 @@
Add x-podman.no_hosts setting to pass --no-hosts to podman run

View File

@ -1,2 +0,0 @@
Support docker-compose like default network behavior when no network defined in service via `default_net_behavior_compat` feature flag.

View File

@ -1 +0,0 @@
Added a way to get compatibility of default network names with docker compose. This is selected by setting `default_net_name_compat: true` on `x-podman` global dictionary.

View File

@ -1 +0,0 @@
Added support for the "device_cgroup_rules" property in services.

View File

@ -1 +0,0 @@
Fix compatibility with docker-compose in how symlinks to docker-compose.yml are handled.

View File

@ -1 +0,0 @@
podman-compose down removes networks.

View File

@ -1 +0,0 @@
Fix freeze caused by too long log lines without a newline.

View File

@ -1 +0,0 @@
Fix support for `network_mode: none`.

View File

@ -1 +0,0 @@
Support network scoped service aliases.

View File

@ -1 +0,0 @@
Support network level mac_address attribute.

View File

@ -1,2 +0,0 @@
Improved error detection by rejecting service definitions that contain both "network_mode" and
"networks" keys, which is not allowed.

View File

@ -1 +0,0 @@
Declared compatibility with Python 3.13.

View File

@ -1 +0,0 @@
Add ability to substitute variables with the environment of the service.