diff --git a/.github/release-please/.release-please-manifest.json b/.github/release-please/.release-please-manifest.json index 21b05dc..10011f3 100644 --- a/.github/release-please/.release-please-manifest.json +++ b/.github/release-please/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.10.4" + ".": "1.10.5" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index fb202d2..4fa5c61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [1.10.5](https://github.com/sablierapp/sablier/compare/v1.10.4...v1.10.5) (2025-11-23) + + +### Bug Fixes + +* **dockerfile:** remove running as non-root ([b3d356a](https://github.com/sablierapp/sablier/commit/b3d356ac63d636791a7eed20adac29fde184fe26)) +* warn when the custom theme path does not exist ([112bdaa](https://github.com/sablierapp/sablier/commit/112bdaaf8f1eb6259a4cd8ff6f8b6e179add0700)) + + +### Documentation + +* set version to 1.10.4 ([d66a143](https://github.com/sablierapp/sablier/commit/d66a143a9c22711724a5217fa58c1233a56e1d21)) + ## [1.10.4](https://github.com/sablierapp/sablier/compare/v1.10.3...v1.10.4) (2025-11-23) diff --git a/README.md b/README.md index 55bbb1d..d076a6e 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.4) +![Docker Image Size (tag)](https://img.shields.io/docker/image-size/sablierapp/sablier/1.10.5) - **Docker Hub**: [sablierapp/sablier](https://hub.docker.com/r/sablierapp/sablier) @@ -67,13 +67,13 @@ 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.4 +docker run -d -p 10000:10000 -v sablier.yaml:/etc/sablier/sablier.yaml sablierapp/sablier:1.10.5 ``` > [!TIP] > Verify the image signature to ensure authenticity: > ```bash -> gh attestation verify --owner sablierapp oci://sablierapp/sablier:1.10.4 +> gh attestation verify --owner sablierapp oci://sablierapp/sablier:1.10.5 > ``` diff --git a/docs/configuration.md b/docs/configuration.md index 8c6ded0..f49f5f1 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -89,7 +89,7 @@ sablier --help # or -docker run sablierapp/sablier:1.10.4 --help +docker run sablierapp/sablier:1.10.5 --help ``` diff --git a/docs/getting-started.md b/docs/getting-started.md index 88071a7..5e0c9a2 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.4 # x-release-please-version + image: sablierapp/sablier:1.10.5 # 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.4 # x-release-please-version + image: sablierapp/sablier:1.10.5 # x-release-please-version command: - start - --provider.name=docker @@ -144,7 +144,7 @@ services: - sablier.group=demo sablier: - image: sablierapp/sablier:1.10.4 # x-release-please-version + image: sablierapp/sablier:1.10.5 # 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 62d2e94..c9b51ee 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.4 # x-release-please-version + image: sablierapp/sablier:1.10.5 # x-release-please-version args: - "start" - "--provider.name=kubernetes" diff --git a/docs/health.md b/docs/health.md index 654aa53..0eb0708 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.4 + image: sablierapp/sablier:1.10.5 healthcheck: test: ["sablier", "health"] interval: 1m30s diff --git a/docs/installation.md b/docs/installation.md index 02eb746..e360e0e 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.4 + -v $PWD/sablier.yaml:/etc/sablier/sablier.yaml sablierapp/sablier:1.10.5 ``` diff --git a/docs/providers/docker.md b/docs/providers/docker.md index 1e0685d..86027db 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.4 + image: sablierapp/sablier:1.10.5 command: - start - --provider.name=docker diff --git a/docs/providers/docker_swarm.md b/docs/providers/docker_swarm.md index 2351f83..013c0c2 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.4 + image: sablierapp/sablier:1.10.5 command: - start - --provider.name=docker_swarm # or swarm diff --git a/docs/providers/podman.md b/docs/providers/podman.md index 3ed2005..7bf9b9f 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.4 + image: sablierapp/sablier:1.10.5 command: - start - --provider.name=podman diff --git a/docs/themes.md b/docs/themes.md index c692c78..d92b283 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.4 + image: sablierapp/sablier:1.10.5 volumes: - '/var/run/docker.sock:/var/run/docker.sock' - '/path/to/my/themes:/etc/sablier/themes'