From 4d29a50e6490a808673fb2c34324d4002f0f2daf Mon Sep 17 00:00:00 2001 From: Thomas Miceli Date: Tue, 3 Feb 2026 15:58:40 +0700 Subject: [PATCH] v1.12.1 --- CHANGELOG.md | 13 +++++++++++++ README.md | 4 ++-- docs/installation/binary.md | 4 ++-- docs/installation/source.md | 2 +- docs/update.md | 4 ++-- helm/opengist/CHANGELOG.md | 29 +++++++++++++++++++++++++++++ helm/opengist/Chart.yaml | 4 ++-- helm/opengist/README.md | 2 +- helm/opengist/values.yaml | 2 +- 9 files changed, 53 insertions(+), 11 deletions(-) create mode 100644 helm/opengist/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index f53ad8f..96d115f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [1.12.1](https://github.com/thomiceli/opengist/compare/v1.12.0...v1.12.1) - 2026-02-03 +See here how to [update](https://opengist.io/docs/update) Opengist. + +### Added +- More translation strings (#605) + +### Fixed +- Allow Access Tokens with Required Login (#611) +- Make text files renderable with mimetypes different than text/plain (#612) +- Improve security on raw files endpoint (#613) + +> Admins of Opengist instances may want to run "Synchronize all gists previews" in the admin panel. + ## [1.12.0](https://github.com/thomiceli/opengist/compare/v1.11.1...v1.12.0) - 2026-01-27 See here how to [update](https://opengist.io/docs/update) Opengist. diff --git a/README.md b/README.md index ac926ea..c58d4ec 100644 --- a/README.md +++ b/README.md @@ -77,9 +77,9 @@ Download the archive for your system from the release page [here](https://github ```shell # example for linux amd64 -wget https://github.com/thomiceli/opengist/releases/download/v1.12.0/opengist1.12.0-linux-amd64.tar.gz +wget https://github.com/thomiceli/opengist/releases/download/v1.12.1/opengist1.12.1-linux-amd64.tar.gz -tar xzvf opengist1.12.0-linux-amd64.tar.gz +tar xzvf opengist1.12.1-linux-amd64.tar.gz cd opengist chmod +x opengist ./opengist # with or without `--config config.yml` diff --git a/docs/installation/binary.md b/docs/installation/binary.md index 3b2338a..a1833bd 100644 --- a/docs/installation/binary.md +++ b/docs/installation/binary.md @@ -4,9 +4,9 @@ Download the archive for your system from the release page [here](https://github ```shell # example for linux amd64 -wget https://github.com/thomiceli/opengist/releases/download/v1.12.0/opengist1.12.0-linux-amd64.tar.gz +wget https://github.com/thomiceli/opengist/releases/download/v1.12.1/opengist1.12.1-linux-amd64.tar.gz -tar xzvf opengist1.12.0-linux-amd64.tar.gz +tar xzvf opengist1.12.1-linux-amd64.tar.gz cd opengist chmod +x opengist ./opengist # with or without `--config config.yml` diff --git a/docs/installation/source.md b/docs/installation/source.md index 733c165..ed7e2aa 100644 --- a/docs/installation/source.md +++ b/docs/installation/source.md @@ -10,7 +10,7 @@ Requirements: git clone https://github.com/thomiceli/opengist cd opengist -git checkout v1.12.0 # optional, to checkout the latest release +git checkout v1.12.1 # optional, to checkout the latest release make ./opengist diff --git a/docs/update.md b/docs/update.md index b773b76..31e6d3a 100644 --- a/docs/update.md +++ b/docs/update.md @@ -27,9 +27,9 @@ Stop the running instance; then like your first installation of Opengist, downlo ```shell # example for linux amd64 -wget https://github.com/thomiceli/opengist/releases/download/v1.12.0/opengist1.12.0-linux-amd64.tar.gz +wget https://github.com/thomiceli/opengist/releases/download/v1.12.1/opengist1.12.1-linux-amd64.tar.gz -tar xzvf opengist1.12.0-linux-amd64.tar.gz +tar xzvf opengist1.12.1-linux-amd64.tar.gz cd opengist chmod +x opengist ./opengist # with or without `--config config.yml` diff --git a/helm/opengist/CHANGELOG.md b/helm/opengist/CHANGELOG.md new file mode 100644 index 0000000..6cc09e4 --- /dev/null +++ b/helm/opengist/CHANGELOG.md @@ -0,0 +1,29 @@ +# Helm Chart Changelog + +## 0.6.0 - 2026-02-03 + +- Bump Opengist image to 1.12.1 + +## 0.5.0 - 2026-01-27 + +- Bump Opengist image to 1.12.0 +- Add StatefulSet support +- Add Prometheus ServiceMonitor support if Opengist metrics are enabled +- New service for metrics endpoint, dissociated from the main service +- Use existing pvc claim of provided + +## 0.4.0 - 2025-09-30 + +- Bump Opengist image to 1.11.1 + +## 0.3.0 - 2025-09-21 + +- Bump Opengist image to 1.11.0 + +## 0.2.0 - 2025-05-10 + +- Add `deployment.env[]` in values + +## 0.1.0 - 2025-04-06 + +- Initial release, with Opengist image 1.10.0 diff --git a/helm/opengist/Chart.yaml b/helm/opengist/Chart.yaml index b8873ca..c4a0f15 100644 --- a/helm/opengist/Chart.yaml +++ b/helm/opengist/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: opengist description: Opengist Helm chart for Kubernetes type: application -version: 0.5.0 -appVersion: 1.12.0 +version: 0.6.0 +appVersion: 1.12.1 home: https://opengist.io icon: https://raw.githubusercontent.com/thomiceli/opengist/master/public/img/opengist.svg sources: diff --git a/helm/opengist/README.md b/helm/opengist/README.md index 6e74218..e4ff560 100644 --- a/helm/opengist/README.md +++ b/helm/opengist/README.md @@ -1,6 +1,6 @@ # Opengist Helm Chart -![Version: 0.5.0](https://img.shields.io/badge/Version-0.5.0-informational?style=flat-square) ![AppVersion: 1.12.0](https://img.shields.io/badge/AppVersion-1.12.0-informational?style=flat-square) +![Version: 0.6.0](https://img.shields.io/badge/Version-0.6.0-informational?style=flat-square) ![AppVersion: 1.12.1](https://img.shields.io/badge/AppVersion-1.12.1-informational?style=flat-square) Opengist Helm chart for Kubernetes. Check [CHANGELOG.md](CHANGELOG.md) for release notes. diff --git a/helm/opengist/values.yaml b/helm/opengist/values.yaml index 7c2cfbf..a6a8afe 100644 --- a/helm/opengist/values.yaml +++ b/helm/opengist/values.yaml @@ -18,7 +18,7 @@ configExistingSecret: "" image: repository: ghcr.io/thomiceli/opengist pullPolicy: Always - tag: "1.12.0" + tag: "1.12.1" digest: "" imagePullSecrets: [] # - name: "image-pull-secret"