From 6fc4409513ed5fc3bfee0dcc8edb641d035bc978 Mon Sep 17 00:00:00 2001 From: Wikid82 <176516789+Wikid82@users.noreply.github.com> Date: Mon, 23 Mar 2026 02:57:35 +0000 Subject: [PATCH 1/2] chore(docker): update GeoLite2-Country.mmdb checksum Automated checksum update for GeoLite2-Country.mmdb database. Old: aa154fc6bcd712644de232a4abcdd07dac1f801308c0b6f93dbc2b375443da7b New: c6549807950f93f609d6433fa295fa517fbdec0ad975a4aafba69c136d5d2347 Auto-generated by: .github/workflows/update-geolite2.yml --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ed72ea31..30d61bb5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -431,7 +431,7 @@ SHELL ["/bin/ash", "-o", "pipefail", "-c"] # Note: In production, users should provide their own MaxMind license key # This uses the publicly available GeoLite2 database # In CI, timeout quickly rather than retrying to save build time -ARG GEOLITE2_COUNTRY_SHA256=aa154fc6bcd712644de232a4abcdd07dac1f801308c0b6f93dbc2b375443da7b +ARG GEOLITE2_COUNTRY_SHA256=c6549807950f93f609d6433fa295fa517fbdec0ad975a4aafba69c136d5d2347 RUN mkdir -p /app/data/geoip && \ if [ -n "$CI" ]; then \ echo "⏱️ CI detected - quick download (10s timeout, no retries)"; \ From 59adf3286150b6fa62183111211a1aba7002ffbd Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 24 Mar 2026 06:32:00 +0000 Subject: [PATCH 2/2] fix(deps): resolve Renovate lookup failure for geoip2-golang v2 module MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Renovate could not resolve the Go module path github.com/oschwald/geoip2-golang/v2 because the /v2 suffix is a Go module convention, not a separate GitHub repository. Added a packageRules entry with an explicit sourceUrl pointing to the actual upstream repo so Renovate can correctly look up available versions. No changes to application code, go.mod, or go.sum — the dependency was already declared correctly. --- .github/renovate.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index 2f37f034..45a9a1e8 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -281,6 +281,12 @@ "matchUpdateTypes": ["major"], "automerge": false, "labels": ["manual-review"] + }, + { + "description": "Fix Renovate lookup for geoip2-golang v2 module path", + "matchDatasources": ["go"], + "matchPackageNames": ["github.com/oschwald/geoip2-golang/v2"], + "sourceUrl": "https://github.com/oschwald/geoip2-golang" } ] }