From b41a80a3357f3dbc4dedc8ea987b6ab1838015c7 Mon Sep 17 00:00:00 2001 From: Thomas Miceli Date: Tue, 9 Jun 2026 04:19:30 +0700 Subject: [PATCH] v1.13.0 Signed-off-by: Thomas Miceli --- CHANGELOG.md | 17 +++++++++++++++++ README.md | 8 ++++---- docs/.vitepress/config.mts | 2 +- docs/installation.md | 1 + docs/installation/binary.md | 4 ++-- docs/installation/source.md | 2 +- docs/update.md | 4 ++-- helm/opengist/CHANGELOG.md | 4 ++++ helm/opengist/Chart.yaml | 4 ++-- helm/opengist/README.md | 2 +- helm/opengist/values.yaml | 2 +- 11 files changed, 36 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f310cd..6001b31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [1.13.0](https://github.com/thomiceli/opengist/compare/v1.12.2...v1.13.0) - 2026-06-09 +See here how to [update](https://opengist.io/docs/update) Opengist. + +### Added +- REST API (#707) (#711) (#702) +- Limit display if there is too much files in one gist (#701) +- Topics git push option in post-receive hook (#698) +- Allow embedding Gists for a certain file only (#709) +- Arabic Translation (#706) + +### Fixed +- Server SSH key generation (#708) + +### Other +- Update deps Golang, JS, Docker deps (#713) +- New docs website (#710) + ## [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. diff --git a/README.md b/README.md index 8656d72..c79a58d 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.12 +docker pull ghcr.io/thomiceli/opengist:1.13 ``` 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.12 + image: ghcr.io/thomiceli/opengist:1.13 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.12.2/opengist1.12.2-linux-amd64.tar.gz +wget https://github.com/thomiceli/opengist/releases/download/v1.13.0/opengist1.13.0-linux-amd64.tar.gz -tar xzvf opengist1.12.2-linux-amd64.tar.gz +tar xzvf opengist1.13.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 847ccd3..25ba6ef 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -210,7 +210,7 @@ export default defineConfig({ {icon: 'discord', link: 'https://discord.gg/9Pm3X5scZT'} ], editLink: { - pattern: 'https://github.com/thomiceli/opengist/edit/v.1.12.2/docs/:path' + pattern: 'https://github.com/thomiceli/opengist/edit/master/docs/:path' }, // @ts-ignore lastUpdated: true, diff --git a/docs/installation.md b/docs/installation.md index 821aa2e..f46728a 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -7,5 +7,6 @@ description: Install Opengist with Docker, Kubernetes, a prebuilt binary, or fro There are several ways to install Opengist, depending on your preferences and your environment. - [Docker](installation/docker.md) +- [Kubernetes](installation/kubernetes.md) - [Source](installation/source.md) - [Binary](installation/binary.md) diff --git a/docs/installation/binary.md b/docs/installation/binary.md index 681eb21..1878a8e 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.2/opengist1.12.2-linux-amd64.tar.gz +wget https://github.com/thomiceli/opengist/releases/download/v1.13.0/opengist1.13.0-linux-amd64.tar.gz -tar xzvf opengist1.12.2-linux-amd64.tar.gz +tar xzvf opengist1.13.0-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 8affd1a..8044f00 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.2 # optional, to checkout the latest release +git checkout v1.13.0 make ./opengist diff --git a/docs/update.md b/docs/update.md index 71c5697..477ac4f 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.2/opengist1.12.2-linux-amd64.tar.gz +wget https://github.com/thomiceli/opengist/releases/download/v1.13.0/opengist1.13.0-linux-amd64.tar.gz -tar xzvf opengist1.12.2-linux-amd64.tar.gz +tar xzvf opengist1.13.0-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 882e95a..f491cd4 100644 --- a/helm/opengist/CHANGELOG.md +++ b/helm/opengist/CHANGELOG.md @@ -1,5 +1,9 @@ # Helm Chart Changelog +# 0.8.0 - 2026-06-09 + +- Bump Opengist image to 1.13.0 + # 0.7.0 - 2026-03-14 - Bump Opengist image to 1.12.2 diff --git a/helm/opengist/Chart.yaml b/helm/opengist/Chart.yaml index e598ab5..f40c8ca 100644 --- a/helm/opengist/Chart.yaml +++ b/helm/opengist/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: opengist description: Opengist Helm chart for Kubernetes type: application -version: 0.7.0 -appVersion: 1.12.2 +version: 0.8.0 +appVersion: 1.13.0 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 e22ad92..ae697c0 100644 --- a/helm/opengist/README.md +++ b/helm/opengist/README.md @@ -1,6 +1,6 @@ # Opengist Helm Chart -![Version: 0.7.0](https://img.shields.io/badge/Version-0.7.0-informational?style=flat-square) ![AppVersion: 1.12.2](https://img.shields.io/badge/AppVersion-1.12.2-informational?style=flat-square) +![Version: 0.8.0](https://img.shields.io/badge/Version-0.8.0-informational?style=flat-square) ![AppVersion: 1.13.0](https://img.shields.io/badge/AppVersion-1.13.0-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 be31a18..bb173de 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.2" + tag: "1.13.0" digest: "" imagePullSecrets: [] # - name: "image-pull-secret"