diff --git a/CHANGELOG.md b/CHANGELOG.md index 10b4165..f53ad8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## [1.12.0](https://github.com/thomiceli/opengist/compare/v1.11.1...v1.12.0) - 2026-01-27 +See here how to [update](https://opengist.io/docs/update) Opengist. + +### Added +- Access tokens (#602) +- Fuzzy search for gist search (#555) +- Allow Unicode letters/numbers in topics (#597) +- Resize editor height (#600) +- More translation strings (#516) (#604) + +### Fixed +- Don't panic on Go TCP errors (#601) + +### Other +- Reduce footprint of Docker image (#515) +- Update Go + JS deps (#603) +- Configure Dependabot for updates on Go and NPM (#449) + +### [Helm Chart](helm/opengist) +- Use existing pvc claim of provided (#547) +- Adds StatefulSet support (#549) +- Move Prom metrics to a dedicated port + support ServiceMonitor (#599) + ## [1.11.1](https://github.com/thomiceli/opengist/compare/v1.11.0...v1.11.1) - 2025-09-30 See here how to [update](https://opengist.io/docs/update) Opengist. diff --git a/README.md b/README.md index bb3bdb9..ac926ea 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.11 +docker pull ghcr.io/thomiceli/opengist:1.12 ``` 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.11 + image: ghcr.io/thomiceli/opengist:1.12 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.11.1/opengist1.11.1-linux-amd64.tar.gz +wget https://github.com/thomiceli/opengist/releases/download/v1.12.0/opengist1.12.0-linux-amd64.tar.gz -tar xzvf opengist1.11.1-linux-amd64.tar.gz +tar xzvf opengist1.12.0-linux-amd64.tar.gz cd opengist chmod +x opengist ./opengist # with or without `--config config.yml` diff --git a/docs/.vitepress/theme/Home.vue b/docs/.vitepress/theme/Home.vue index eae5f02..ec39327 100644 --- a/docs/.vitepress/theme/Home.vue +++ b/docs/.vitepress/theme/Home.vue @@ -19,7 +19,7 @@ export default {
- Released 1.11 + Released 1.12 diff --git a/docs/contributing/development.md b/docs/contributing/development.md index 9fe9b3a..5653895 100644 --- a/docs/contributing/development.md +++ b/docs/contributing/development.md @@ -25,8 +25,8 @@ Opengist is now running on port 6157, you can browse http://localhost:6157 Requirements: * [Git](https://git-scm.com/downloads) (2.28+) -* [Go](https://go.dev/doc/install) (1.23+) -* [Node.js](https://nodejs.org/en/download/) (16+) +* [Go](https://go.dev/doc/install) (1.25+) +* [Node.js](https://nodejs.org/en/download/) (20+) * [Make](https://linux.die.net/man/1/make) (optional, but easier) ```shell diff --git a/docs/installation/binary.md b/docs/installation/binary.md index 650f473..3b2338a 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.11.1/opengist1.11.1-linux-amd64.tar.gz +wget https://github.com/thomiceli/opengist/releases/download/v1.12.0/opengist1.12.0-linux-amd64.tar.gz -tar xzvf opengist1.11.1-linux-amd64.tar.gz +tar xzvf opengist1.12.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 e22548e..733c165 100644 --- a/docs/installation/source.md +++ b/docs/installation/source.md @@ -2,15 +2,15 @@ Requirements: * [Git](https://git-scm.com/downloads) (2.28+) -* [Go](https://go.dev/doc/install) (1.23+) -* [Node.js](https://nodejs.org/en/download/) (16+) +* [Go](https://go.dev/doc/install) (1.25+) +* [Node.js](https://nodejs.org/en/download/) (20+) * [Make](https://linux.die.net/man/1/make) (optional, but easier) ```shell git clone https://github.com/thomiceli/opengist cd opengist -git checkout v1.11.1 # optional, to checkout the latest release +git checkout v1.12.0 # optional, to checkout the latest release make ./opengist diff --git a/docs/update.md b/docs/update.md index 17c6527..b773b76 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.11.1/opengist1.11.1-linux-amd64.tar.gz +wget https://github.com/thomiceli/opengist/releases/download/v1.12.0/opengist1.12.0-linux-amd64.tar.gz -tar xzvf opengist1.11.1-linux-amd64.tar.gz +tar xzvf opengist1.12.0-linux-amd64.tar.gz cd opengist chmod +x opengist ./opengist # with or without `--config config.yml` diff --git a/helm/opengist/Chart.yaml b/helm/opengist/Chart.yaml index ce750b5..b8873ca 100644 --- a/helm/opengist/Chart.yaml +++ b/helm/opengist/Chart.yaml @@ -3,7 +3,7 @@ name: opengist description: Opengist Helm chart for Kubernetes type: application version: 0.5.0 -appVersion: 1.11.1 +appVersion: 1.12.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 cae74a6..6e74218 100644 --- a/helm/opengist/README.md +++ b/helm/opengist/README.md @@ -1,8 +1,8 @@ # Opengist Helm Chart -![Version: 0.5.0](https://img.shields.io/badge/Version-0.5.0-informational?style=flat-square) ![AppVersion: 1.11.1](https://img.shields.io/badge/AppVersion-1.11.1-informational?style=flat-square) +![Version: 0.5.0](https://img.shields.io/badge/Version-0.5.0-informational?style=flat-square) ![AppVersion: 1.12.0](https://img.shields.io/badge/AppVersion-1.12.0-informational?style=flat-square) -Opengist Helm chart for Kubernetes. +Opengist Helm chart for Kubernetes. Check [CHANGELOG.md](CHANGELOG.md) for release notes. * [Install](#install) * [Configuration](#configuration) diff --git a/helm/opengist/values.yaml b/helm/opengist/values.yaml index 826dbd1..7c2cfbf 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.11.1" + tag: "1.12.0" digest: "" imagePullSecrets: [] # - name: "image-pull-secret"