diff --git a/.github/release-please/.release-please-manifest.json b/.github/release-please/.release-please-manifest.json index cf9bf86..4cdaf86 100644 --- a/.github/release-please/.release-please-manifest.json +++ b/.github/release-please/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.10.1" + ".": "1.10.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b952806 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,37 @@ +# Changelog + +## [1.10.2](https://github.com/sablierapp/sablier/compare/v1.10.1...v1.10.2) (2025-11-18) + + +### ⚠ BREAKING CHANGES + +* remove plugins from the repository + +### fix\ + +* remove plugins from the repository ([6d88092](https://github.com/sablierapp/sablier/commit/6d880928c7ec1992b998ef78a43334b1f4823026)) + + +### Bug Fixes + +* bump go 1.25 ([#723](https://github.com/sablierapp/sablier/issues/723)) ([0588627](https://github.com/sablierapp/sablier/commit/0588627d3623109aa792ae20c16be9fa4b2814a2)) + + +### Documentation + +* add CONTRIBUTING.md ([a4d7dda](https://github.com/sablierapp/sablier/commit/a4d7ddae05fd5df141386139a5aee80304499476)) +* add discord server and link pugin repositories ([c5ac357](https://github.com/sablierapp/sablier/commit/c5ac3578822089db228c82f8c0a282202476b7cf)) +* add github and docker icons ([da5d2d1](https://github.com/sablierapp/sablier/commit/da5d2d113a83558697387da35141053699e82093)) +* add helm chart ([71a35ca](https://github.com/sablierapp/sablier/commit/71a35ca8dd273901d7e0469ff68e61bfa77241ff)) +* add release please glob file ([64550ff](https://github.com/sablierapp/sablier/commit/64550ff25bb82571d49b99d058b4a5c9731f7481)) +* add release please tags to update version ([8bc21fb](https://github.com/sablierapp/sablier/commit/8bc21fbaa91e62b5ea83991c46e134e79ede271a)) +* add support section ([09f99f6](https://github.com/sablierapp/sablier/commit/09f99f69ba7b3089ed9d3a1cdcf97dd4184ec961)) +* improve documentation clarity ([a6614de](https://github.com/sablierapp/sablier/commit/a6614de3ad4e3d0119a43e1c0b85145a58f4a187)) +* reference plugin repositories ([33209ac](https://github.com/sablierapp/sablier/commit/33209acc6c7c597a15ec1c9846683e8cdd9c5b7a)) +* **traefik:** set traefik plugin version to v1.10.1 ([#654](https://github.com/sablierapp/sablier/issues/654)) ([8af2f32](https://github.com/sablierapp/sablier/commit/8af2f3265da6478a9224e2639452c83aae485544)) +* update documentation ([96750a5](https://github.com/sablierapp/sablier/commit/96750a50da79fe0a4594480d82a40dee5855c017)) + + +### Code Refactoring + +* add sabliercmd pkg ([#727](https://github.com/sablierapp/sablier/issues/727)) ([0f4a3a2](https://github.com/sablierapp/sablier/commit/0f4a3a2e930aa41915d5eb46c60d39fd664a7143)) diff --git a/README.md b/README.md index 48f006f..3caf482 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,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.1) +![Docker Image Size (tag)](https://img.shields.io/docker/image-size/sablierapp/sablier/1.10.2) - **Docker Hub**: [sablierapp/sablier](https://hub.docker.com/r/sablierapp/sablier) @@ -65,7 +65,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.1 +docker run -d -p 10000:10000 -v sablier.yaml:/etc/sablier/sablier.yaml sablierapp/sablier:1.10.2 ``` diff --git a/docs/configuration.md b/docs/configuration.md index 037a0d9..6450164 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -89,7 +89,7 @@ sablier --help # or -docker run sablierapp/sablier:1.10.1 --help +docker run sablierapp/sablier:1.10.2 --help ``` diff --git a/docs/getting-started.md b/docs/getting-started.md index 0e2bf1f..eb7b4c5 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.1 # x-release-please-version + image: sablierapp/sablier:1.10.2 # 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.1 # x-release-please-version + image: sablierapp/sablier:1.10.2 # x-release-please-version command: - start - --provider.name=docker @@ -144,7 +144,7 @@ services: - sablier.group=demo sablier: - image: sablierapp/sablier:1.10.1 # x-release-please-version + image: sablierapp/sablier:1.10.2 # 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 d16acff..5af7c5d 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.1 # x-release-please-version + image: sablierapp/sablier:1.10.2 # x-release-please-version args: - "start" - "--provider.name=kubernetes" diff --git a/docs/health.md b/docs/health.md index 3384458..d790322 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.1 + image: sablierapp/sablier:1.10.2 healthcheck: test: ["sablier", "health"] interval: 1m30s diff --git a/docs/installation.md b/docs/installation.md index 6a0f95c..1b2d7ba 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.1 + -v $PWD/sablier.yaml:/etc/sablier/sablier.yaml sablierapp/sablier:1.10.2 ``` diff --git a/docs/providers/docker.md b/docs/providers/docker.md index 2460380..5b3d544 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.1 + image: sablierapp/sablier:1.10.2 command: - start - --provider.name=docker diff --git a/docs/providers/docker_swarm.md b/docs/providers/docker_swarm.md index b2140bb..bbfb266 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.1 + image: sablierapp/sablier:1.10.2 command: - start - --provider.name=docker_swarm # or swarm diff --git a/docs/providers/podman.md b/docs/providers/podman.md index efb5534..f135263 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.1 + image: sablierapp/sablier:1.10.2 command: - start - --provider.name=podman diff --git a/docs/themes.md b/docs/themes.md index 50e36df..655fc81 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.1 + image: sablierapp/sablier:1.10.2 volumes: - '/var/run/docker.sock:/var/run/docker.sock' - '/path/to/my/themes:/etc/sablier/themes'