diff --git a/CHANGELOG.md b/CHANGELOG.md index 953b51e3a1..0624831339 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm +## 0.5.23 (2024-05-30) + +### Improvements + +- Updated the base image used in the Dockerfile that is created during integration scaffolding from `python:3.11-slim-buster` to `python:3.11-slim-bookworm` + ## 0.5.22 (2024-05-29) ### Bug Fixes diff --git a/port_ocean/cli/cookiecutter/{{cookiecutter.integration_slug}}/Dockerfile b/port_ocean/cli/cookiecutter/{{cookiecutter.integration_slug}}/Dockerfile index 1436f8b004..86ddcc540f 100644 --- a/port_ocean/cli/cookiecutter/{{cookiecutter.integration_slug}}/Dockerfile +++ b/port_ocean/cli/cookiecutter/{{cookiecutter.integration_slug}}/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11-slim-buster +FROM python:3.11-slim-bookworm ENV LIBRDKAFKA_VERSION 1.9.2 diff --git a/pyproject.toml b/pyproject.toml index 5094ed85fc..de59723348 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "port-ocean" -version = "0.5.22" +version = "0.5.23" description = "Port Ocean is a CLI tool for managing your Port projects." readme = "README.md" homepage = "https://app.getport.io"