v1.15.0
Go CI / Build (1.26, windows-latest) (push) Has been cancelled
Go CI / Build (1.26, macOS-latest) (push) Has been cancelled
Go CI / Build (1.26, ubuntu-latest) (push) Has been cancelled
Go CI / Lint (push) Has been cancelled
Go CI / Check (push) Has been cancelled
Go CI / Test (mysql, 1.26, mysql:8, ubuntu-latest, 3306:3306) (push) Has been cancelled
Go CI / Test (postgres, 1.26, postgres:16, ubuntu-latest, 5432:5432) (push) Has been cancelled
Go CI / Test (sqlite, 1.26, macOS-latest) (push) Has been cancelled
Go CI / Test (sqlite, 1.26, ubuntu-latest) (push) Has been cancelled

This commit is contained in:
Thomas Miceli
2026-07-30 19:44:32 +02:00
parent a7b4f6df31
commit 31e3f9d3ce
11 changed files with 44 additions and 17 deletions
+22
View File
@@ -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.
+4 -4
View File
@@ -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`
+1 -1
View File
@@ -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' },
@@ -1,8 +1,8 @@
<script setup>
import { ref, computed, onMounted, onBeforeUnmount } from 'vue'
const version = 'v1.14'
const dockerCommand = 'docker run -p 6157:6157 -v "$HOME/.opengist:/opengist" ghcr.io/thomiceli/opengist:1.14'
const version = 'v1.15'
const dockerCommand = 'docker run -p 6157:6157 -v "$HOME/.opengist:/opengist" ghcr.io/thomiceli/opengist:1.15'
const stars = ref(null)
const formattedStars = computed(() => {
@@ -61,7 +61,7 @@ onBeforeUnmount(() => clearTimeout(timer))
rel="noopener noreferrer"
>
<span class="og-badge__dot" />
{{ version }} released: Restful API + brand new docs page
{{ version }} released: Major UI rework
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" class="og-badge__arrow">
<path stroke-linecap="round" stroke-linejoin="round" d="m9 6 6 6-6 6" />
</svg>
+2 -2
View File
@@ -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.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`
+1 -1
View File
@@ -10,7 +10,7 @@ Requirements:
git clone https://github.com/thomiceli/opengist
cd opengist
git checkout v1.14.0
git checkout v1.15.0
make
./opengist
+2 -2
View File
@@ -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.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`
+5
View File
@@ -1,5 +1,10 @@
# Helm Chart Changelog
# 0.11.0 - 2026-07-30
- Bump Opengist image to 1.15.0
- Bind strategy configuration to deployment
# 0.10.0 - 2026-07-21
- Bump Opengist image to 1.14.0
+2 -2
View File
@@ -2,8 +2,8 @@ apiVersion: v2
name: opengist
description: Opengist Helm chart for Kubernetes
type: application
version: 0.10.0
appVersion: 1.14.0
version: 0.11.0
appVersion: 1.15.0
home: https://opengist.io
icon: https://raw.githubusercontent.com/thomiceli/opengist/master/public/img/opengist.svg
sources:
+1 -1
View File
@@ -1,6 +1,6 @@
# Opengist Helm Chart
![Version: 0.10.0](https://img.shields.io/badge/Version-0.10.0-informational?style=flat-square) ![AppVersion: 1.14.0](https://img.shields.io/badge/AppVersion-1.14.0-informational?style=flat-square)
![Version: 0.11.0](https://img.shields.io/badge/Version-0.11.0-informational?style=flat-square) ![AppVersion: 1.15.0](https://img.shields.io/badge/AppVersion-1.15.0-informational?style=flat-square)
Opengist Helm chart for Kubernetes. Check [CHANGELOG.md](CHANGELOG.md) for release notes.
+1 -1
View File
@@ -18,7 +18,7 @@ configExistingSecret: ""
image:
repository: ghcr.io/thomiceli/opengist
pullPolicy: Always
tag: "1.14.0"
tag: "1.15.0"
digest: ""
imagePullSecrets: []
# - name: "image-pull-secret"