From 03a28009404ada3d33d0ba40824fa2e81300b5eb Mon Sep 17 00:00:00 2001 From: "sablier-bot[bot]" <186367030+sablier-bot[bot]@users.noreply.github.com> Date: Sun, 23 Nov 2025 11:18:42 -0500 Subject: [PATCH] chore(main): release 1.10.3 (#744) Co-authored-by: sablier-bot[bot] <186367030+sablier-bot[bot]@users.noreply.github.com> --- .github/release-please/.release-please-manifest.json | 2 +- CHANGELOG.md | 12 ++++++++++++ README.md | 4 ++-- docs/configuration.md | 2 +- docs/getting-started.md | 6 +++--- docs/guides/code-server-traefik-kubernetes.md | 2 +- docs/health.md | 2 +- docs/installation.md | 2 +- docs/providers/docker.md | 2 +- docs/providers/docker_swarm.md | 2 +- docs/providers/podman.md | 2 +- docs/themes.md | 2 +- 12 files changed, 26 insertions(+), 14 deletions(-) diff --git a/.github/release-please/.release-please-manifest.json b/.github/release-please/.release-please-manifest.json index 4cdaf86..1639d54 100644 --- a/.github/release-please/.release-please-manifest.json +++ b/.github/release-please/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.10.2" + ".": "1.10.3" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index b1478de..121f5ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [1.10.3](https://github.com/sablierapp/sablier/compare/v1.10.2...v1.10.3) (2025-11-23) + + +### Bug Fixes + +* **goreleaser:** reverse --snapshot ternary expression ([d834d17](https://github.com/sablierapp/sablier/commit/d834d178efdda758a6ccf850b617b91e289da101)) + + +### Documentation + +* fix podman documentation link ([#743](https://github.com/sablierapp/sablier/issues/743)) ([080e4d1](https://github.com/sablierapp/sablier/commit/080e4d1a1f7702b63a146b6607064bf2876a51c6)) + ## [1.10.2](https://github.com/sablierapp/sablier/compare/v1.10.1...v1.10.2) (2025-11-23) diff --git a/README.md b/README.md index b64a4b1..e9d50dc 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ You can install Sablier using one of the following methods: ![Docker Pulls](https://img.shields.io/docker/pulls/sablierapp/sablier) -![Docker Image Size (tag)](https://img.shields.io/docker/image-size/sablierapp/sablier/1.10.2) +![Docker Image Size (tag)](https://img.shields.io/docker/image-size/sablierapp/sablier/1.10.3) - **Docker Hub**: [sablierapp/sablier](https://hub.docker.com/r/sablierapp/sablier) @@ -67,7 +67,7 @@ Choose one of the Docker images and run it with a sample configuration file: ```bash -docker run -d -p 10000:10000 -v sablier.yaml:/etc/sablier/sablier.yaml sablierapp/sablier:1.10.2 +docker run -d -p 10000:10000 -v sablier.yaml:/etc/sablier/sablier.yaml sablierapp/sablier:1.10.3 ``` diff --git a/docs/configuration.md b/docs/configuration.md index 6450164..1d475c8 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -89,7 +89,7 @@ sablier --help # or -docker run sablierapp/sablier:1.10.2 --help +docker run sablierapp/sablier:1.10.3 --help ``` diff --git a/docs/getting-started.md b/docs/getting-started.md index eb7b4c5..326d014 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -77,7 +77,7 @@ services: image: acouvreur/whoami:v1.10.2 sablier: - image: sablierapp/sablier:1.10.2 # x-release-please-version + image: sablierapp/sablier:1.10.3 # x-release-please-version command: - start - --provider.name=docker @@ -112,7 +112,7 @@ services: image: acouvreur/whoami:v1.10.2 sablier: - image: sablierapp/sablier:1.10.2 # x-release-please-version + image: sablierapp/sablier:1.10.3 # x-release-please-version command: - start - --provider.name=docker @@ -144,7 +144,7 @@ services: - sablier.group=demo sablier: - image: sablierapp/sablier:1.10.2 # x-release-please-version + image: sablierapp/sablier:1.10.3 # x-release-please-version volumes: - '/var/run/docker.sock:/var/run/docker.sock' ``` diff --git a/docs/guides/code-server-traefik-kubernetes.md b/docs/guides/code-server-traefik-kubernetes.md index 5af7c5d..b2f0844 100644 --- a/docs/guides/code-server-traefik-kubernetes.md +++ b/docs/guides/code-server-traefik-kubernetes.md @@ -142,7 +142,7 @@ serviceAccountName: sablier containers: - name: sablier - image: sablierapp/sablier:1.10.2 # x-release-please-version + image: sablierapp/sablier:1.10.3 # x-release-please-version args: - "start" - "--provider.name=kubernetes" diff --git a/docs/health.md b/docs/health.md index d790322..36f3395 100644 --- a/docs/health.md +++ b/docs/health.md @@ -17,7 +17,7 @@ The `sablier health` command takes one argument, `--url`, which defaults to `htt ```yml services: sablier: - image: sablierapp/sablier:1.10.2 + image: sablierapp/sablier:1.10.3 healthcheck: test: ["sablier", "health"] interval: 1m30s diff --git a/docs/installation.md b/docs/installation.md index 1b2d7ba..cbd9f83 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -18,7 +18,7 @@ Choose one of the Docker images and run it with a sample configuration file: ```bash docker run -d -p 10000:10000 \ - -v $PWD/sablier.yaml:/etc/sablier/sablier.yaml sablierapp/sablier:1.10.2 + -v $PWD/sablier.yaml:/etc/sablier/sablier.yaml sablierapp/sablier:1.10.3 ``` diff --git a/docs/providers/docker.md b/docs/providers/docker.md index 5b3d544..beb670f 100644 --- a/docs/providers/docker.md +++ b/docs/providers/docker.md @@ -35,7 +35,7 @@ PROVIDER_NAME=docker ```yaml services: sablier: - image: sablierapp/sablier:1.10.2 + image: sablierapp/sablier:1.10.3 command: - start - --provider.name=docker diff --git a/docs/providers/docker_swarm.md b/docs/providers/docker_swarm.md index bbfb266..874dabe 100644 --- a/docs/providers/docker_swarm.md +++ b/docs/providers/docker_swarm.md @@ -36,7 +36,7 @@ PROVIDER_NAME=docker_swarm # or swarm ```yaml services: sablier: - image: sablierapp/sablier:1.10.2 + image: sablierapp/sablier:1.10.3 command: - start - --provider.name=docker_swarm # or swarm diff --git a/docs/providers/podman.md b/docs/providers/podman.md index f135263..ed58e2a 100644 --- a/docs/providers/podman.md +++ b/docs/providers/podman.md @@ -35,7 +35,7 @@ PROVIDER_NAME=podman ```yaml services: sablier: - image: sablierapp/sablier:1.10.2 + image: sablierapp/sablier:1.10.3 command: - start - --provider.name=podman diff --git a/docs/themes.md b/docs/themes.md index 655fc81..18dba6d 100644 --- a/docs/themes.md +++ b/docs/themes.md @@ -26,7 +26,7 @@ By default, the docker image looks for themes located inside the `/etc/sablier/t ```yaml services: sablier: - image: sablierapp/sablier:1.10.2 + image: sablierapp/sablier:1.10.3 volumes: - '/var/run/docker.sock:/var/run/docker.sock' - '/path/to/my/themes:/etc/sablier/themes'