chore(main): release 1.10.5 (#748)

Co-authored-by: sablier-bot[bot] <186367030+sablier-bot[bot]@users.noreply.github.com>
This commit is contained in:
sablier-bot[bot]
2025-11-23 17:05:40 -05:00
committed by GitHub
parent 112bdaaf8f
commit 9d2b7793bd
12 changed files with 28 additions and 15 deletions

View File

@@ -1,3 +1,3 @@
{
".": "1.10.4"
".": "1.10.5"
}

View File

@@ -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)

View File

@@ -55,7 +55,7 @@ You can install Sablier using one of the following methods:
<!-- x-release-please-start-version -->
![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)
<!-- x-release-please-end -->
- **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:
<!-- x-release-please-start-version -->
```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
> ```
<!-- x-release-please-end -->

View File

@@ -89,7 +89,7 @@ sablier --help
# or
docker run sablierapp/sablier:1.10.4 --help
docker run sablierapp/sablier:1.10.5 --help
```
<!-- x-release-please-end -->

View File

@@ -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'
```

View File

@@ -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"

View File

@@ -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

View File

@@ -18,7 +18,7 @@ Choose one of the Docker images and run it with a sample configuration file:
<!-- x-release-please-start-version -->
```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
```
<!-- x-release-please-end -->

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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'