From 86e93f83793deb2d200a5fdde4c23e6b60e6d6f4 Mon Sep 17 00:00:00 2001 From: Noah Oblath Date: Wed, 22 Oct 2025 11:22:40 -0700 Subject: [PATCH 1/8] Updating dl-cpp version to v2.10.7 in Dockerfile and GHA workflow --- .github/workflows/publish.yaml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 19cabb1..7414353 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -13,7 +13,7 @@ env: BASE_IMAGE_USER: ghcr.io/driplineorg BASE_IMAGE_REPO: dripline-cpp DEV_SUFFIX: '-dev' - BASE_IMAGE_TAG: 'v2.10.6' + BASE_IMAGE_TAG: 'v2.10.7' # BASE_IMAGE_TAG: 'cancelation' # DEV_SUFFIX: '' diff --git a/Dockerfile b/Dockerfile index 93ab7c9..3f46b20 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ARG img_user=ghcr.io/driplineorg ARG img_repo=dripline-cpp #ARG img_tag=develop -ARG img_tag=v2.10.6 +ARG img_tag=v2.10.7 FROM ${img_user}/${img_repo}:${img_tag} AS deps From d6089cb8ebee35df55958be4bfbe68174af1c0de Mon Sep 17 00:00:00 2001 From: Noah Oblath Date: Fri, 31 Oct 2025 09:02:18 -0700 Subject: [PATCH 2/8] Updated changelog --- changelog.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/changelog.md b/changelog.md index decc940..75c039c 100644 --- a/changelog.md +++ b/changelog.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [5.1.1] - TBD + +## Changed + +- Updated dl-cpp version to v2.10.7 + ## [5.1.0] - 2025-08-26 ### Added From 302fe1adcaf9bad12f9b4cc68a9b0ebdb2be6f9a Mon Sep 17 00:00:00 2001 From: Noah Oblath Date: Fri, 31 Oct 2025 09:02:42 -0700 Subject: [PATCH 3/8] Bumped version to v5.1.1 in CMakeList and k8s chart --- CMakeLists.txt | 2 +- chart/Chart.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ad2576a..cf81585 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.5) # <3.5 is deprecated by CMake -project( DriplinePy VERSION 5.1.0 ) +project( DriplinePy VERSION 5.1.1 ) cmake_policy( SET CMP0074 NEW ) diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 9392265..94c9097 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 ## the appVersion is used as the container image tag for the main container in the pod from the deployment ## it can be overridden by a values.yaml file in image.tag -appVersion: "v5.1.0" +appVersion: "v5.1.1" description: Deploy a dripline-python microservice name: dripline-python version: 1.1.2 From 37c52cbdf28b13441c08d3f547c70d8eaa5ce484 Mon Sep 17 00:00:00 2001 From: Noah Oblath Date: Tue, 4 Nov 2025 16:27:09 -0800 Subject: [PATCH 4/8] Use a test image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3f46b20..3c73662 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ARG img_user=ghcr.io/driplineorg ARG img_repo=dripline-cpp -#ARG img_tag=develop -ARG img_tag=v2.10.7 +ARG img_tag=dlcpp-hf2.10.8 +#ARG img_tag=v2.10.7 FROM ${img_user}/${img_repo}:${img_tag} AS deps From 92a0e1e1c403c0afb4e45185c1dab8c23e69f4a6 Mon Sep 17 00:00:00 2001 From: Noah Oblath Date: Tue, 4 Nov 2025 16:31:14 -0800 Subject: [PATCH 5/8] Use the test image in the gha workflow --- .github/workflows/publish.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 7414353..52da97d 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -13,8 +13,8 @@ env: BASE_IMAGE_USER: ghcr.io/driplineorg BASE_IMAGE_REPO: dripline-cpp DEV_SUFFIX: '-dev' - BASE_IMAGE_TAG: 'v2.10.7' -# BASE_IMAGE_TAG: 'cancelation' +# BASE_IMAGE_TAG: 'v2.10.7' + BASE_IMAGE_TAG: 'dlcpp-hf2.10.8' # DEV_SUFFIX: '' jobs: From 835d6cc694b2e044e0aad2e60854701eccc51a35 Mon Sep 17 00:00:00 2001 From: Noah Oblath Date: Tue, 4 Nov 2025 16:32:11 -0800 Subject: [PATCH 6/8] Fixing the dev suffix --- .github/workflows/publish.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 52da97d..fae11a7 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -12,10 +12,10 @@ env: REGISTRY_OLD: docker.io BASE_IMAGE_USER: ghcr.io/driplineorg BASE_IMAGE_REPO: dripline-cpp - DEV_SUFFIX: '-dev' +# DEV_SUFFIX: '-dev' # BASE_IMAGE_TAG: 'v2.10.7' BASE_IMAGE_TAG: 'dlcpp-hf2.10.8' -# DEV_SUFFIX: '' + DEV_SUFFIX: '' jobs: From 4e45eb6b77d0b89907f270a6d9c46ad0f69f9923 Mon Sep 17 00:00:00 2001 From: Noah Oblath Date: Tue, 4 Nov 2025 17:00:36 -0800 Subject: [PATCH 7/8] Set dl-cpp docker images to their new version; updated the changelog --- .github/workflows/publish.yaml | 8 ++++---- Dockerfile | 4 ++-- changelog.md | 5 ++++- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index fae11a7..a5a9074 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -12,10 +12,10 @@ env: REGISTRY_OLD: docker.io BASE_IMAGE_USER: ghcr.io/driplineorg BASE_IMAGE_REPO: dripline-cpp -# DEV_SUFFIX: '-dev' -# BASE_IMAGE_TAG: 'v2.10.7' - BASE_IMAGE_TAG: 'dlcpp-hf2.10.8' - DEV_SUFFIX: '' + DEV_SUFFIX: '-dev' + BASE_IMAGE_TAG: 'v2.10.8' +# BASE_IMAGE_TAG: 'dlcpp-hf2.10.8' +# DEV_SUFFIX: '' jobs: diff --git a/Dockerfile b/Dockerfile index 3c73662..aed6d19 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ARG img_user=ghcr.io/driplineorg ARG img_repo=dripline-cpp -ARG img_tag=dlcpp-hf2.10.8 -#ARG img_tag=v2.10.7 +#ARG img_tag=dlcpp-hf2.10.8 +ARG img_tag=v2.10.8 FROM ${img_user}/${img_repo}:${img_tag} AS deps diff --git a/changelog.md b/changelog.md index 75c039c..8c7d4fe 100644 --- a/changelog.md +++ b/changelog.md @@ -7,11 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + ## [5.1.1] - TBD ## Changed -- Updated dl-cpp version to v2.10.7 +- Updated dl-cpp version to v2.10.8 + ## [5.1.0] - 2025-08-26 @@ -39,6 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Application cancelation -- can use ctrl-c or other system signals to cancel an executable - Alerts exchange not hard-coded in the alerts consumer + ## [5.0.1] - 2023-03-05 ### Incompatibility From 4814a9f86e861141d5b191b2f3c6f6380d8b4d37 Mon Sep 17 00:00:00 2001 From: Noah Oblath Date: Wed, 5 Nov 2025 11:29:14 -0800 Subject: [PATCH 8/8] Update the changelog --- changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 8c7d4fe..b30f350 100644 --- a/changelog.md +++ b/changelog.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [5.1.1] - TBD +## [5.1.1] - 2025-11-05 ## Changed