Release notes for 1.5.0

Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
This commit is contained in:
Povilas Kanapickas
2025-07-07 12:04:44 +03:00
parent 04b12e0240
commit 3d3064c735
18 changed files with 30 additions and 18 deletions

30
docs/Changelog-1.5.0.md Normal file
View File

@@ -0,0 +1,30 @@
Version 1.5.0 (2025-07-07)
==========================
Bug fixes
---------
- Fixed path to a local SSH key to be relative to the directory of compose file during build.
- Fixed CMD healthchecks to run the given command directly and not use `/bin/sh -c`.
- Fixed regression of dockerfile definition if current directory name ends with ".git".
- Fixed exit code from `push` command.
- Implemented short syntax for environment variables set in `.env` for compose.yml `environment:` section.
- Fixed regression of log output including "text" in detached mode.
- Implemented `up --no-recreate` to work as advertised.
- Stack traces emitted due to YAML parse errors are now hidden.
Features
--------
- Added unregister command to remove systemd service registration (`podman-compose systemd -a unregister`)
- Added new `docker_compose_compat` `x-podman` meta setting to enable all Docker Compose compatibility settings
- Added new `name_separator_compat` `x-podman` setting to change name separator to hyphen, same as Docker Compose.
- Added support for environment variable interpolation for YAML keys.
- Added `io.podman.compose.service` label to created containers. It contains the same value as
`com.docker.compose.service`.
- Added relabel option to secret to make possible to read the secret file by the contained process.
- Added support for setting x-podman values using PODMAN_COMPOSE_* environment variables.
- Added support to set `--route` option to `podman network create` via
`x-podman.routes` key on network configuration.
- Implemented support for custom pod names in `--in-pod`.

View File

@@ -1 +0,0 @@
- Add unregister command to remove systemd service registration (`podman-compose systemd -a unregister`)

View File

@@ -1 +0,0 @@
- Change behaviour of `--in-pod` to handle custom pod names instead of only disabling pod feature

View File

@@ -1 +0,0 @@
- Add new docker_compose_compat x-podman meta setting to enable all Docker Compose compatibility settings

View File

@@ -1 +0,0 @@
Add support for environment variable interpolation for YAML keys.

View File

@@ -1 +0,0 @@
Fixed build ssh path to a local SSH key, to be relative to the directory of compose file.

View File

@@ -1 +0,0 @@
Fixed support for CMD healthchecks to run using the given command directly and not using `/bin/sh -c`.

View File

@@ -1 +0,0 @@
Fixed regression of dockerfile definition if working directory name ends with ".git".

View File

@@ -1 +0,0 @@
Implemented forwarding failure exit code from `push` command.

View File

@@ -1 +0,0 @@
Implemented short syntax for environment variables set in `.env` for compose.yml "environment:" section.

View File

@@ -1 +0,0 @@
Fixed regression of log output including "text" in detached mode.

View File

@@ -1 +0,0 @@
Implemented `up --no-recreate` to work as advertised

View File

@@ -1 +0,0 @@
Hide the stack trace on a YAML parse error.

View File

@@ -1 +0,0 @@
Added `io.podman.compose.service` label to created containers. It contains the same value as com.docker.compose.service.

View File

@@ -1 +0,0 @@
- Add new name_separator_compat x-podman setting to change name separator to hyphen, same as Docker Compose

View File

@@ -1 +0,0 @@
- Add relabel option to secret to make possible to read the secret file by the contained process.

View File

@@ -1 +0,0 @@
- Add support for setting x-podman values using PODMAN_COMPOSE_* environment variables.

View File

@@ -1,2 +0,0 @@
Added support to set `--route` option to `podman network create` via
`x-podman.routes` key on network configuration.