v1.15.1
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
Go CI / Build (1.26, macOS-latest) (push) Has been cancelled
Go CI / Build (1.26, ubuntu-latest) (push) Has been cancelled
Go CI / Build (1.26, windows-latest) (push) Has been cancelled

This commit is contained in:
Thomas Miceli
2026-08-04 08:44:01 +02:00
parent 8dce010592
commit 72c5696cd7
10 changed files with 31 additions and 19 deletions
+7
View File
@@ -1,5 +1,12 @@
# Changelog # Changelog
## [1.15.1](https://github.com/thomiceli/opengist/compare/v1.15.0...v1.15.1) - 2026-08-04
See here how to [update](https://opengist.io/docs/update) Opengist.
### Fixed
- Admin pagination with new URLs (#782)
- Stop unbounded diff content growth for large files (#787)
## [1.15.0](https://github.com/thomiceli/opengist/compare/v1.14.0...v1.15.0) - 2026-07-30 ## [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. 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 : Docker [images](https://github.com/thomiceli/opengist/pkgs/container/opengist) are available for each release :
```shell ```shell
docker pull ghcr.io/thomiceli/opengist:1.15.0 docker pull ghcr.io/thomiceli/opengist:1.15.1
``` ```
It can be used in a `docker-compose.yml` file : 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 ```yml
services: services:
opengist: opengist:
image: ghcr.io/thomiceli/opengist:1.15.0 image: ghcr.io/thomiceli/opengist:1.15.1
container_name: opengist container_name: opengist
restart: unless-stopped restart: unless-stopped
ports: ports:
@@ -77,9 +77,9 @@ Download the archive for your system from the release page [here](https://github
```shell ```shell
# example for linux amd64 # example for linux amd64
wget https://github.com/thomiceli/opengist/releases/download/v1.15.0/opengist1.15.0-linux-amd64.tar.gz wget https://github.com/thomiceli/opengist/releases/download/v1.15.1/opengist1.15.1-linux-amd64.tar.gz
tar xzvf opengist1.15.0-linux-amd64.tar.gz tar xzvf opengist1.15.1-linux-amd64.tar.gz
cd opengist cd opengist
chmod +x opengist chmod +x opengist
./opengist # with or without `--config config.yml` ./opengist # with or without `--config config.yml`
+1 -1
View File
@@ -193,7 +193,7 @@ export default defineConfig({
] ]
}, },
{ {
text: 'v1.15.0', text: 'v1.15.1',
items: [ items: [
{ text: 'Changelog', link: '/changelog' }, { text: 'Changelog', link: '/changelog' },
{ text: 'Releases', link: 'https://github.com/thomiceli/opengist/releases' }, { text: 'Releases', link: 'https://github.com/thomiceli/opengist/releases' },
+2 -2
View File
@@ -4,9 +4,9 @@ Download the archive for your system from the release page [here](https://github
```shell ```shell
# example for linux amd64 # example for linux amd64
wget https://github.com/thomiceli/opengist/releases/download/v1.15.0/opengist1.15.0-linux-amd64.tar.gz wget https://github.com/thomiceli/opengist/releases/download/v1.15.1/opengist1.15.1-linux-amd64.tar.gz
tar xzvf opengist1.15.0-linux-amd64.tar.gz tar xzvf opengist1.15.1-linux-amd64.tar.gz
cd opengist cd opengist
chmod +x opengist chmod +x opengist
./opengist # with or without `--config config.yml` ./opengist # with or without `--config config.yml`
+1 -1
View File
@@ -10,7 +10,7 @@ Requirements:
git clone https://github.com/thomiceli/opengist git clone https://github.com/thomiceli/opengist
cd opengist cd opengist
git checkout v1.15.0 git checkout v1.15.1
make make
./opengist ./opengist
+2 -2
View File
@@ -27,9 +27,9 @@ Stop the running instance; then like your first installation of Opengist, downlo
```shell ```shell
# example for linux amd64 # example for linux amd64
wget https://github.com/thomiceli/opengist/releases/download/v1.15.0/opengist1.15.0-linux-amd64.tar.gz wget https://github.com/thomiceli/opengist/releases/download/v1.15.1/opengist1.15.1-linux-amd64.tar.gz
tar xzvf opengist1.15.0-linux-amd64.tar.gz tar xzvf opengist1.15.1-linux-amd64.tar.gz
cd opengist cd opengist
chmod +x opengist chmod +x opengist
./opengist # with or without `--config config.yml` ./opengist # with or without `--config config.yml`
+10 -5
View File
@@ -1,23 +1,28 @@
# Helm Chart Changelog # Helm Chart Changelog
# 0.11.0 - 2026-07-30
## 0.12.0 - 2026-08-04
- Bump Opengist image to 1.15.1
## 0.11.0 - 2026-07-30
- Bump Opengist image to 1.15.0 - Bump Opengist image to 1.15.0
- Bind strategy configuration to deployment - Bind strategy configuration to deployment
# 0.10.0 - 2026-07-21 ## 0.10.0 - 2026-07-21
- Bump Opengist image to 1.14.0 - Bump Opengist image to 1.14.0
# 0.9.0 - 2026-06-10 ## 0.9.0 - 2026-06-10
- Bump Opengist image to 1.13.1 - Bump Opengist image to 1.13.1
# 0.8.0 - 2026-06-09 ## 0.8.0 - 2026-06-09
- Bump Opengist image to 1.13.0 - Bump Opengist image to 1.13.0
# 0.7.0 - 2026-03-14 ## 0.7.0 - 2026-03-14
- Bump Opengist image to 1.12.2 - Bump Opengist image to 1.12.2
- Add environment variables and secrets to statefulset - Add environment variables and secrets to statefulset
+2 -2
View File
@@ -2,8 +2,8 @@ apiVersion: v2
name: opengist name: opengist
description: Opengist Helm chart for Kubernetes description: Opengist Helm chart for Kubernetes
type: application type: application
version: 0.11.0 version: 0.12.0
appVersion: 1.15.0 appVersion: 1.15.1
home: https://opengist.io home: https://opengist.io
icon: https://raw.githubusercontent.com/thomiceli/opengist/master/public/img/opengist.svg icon: https://raw.githubusercontent.com/thomiceli/opengist/master/public/img/opengist.svg
sources: sources:
+1 -1
View File
@@ -1,6 +1,6 @@
# Opengist Helm Chart # Opengist Helm Chart
![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) ![Version: 0.12.0](https://img.shields.io/badge/Version-0.12.0-informational?style=flat-square) ![AppVersion: 1.15.1](https://img.shields.io/badge/AppVersion-1.15.1-informational?style=flat-square)
Opengist Helm chart for Kubernetes. Check [CHANGELOG.md](CHANGELOG.md) for release notes. Opengist Helm chart for Kubernetes. Check [CHANGELOG.md](CHANGELOG.md) for release notes.
+1 -1
View File
@@ -18,7 +18,7 @@ configExistingSecret: ""
image: image:
repository: ghcr.io/thomiceli/opengist repository: ghcr.io/thomiceli/opengist
pullPolicy: Always pullPolicy: Always
tag: "1.15.0" tag: "1.15.1"
digest: "" digest: ""
imagePullSecrets: [] imagePullSecrets: []
# - name: "image-pull-secret" # - name: "image-pull-secret"