v1.14.0
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
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

This commit is contained in:
Thomas Miceli
2026-07-21 13:32:56 +02:00
parent 25f88ed61e
commit c7fe438feb
11 changed files with 63 additions and 19 deletions
+43 -3
View File
@@ -1,10 +1,50 @@
# Changelog
## [Unreleased]
## [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.
### Added
- Seed a user/admin account at install time from the CLI (`admin create-user`), enabling automated provisioning with tools like Ansible (#750)
- Open Graph and Twitter Card meta tags on gist pages for rich social sharing previews in Discord/Slack/IRC clients (#756)
- Gist expiration + scheduled actions (#726)
- Archive gists (#739)
- Avatar upload (#730)
- Push to gists with access tokens (#752)
- Seed user/admin account via CLI (#750)
- Open Graph and Twitter Card meta tags on gist pages (#756)
- OpenSSH support (#735)
- PKCE for OAuth providers (#720)
- GitHub alerts in Markdown (#721)
- Mermaid (`.mmd`) file rendering support (#741)
- Syntax highlighting for Salesforce Apex language (#725)
- Codemirror highlighting and comment shortcut (#742)
- Confirmation prompt before deleting a file in the editor (#740)
- Default sort gists user preference (#744)
- Embedding light, dark and auto themes (#718)
- Allow copying embedded gists (#719)
- Option to disable file upload (#737)
- `HEAD` endpoint for raw and download file (#748)
- Log path config (#745)
- PostgreSQL & MySQL socket connections (#733)
- IPv6 literals support (#749)
- Allow underscores in usernames (#703)
- `rel="canonical"` link tag (#732)
- Rootless Docker image (#716)
- Korean (ko-KR) translation (#767)
### Fixed
- Improve Git handler security (#769)
- Improve git `/init` with correlation token (#751)
- Fix fatal startup error on unparseable git version (#731)
- Fix actions db (#761)
- Move users avatar directory (#760)
- Better handler for committed HTTP responses (#734)
- Sanitize DOM for ipynb rendering (#736)
- Add `no-store` header for embedded js (#724)
- Make ssh import failure a warning (#705)
### Other
- Package prebuilt frontend assets as webdist tarball (#768)
- Update deps (#762)
- Update community page with Pi share extension + gistviewer links (#755)
## [1.13.1](https://github.com/thomiceli/opengist/compare/v1.13.0...v1.13.1) - 2026-06-10
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.13
docker pull ghcr.io/thomiceli/opengist:1.14
```
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.13
image: ghcr.io/thomiceli/opengist:1.14
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.13.1/opengist1.13.1-linux-amd64.tar.gz
wget https://github.com/thomiceli/opengist/releases/download/v1.14.0/opengist1.14.0-linux-amd64.tar.gz
tar xzvf opengist1.13.1-linux-amd64.tar.gz
tar xzvf opengist1.14.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.13.1',
text: 'v1.14.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.13'
const dockerCommand = 'docker run -p 6157:6157 -v "$HOME/.opengist:/opengist" ghcr.io/thomiceli/opengist:1.13'
const version = 'v1.14'
const dockerCommand = 'docker run -p 6157:6157 -v "$HOME/.opengist:/opengist" ghcr.io/thomiceli/opengist:1.14'
const stars = ref(null)
const formattedStars = computed(() => {
+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.13.1/opengist1.13.1-linux-amd64.tar.gz
wget https://github.com/thomiceli/opengist/releases/download/v1.14.0/opengist1.14.0-linux-amd64.tar.gz
tar xzvf opengist1.13.1-linux-amd64.tar.gz
tar xzvf opengist1.14.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.13.1
git checkout v1.14.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.13.1/opengist1.13.1-linux-amd64.tar.gz
wget https://github.com/thomiceli/opengist/releases/download/v1.14.0/opengist1.14.0-linux-amd64.tar.gz
tar xzvf opengist1.13.1-linux-amd64.tar.gz
tar xzvf opengist1.14.0-linux-amd64.tar.gz
cd opengist
chmod +x opengist
./opengist # with or without `--config config.yml`
+4
View File
@@ -1,5 +1,9 @@
# Helm Chart Changelog
# 0.10.0 - 2026-07-21
- Bump Opengist image to 1.14.0
# 0.9.0 - 2026-06-10
- Bump Opengist image to 1.13.1
+2 -2
View File
@@ -2,8 +2,8 @@ apiVersion: v2
name: opengist
description: Opengist Helm chart for Kubernetes
type: application
version: 0.9.0
appVersion: 1.13.1
version: 0.10.0
appVersion: 1.14.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.8.0](https://img.shields.io/badge/Version-0.8.0-informational?style=flat-square) ![AppVersion: 1.13.1](https://img.shields.io/badge/AppVersion-1.13.1-informational?style=flat-square)
![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)
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.13.1"
tag: "1.14.0"
digest: ""
imagePullSecrets: []
# - name: "image-pull-secret"