From 18a25d157759f6aadfa782e966aba171e830ba6e Mon Sep 17 00:00:00 2001 From: Gandalf Date: Thu, 19 Mar 2026 11:49:22 -0300 Subject: [PATCH 1/2] chore(deps): bump lib-commons to v4.1.0-beta.10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Includes fix for Ping response reverting 'pong' → 'healthy' for lib-auth compatibility (#363). --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 915b908db..83fa078e2 100644 --- a/go.mod +++ b/go.mod @@ -100,7 +100,7 @@ require ( ) require ( - github.com/LerianStudio/lib-commons/v4 v4.1.0-beta.9 + github.com/LerianStudio/lib-commons/v4 v4.1.0-beta.10 github.com/Shopify/toxiproxy/v2 v2.12.0 github.com/docker/docker v28.5.2+incompatible github.com/docker/go-connections v0.6.0 diff --git a/go.sum b/go.sum index 85f35afab..b4971a1a2 100644 --- a/go.sum +++ b/go.sum @@ -19,8 +19,8 @@ github.com/KyleBanks/depth v1.2.1 h1:5h8fQADFrWtarTdtDudMmGsC7GPbOAu6RVB3ffsVFHc github.com/KyleBanks/depth v1.2.1/go.mod h1:jzSb9d0L43HxTQfT+oSA1EEp2q+ne2uh6XgeJcm8brE= github.com/LerianStudio/lib-auth/v2 v2.5.0-beta.8 h1:Cl8e8hXgxVVavy2/f6goUxmVyOnTXSwsrqSHOJJTTW0= github.com/LerianStudio/lib-auth/v2 v2.5.0-beta.8/go.mod h1:xdXYO1Ncgf++1WAHKZYPCs7YPrcvVt3/zso/X+qUuaI= -github.com/LerianStudio/lib-commons/v4 v4.1.0-beta.9 h1:XcHPbySG7K63MndkFNuSTrurJVpNIzf1iXuSU8WaftE= -github.com/LerianStudio/lib-commons/v4 v4.1.0-beta.9/go.mod h1:WMQ17ouiJ13uUVhH/eY+p++4xb/NOtR44yIMGZ0r8Ow= +github.com/LerianStudio/lib-commons/v4 v4.1.0-beta.10 h1:TWVgforICH6KWpXAu3HSAjWz/0+7/uchn2kIFyNSEmk= +github.com/LerianStudio/lib-commons/v4 v4.1.0-beta.10/go.mod h1:WMQ17ouiJ13uUVhH/eY+p++4xb/NOtR44yIMGZ0r8Ow= github.com/Masterminds/squirrel v1.5.4 h1:uUcX/aBc8O7Fg9kaISIUsHXdKuqehiXAMQTYX8afzqM= github.com/Masterminds/squirrel v1.5.4/go.mod h1:NNaOrjSoIDfDA40n7sr2tPNZRfjzjA400rg+riTZj10= github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY= From 9d56cf726ddf73b3e635b9aa34ecf75266b0bd5c Mon Sep 17 00:00:00 2001 From: Gandalf Date: Thu, 19 Mar 2026 11:59:45 -0300 Subject: [PATCH 2/2] ci: force rebuild ledger and crm images for lib-commons beta.10 --- components/crm/Dockerfile | 3 ++- components/ledger/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/components/crm/Dockerfile b/components/crm/Dockerfile index 57b502e0e..56d693c2a 100644 --- a/components/crm/Dockerfile +++ b/components/crm/Dockerfile @@ -1,4 +1,5 @@ -# syntax=docker/dockerfile:1.4 +# syntax=docker/dockerfile:1.4 +# ci: force rebuild to sync crm image with lib-commons beta.10 FROM --platform=$BUILDPLATFORM golang:1.25.8-alpine AS builder diff --git a/components/ledger/Dockerfile b/components/ledger/Dockerfile index a0b9d9461..6bd832b12 100644 --- a/components/ledger/Dockerfile +++ b/components/ledger/Dockerfile @@ -1,5 +1,5 @@ FROM --platform=$BUILDPLATFORM golang:1.25.8-alpine AS builder -# ci: force rebuild to sync ledger image with beta.59 +# ci: force rebuild to sync ledger image with beta.10 WORKDIR /ledger-app