diff --git a/CHANGELOG.md b/CHANGELOG.md index 96d115f..8f310cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## [1.12.2](https://github.com/thomiceli/opengist/compare/v1.12.1...v1.12.2) - 2026-03-14 +See here how to [update](https://opengist.io/docs/update) Opengist. + +### Added +- Search all fields (#622) +- Display a form to create an Opengist account coming from a OAuth provider (#623) +- Rebuild search index in admin options (#647) + +### Fixed +- Clean file path names on file creation (#624) +- Support UTF-8 on gist download (#625) +- CSRF skipper only for GET *.js request (#627) +- Async-loaded gist embed scripts (#630) +- Make gists username/urls case insensitive in URLS (#641) +- Improve code search and index tests (#663) +- Translation strings (#659) +- Gitea avatar URL on OAuth (#674) + +### [Helm Chart](helm/opengist) +- Add environment variables and secrets to statefulset (#644) + +> Admins of Opengist instances may want to run "Rebuild search index" in the admin panel. + ## [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. diff --git a/README.md b/README.md index c58d4ec..8656d72 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.1/opengist1.12.1-linux-amd64.tar.gz +wget https://github.com/thomiceli/opengist/releases/download/v1.12.2/opengist1.12.2-linux-amd64.tar.gz -tar xzvf opengist1.12.1-linux-amd64.tar.gz +tar xzvf opengist1.12.2-linux-amd64.tar.gz cd opengist chmod +x opengist ./opengist # with or without `--config config.yml` diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index 94637b4..69db530 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -85,7 +85,7 @@ export default defineConfig({ {icon: 'github', link: 'https://github.com/thomiceli/opengist'} ], editLink: { - pattern: 'https://github.com/thomiceli/opengist/edit/stable/docs/:path' + pattern: 'https://github.com/thomiceli/opengist/edit/v.1.12.2/docs/:path' }, // @ts-ignore lastUpdated: true, diff --git a/docs/configuration/configure.md b/docs/configuration/configure.md index 14011a7..b66b06a 100644 --- a/docs/configuration/configure.md +++ b/docs/configuration/configure.md @@ -27,7 +27,7 @@ Usage via command line : ./opengist --config /path/to/config.yml ``` -You can start by copying and/or modifying the provided [config.yml](https://github.com/thomiceli/opengist/blob/stable/config.yml) file. +You can start by copying and/or modifying the provided [config.yml](https://github.com/thomiceli/opengist/blob/master/config.yml) file. ## Configuration via Environment Variables diff --git a/docs/installation/binary.md b/docs/installation/binary.md index a1833bd..681eb21 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.1/opengist1.12.1-linux-amd64.tar.gz +wget https://github.com/thomiceli/opengist/releases/download/v1.12.2/opengist1.12.2-linux-amd64.tar.gz -tar xzvf opengist1.12.1-linux-amd64.tar.gz +tar xzvf opengist1.12.2-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 ed7e2aa..8affd1a 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.1 # optional, to checkout the latest release +git checkout v1.12.2 # optional, to checkout the latest release make ./opengist diff --git a/docs/update.md b/docs/update.md index 31e6d3a..71c5697 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.1/opengist1.12.1-linux-amd64.tar.gz +wget https://github.com/thomiceli/opengist/releases/download/v1.12.2/opengist1.12.2-linux-amd64.tar.gz -tar xzvf opengist1.12.1-linux-amd64.tar.gz +tar xzvf opengist1.12.2-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 index 6cc09e4..882e95a 100644 --- a/helm/opengist/CHANGELOG.md +++ b/helm/opengist/CHANGELOG.md @@ -1,5 +1,10 @@ # Helm Chart Changelog +# 0.7.0 - 2026-03-14 + +- Bump Opengist image to 1.12.2 +- Add environment variables and secrets to statefulset + ## 0.6.0 - 2026-02-03 - Bump Opengist image to 1.12.1 diff --git a/helm/opengist/Chart.yaml b/helm/opengist/Chart.yaml index e27847b..f9f22ad 100644 --- a/helm/opengist/Chart.yaml +++ b/helm/opengist/Chart.yaml @@ -3,7 +3,7 @@ name: opengist description: Opengist Helm chart for Kubernetes type: application version: 0.6.0 -appVersion: 1.12.1 +appVersion: 1.12.2 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 e4ff560..c107e26 100644 --- a/helm/opengist/README.md +++ b/helm/opengist/README.md @@ -1,6 +1,6 @@ # Opengist Helm Chart -![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) +![Version: 0.6.0](https://img.shields.io/badge/Version-0.6.0-informational?style=flat-square) ![AppVersion: 1.12.2](https://img.shields.io/badge/AppVersion-1.12.2-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 c2cea85..be31a18 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.1" + tag: "1.12.2" digest: "" imagePullSecrets: [] # - name: "image-pull-secret"