From ed4a9e82628a957824d08b6d08273698b9a246b2 Mon Sep 17 00:00:00 2001 From: maxlerebourg Date: Mon, 27 Jul 2026 21:09:55 +0200 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20renovate:=20Update=20all?= =?UTF-8?q?=20(#362)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Renovate Bot <22881669+maxlerebourg@users.noreply.github.com> --- .github/workflows/renovate.yml | 2 +- docker-compose.local.yml | 2 +- docker-compose.yml | 4 ++-- examples/appsec-enabled/docker-compose.yml | 4 ++-- examples/behind-proxy/docker-compose.yml | 6 +++--- examples/captcha/docker-compose.yml | 4 ++-- examples/custom-ban-page/docker-compose.yml | 4 ++-- examples/custom-captcha/docker-compose.yml | 4 ++-- examples/kubernetes/traefik/values.yml | 4 ++-- examples/redis-cache/docker-compose.yml | 6 +++--- examples/standalone-mode/docker-compose.yml | 4 ++-- examples/tls-auth/docker-compose.yml | 4 ++-- examples/trusted-ips/docker-compose.yml | 4 ++-- tests/e2e/mock/lib/common.sh | 2 +- version.go | 2 +- 15 files changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 90c8c90..b2bdd80 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Run Renovate - uses: renovatebot/github-action@v46.1.20 + uses: renovatebot/github-action@v46.1.21 with: token: ${{ secrets.RENOVATE_TOKEN }} env: diff --git a/docker-compose.local.yml b/docker-compose.local.yml index 45cb571..7bce755 100644 --- a/docker-compose.local.yml +++ b/docker-compose.local.yml @@ -1,6 +1,6 @@ services: traefik: - image: "traefik:v3.7.8" + image: "traefik:v3.7.9" container_name: "traefik" restart: unless-stopped command: diff --git a/docker-compose.yml b/docker-compose.yml index 1d7982c..225ce81 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,6 @@ services: traefik: - image: "traefik:v3.7.8" + image: "traefik:v3.7.9" container_name: "traefik" restart: unless-stopped command: @@ -12,7 +12,7 @@ services: - "--entrypoints.web.address=:80" - "--experimental.plugins.bouncer.modulename=github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin" - - "--experimental.plugins.bouncer.version=v1.6.0" + - "--experimental.plugins.bouncer.version=v1.7.0" volumes: - "/var/run/docker.sock:/var/run/docker.sock:ro" # - './ban.html:/ban.html:ro' diff --git a/examples/appsec-enabled/docker-compose.yml b/examples/appsec-enabled/docker-compose.yml index b653b1c..79fae60 100644 --- a/examples/appsec-enabled/docker-compose.yml +++ b/examples/appsec-enabled/docker-compose.yml @@ -1,6 +1,6 @@ services: traefik: - image: "traefik:v3.7.8" + image: "traefik:v3.7.9" container_name: "traefik" restart: unless-stopped command: @@ -13,7 +13,7 @@ services: - "--entrypoints.web.address=:80" - "--experimental.plugins.bouncer.modulename=github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin" - - "--experimental.plugins.bouncer.version=v1.6.0" + - "--experimental.plugins.bouncer.version=v1.7.0" # - "--experimental.localplugins.bouncer.modulename=github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin" volumes: - /var/run/docker.sock:/var/run/docker.sock:ro diff --git a/examples/behind-proxy/docker-compose.yml b/examples/behind-proxy/docker-compose.yml index eee199b..f7c138d 100644 --- a/examples/behind-proxy/docker-compose.yml +++ b/examples/behind-proxy/docker-compose.yml @@ -1,6 +1,6 @@ services: cloudflare: - image: "traefik:v3.7.8" + image: "traefik:v3.7.9" container_name: "cloudflare" restart: unless-stopped command: @@ -19,7 +19,7 @@ services: - 8080:8080 traefik: - image: "traefik:v3.7.8" + image: "traefik:v3.7.9" container_name: "traefik" restart: unless-stopped command: @@ -33,7 +33,7 @@ services: - "--entrypoints.web.forwardedheaders.trustedips=172.21.0.5" - "--experimental.plugins.bouncer.modulename=github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin" - - "--experimental.plugins.bouncer.version=v1.6.0" + - "--experimental.plugins.bouncer.version=v1.7.0" volumes: - /var/run/docker.sock:/var/run/docker.sock:ro - logs-traefik:/var/log/traefik diff --git a/examples/captcha/docker-compose.yml b/examples/captcha/docker-compose.yml index 365aa5b..a17d346 100644 --- a/examples/captcha/docker-compose.yml +++ b/examples/captcha/docker-compose.yml @@ -1,6 +1,6 @@ services: traefik: - image: "traefik:v3.7.8" + image: "traefik:v3.7.9" container_name: "traefik" restart: unless-stopped command: @@ -13,7 +13,7 @@ services: - "--entrypoints.web.address=:80" - "--experimental.plugins.bouncer.modulename=github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin" - - "--experimental.plugins.bouncer.version=v1.6.0" + - "--experimental.plugins.bouncer.version=v1.7.0" # - "--experimental.localplugins.bouncer.modulename=github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin" volumes: - /var/run/docker.sock:/var/run/docker.sock:ro diff --git a/examples/custom-ban-page/docker-compose.yml b/examples/custom-ban-page/docker-compose.yml index f397f2f..6dca9aa 100644 --- a/examples/custom-ban-page/docker-compose.yml +++ b/examples/custom-ban-page/docker-compose.yml @@ -1,6 +1,6 @@ services: traefik: - image: "traefik:v3.7.8" + image: "traefik:v3.7.9" container_name: "traefik" restart: unless-stopped command: @@ -13,7 +13,7 @@ services: - "--entrypoints.web.address=:80" - "--experimental.plugins.bouncer.modulename=github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin" - - "--experimental.plugins.bouncer.version=v1.6.0" + - "--experimental.plugins.bouncer.version=v1.7.0" # - "--experimental.localplugins.bouncer.modulename=github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin" volumes: - /var/run/docker.sock:/var/run/docker.sock:ro diff --git a/examples/custom-captcha/docker-compose.yml b/examples/custom-captcha/docker-compose.yml index 7503d9f..d1c035e 100644 --- a/examples/custom-captcha/docker-compose.yml +++ b/examples/custom-captcha/docker-compose.yml @@ -1,6 +1,6 @@ services: traefik: - image: "traefik:v3.7.8" + image: "traefik:v3.7.9" container_name: "traefik" restart: unless-stopped command: @@ -14,7 +14,7 @@ services: - "--entrypoints.web.forwardedheaders.trustedips=172.18.0.0/24" - "--experimental.plugins.bouncer.modulename=github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin" - - "--experimental.plugins.bouncer.version=v1.6.0" + - "--experimental.plugins.bouncer.version=v1.7.0" # - "--experimental.localplugins.bouncer.modulename=github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin" volumes: - /var/run/docker.sock:/var/run/docker.sock:ro diff --git a/examples/kubernetes/traefik/values.yml b/examples/kubernetes/traefik/values.yml index 834a852..a56bee3 100644 --- a/examples/kubernetes/traefik/values.yml +++ b/examples/kubernetes/traefik/values.yml @@ -1,5 +1,5 @@ image: - tag: v3.7.8 + tag: v3.7.9 logs: general: @@ -15,4 +15,4 @@ experimental: plugins: bouncer: moduleName: "github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin" - version: "v1.6.0" + version: "v1.7.0" diff --git a/examples/redis-cache/docker-compose.yml b/examples/redis-cache/docker-compose.yml index 2334263..a0b660c 100644 --- a/examples/redis-cache/docker-compose.yml +++ b/examples/redis-cache/docker-compose.yml @@ -1,6 +1,6 @@ services: traefik: - image: "traefik:v3.7.8" + image: "traefik:v3.7.9" container_name: "traefik" restart: unless-stopped command: @@ -13,7 +13,7 @@ services: - "--entrypoints.web.address=:80" - "--experimental.plugins.bouncer.modulename=github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin" - - "--experimental.plugins.bouncer.version=v1.6.0" + - "--experimental.plugins.bouncer.version=v1.7.0" # - "--experimental.localplugins.bouncer.modulename=github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin" volumes: - /var/run/docker.sock:/var/run/docker.sock:ro @@ -87,7 +87,7 @@ services: - "traefik.enable=false" redis-secure: - image: "redis:8.8.0-alpine" + image: "redis:8.8.1-alpine" container_name: "redis-secure" hostname: redis-secure restart: unless-stopped diff --git a/examples/standalone-mode/docker-compose.yml b/examples/standalone-mode/docker-compose.yml index 82aa8e5..bc1c7ad 100644 --- a/examples/standalone-mode/docker-compose.yml +++ b/examples/standalone-mode/docker-compose.yml @@ -1,6 +1,6 @@ services: traefik: - image: "traefik:v3.7.8" + image: "traefik:v3.7.9" container_name: "traefik" restart: unless-stopped command: @@ -13,7 +13,7 @@ services: - "--entrypoints.web.address=:80" - "--experimental.plugins.bouncer.modulename=github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin" - - "--experimental.plugins.bouncer.version=v1.6.0" + - "--experimental.plugins.bouncer.version=v1.7.0" # - "--experimental.localplugins.bouncer.modulename=github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin" volumes: - /var/run/docker.sock:/var/run/docker.sock:ro diff --git a/examples/tls-auth/docker-compose.yml b/examples/tls-auth/docker-compose.yml index 2575648..c1dd427 100644 --- a/examples/tls-auth/docker-compose.yml +++ b/examples/tls-auth/docker-compose.yml @@ -1,6 +1,6 @@ services: traefik: - image: "traefik:v3.7.8" + image: "traefik:v3.7.9" container_name: "traefik" restart: unless-stopped command: @@ -13,7 +13,7 @@ services: - "--entrypoints.web.address=:80" - "--experimental.plugins.bouncer.modulename=github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin" - - "--experimental.plugins.bouncer.version=v1.6.0" + - "--experimental.plugins.bouncer.version=v1.7.0" # - "--experimental.localplugins.bouncer.modulename=github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin" volumes: - /var/run/docker.sock:/var/run/docker.sock:ro diff --git a/examples/trusted-ips/docker-compose.yml b/examples/trusted-ips/docker-compose.yml index b1dc912..f6b598d 100644 --- a/examples/trusted-ips/docker-compose.yml +++ b/examples/trusted-ips/docker-compose.yml @@ -1,6 +1,6 @@ services: traefik: - image: "traefik:v3.7.8" + image: "traefik:v3.7.9" container_name: "traefik" restart: unless-stopped command: @@ -13,7 +13,7 @@ services: - "--entrypoints.web.address=:80" - "--experimental.plugins.bouncer.modulename=github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin" - - "--experimental.plugins.bouncer.version=v1.6.0" + - "--experimental.plugins.bouncer.version=v1.7.0" # - "--experimental.localplugins.bouncer.modulename=github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin" volumes: - /var/run/docker.sock:/var/run/docker.sock:ro diff --git a/tests/e2e/mock/lib/common.sh b/tests/e2e/mock/lib/common.sh index ef03093..3dc5f1d 100644 --- a/tests/e2e/mock/lib/common.sh +++ b/tests/e2e/mock/lib/common.sh @@ -14,7 +14,7 @@ set -euo pipefail # Pinned to match the Docker suite (tests/e2e/scenarios/*/docker-compose.yml). -TRAEFIK_VERSION="${TRAEFIK_VERSION:-v3.7.8}" +TRAEFIK_VERSION="${TRAEFIK_VERSION:-v3.7.9}" WEB_PORT="${WEB_PORT:-8000}" LAPI_PORT="${LAPI_PORT:-8090}" diff --git a/version.go b/version.go index f5dfdfc..03d61a5 100644 --- a/version.go +++ b/version.go @@ -1,4 +1,4 @@ package crowdsec_bouncer_traefik_plugin //nolint:revive,stylecheck // pluginVersion is updated automatically by the release workflow and Renovate. -var pluginVersion = "v1.6.0" //nolint:gochecknoglobals +var pluginVersion = "v1.7.0" //nolint:gochecknoglobals