From 8e36c1775dca543e2b4e2ba44f6e27e297005130 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alo=C3=AFs=20Micard?= Date: Mon, 6 Oct 2025 13:45:47 +0200 Subject: [PATCH] Release 22.0.2 --- .github/workflows/build.yml | 2 +- images/{22.0.1-php8.2 => 22.0.2-php8.2}/Dockerfile | 2 +- images/{22.0.1-php8.2 => 22.0.2-php8.2}/docker-init.php | 0 images/{22.0.1-php8.2 => 22.0.2-php8.2}/docker-run.sh | 0 versions.sh | 4 ++-- 5 files changed, 4 insertions(+), 4 deletions(-) rename images/{22.0.1-php8.2 => 22.0.2-php8.2}/Dockerfile (99%) rename images/{22.0.1-php8.2 => 22.0.2-php8.2}/docker-init.php (100%) rename images/{22.0.1-php8.2 => 22.0.2-php8.2}/docker-run.sh (100%) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ac44e81..e285da9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: build-docker-images: strategy: matrix: - dolibarr_version: [ 15.0.3, 16.0.5, 17.0.4, 18.0.8, 19.0.4, 20.0.4, 21.0.4, 22.0.1, develop ] + dolibarr_version: [ 15.0.3, 16.0.5, 17.0.4, 18.0.8, 19.0.4, 20.0.4, 21.0.4, 22.0.2, develop ] runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v5 diff --git a/images/22.0.1-php8.2/Dockerfile b/images/22.0.2-php8.2/Dockerfile similarity index 99% rename from images/22.0.1-php8.2/Dockerfile rename to images/22.0.2-php8.2/Dockerfile index a437527..89d5c05 100644 --- a/images/22.0.1-php8.2/Dockerfile +++ b/images/22.0.2-php8.2/Dockerfile @@ -13,7 +13,7 @@ FROM ${ARCH}php:8.2-apache-bookworm # 2025 Renato de Castro Ferreira LABEL maintainer="The Dolibarr foundation " -ENV DOLI_VERSION=22.0.1 +ENV DOLI_VERSION=22.0.2 ENV DOLI_VERSION_FOR_INIT_DEMO=22.0 ENV DOLI_INSTALL_AUTO=1 ENV DOLI_PROD=1 diff --git a/images/22.0.1-php8.2/docker-init.php b/images/22.0.2-php8.2/docker-init.php similarity index 100% rename from images/22.0.1-php8.2/docker-init.php rename to images/22.0.2-php8.2/docker-init.php diff --git a/images/22.0.1-php8.2/docker-run.sh b/images/22.0.2-php8.2/docker-run.sh similarity index 100% rename from images/22.0.1-php8.2/docker-run.sh rename to images/22.0.2-php8.2/docker-run.sh diff --git a/versions.sh b/versions.sh index c091839..d237bbd 100644 --- a/versions.sh +++ b/versions.sh @@ -3,10 +3,10 @@ set -e # The list of version to build docker packages for -DOLIBARR_VERSIONS=("15.0.3" "16.0.5" "17.0.4" "18.0.8" "19.0.4" "20.0.4" "21.0.4" "22.0.1" "develop") +DOLIBARR_VERSIONS=("15.0.3" "16.0.5" "17.0.4" "18.0.8" "19.0.4" "20.0.4" "21.0.4" "22.0.2" "develop") # The version to use when installing dolibarr/dolibarr:latest -DOLIBARR_LATEST_TAG="22.0.1" +DOLIBARR_LATEST_TAG="22.0.2" # The version to use to find the dump file for the init of demo with branch "develop" DOLIBARR_VERSION_FOR_INIT_DEMO="22.0"