From 31e3f9d3ceb8907a113c63b1ea961fcfb0beb17f Mon Sep 17 00:00:00 2001 From: Thomas Miceli Date: Thu, 30 Jul 2026 19:44:32 +0200 Subject: [PATCH] v1.15.0 --- CHANGELOG.md | 22 +++++++++++++++++++ README.md | 8 +++---- docs/.vitepress/config.mts | 2 +- .../.vitepress/theme/components/home/Hero.vue | 6 ++--- docs/installation/binary.md | 4 ++-- docs/installation/source.md | 2 +- docs/update.md | 4 ++-- helm/opengist/CHANGELOG.md | 5 +++++ helm/opengist/Chart.yaml | 4 ++-- helm/opengist/README.md | 2 +- helm/opengist/values.yaml | 2 +- 11 files changed, 44 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30ab5d1..7ab7ff3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [1.15.0](https://github.com/thomiceli/opengist/compare/v1.14.0...v1.15.0) - 2026-07-30 +See here how to [update](https://opengist.io/docs/update) Opengist. + +### Added +- UI rework (#757) +- Gist settings page, with metadata edition and danger zone (#757) +- Explore users page, with search and sorting (#757) +- Explore topics page (#757) + +### Changed +- Move reserved routes under the `/-/` prefix: `/-/login`, `/-/register`, `/-/all`, `/-/search`, `/-/topics`, `/:user/-/liked`, ... (#757) + +### Fixed +- Improve Git dumb HTTP security (#780) +- OIDC scope includes trailing whitespace if groups not configured (#775) +- Return 200 for `HEAD /` so uptime monitors don't fail (#773) +- Bind strategy configuration to deployment in Helm chart (#777) +- `OG_OPENGIST_HOME` env var in Dockerfile (#779) + +### Other +- Update deps (#776) + ## [1.14.0](https://github.com/thomiceli/opengist/compare/v1.13.1...v1.14.0) - 2026-07-21 See here how to [update](https://opengist.io/docs/update) Opengist. diff --git a/README.md b/README.md index f0c12a8..9e154c3 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ It is similar to [GitHub Gist](https://gist.github.com/), but open-source and co Docker [images](https://github.com/thomiceli/opengist/pkgs/container/opengist) are available for each release : ```shell -docker pull ghcr.io/thomiceli/opengist:1.14 +docker pull ghcr.io/thomiceli/opengist:1.15.0 ``` It can be used in a `docker-compose.yml` file : @@ -50,7 +50,7 @@ It can be used in a `docker-compose.yml` file : ```yml services: opengist: - image: ghcr.io/thomiceli/opengist:1.14 + image: ghcr.io/thomiceli/opengist:1.15.0 container_name: opengist restart: unless-stopped ports: @@ -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.14.0/opengist1.14.0-linux-amd64.tar.gz +wget https://github.com/thomiceli/opengist/releases/download/v1.15.0/opengist1.15.0-linux-amd64.tar.gz -tar xzvf opengist1.14.0-linux-amd64.tar.gz +tar xzvf opengist1.15.0-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 a61290a..80a33a5 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -193,7 +193,7 @@ export default defineConfig({ ] }, { - text: 'v1.14.0', + text: 'v1.15.0', items: [ { text: 'Changelog', link: '/changelog' }, { text: 'Releases', link: 'https://github.com/thomiceli/opengist/releases' }, diff --git a/docs/.vitepress/theme/components/home/Hero.vue b/docs/.vitepress/theme/components/home/Hero.vue index 6bb7383..c99d330 100644 --- a/docs/.vitepress/theme/components/home/Hero.vue +++ b/docs/.vitepress/theme/components/home/Hero.vue @@ -1,8 +1,8 @@