mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-25 14:59:16 +01:00
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:
@@ -1,3 +1,3 @@
|
||||
{
|
||||
".": "1.10.4"
|
||||
".": "1.10.5"
|
||||
}
|
||||
13
CHANGELOG.md
13
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)
|
||||
|
||||
|
||||
|
||||
@@ -55,7 +55,7 @@ You can install Sablier using one of the following methods:
|
||||
|
||||
<!-- x-release-please-start-version -->
|
||||

|
||||

|
||||

|
||||
<!-- 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 -->
|
||||
|
||||
@@ -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 -->
|
||||
|
||||
|
||||
@@ -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'
|
||||
```
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 -->
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user