mirror of
https://github.com/thomiceli/opengist.git
synced 2026-08-07 07:14:49 +00:00
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
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:
@@ -1,5 +1,27 @@
|
|||||||
# Changelog
|
# 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
|
## [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.
|
See here how to [update](https://opengist.io/docs/update) Opengist.
|
||||||
|
|
||||||
|
|||||||
@@ -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.14
|
docker pull ghcr.io/thomiceli/opengist:1.15.0
|
||||||
```
|
```
|
||||||
|
|
||||||
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.14
|
image: ghcr.io/thomiceli/opengist:1.15.0
|
||||||
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.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
|
cd opengist
|
||||||
chmod +x opengist
|
chmod +x opengist
|
||||||
./opengist # with or without `--config config.yml`
|
./opengist # with or without `--config config.yml`
|
||||||
|
|||||||
@@ -193,7 +193,7 @@ export default defineConfig({
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: 'v1.14.0',
|
text: 'v1.15.0',
|
||||||
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' },
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { ref, computed, onMounted, onBeforeUnmount } from 'vue'
|
import { ref, computed, onMounted, onBeforeUnmount } from 'vue'
|
||||||
|
|
||||||
const version = 'v1.14'
|
const version = 'v1.15'
|
||||||
const dockerCommand = 'docker run -p 6157:6157 -v "$HOME/.opengist:/opengist" ghcr.io/thomiceli/opengist:1.14'
|
const dockerCommand = 'docker run -p 6157:6157 -v "$HOME/.opengist:/opengist" ghcr.io/thomiceli/opengist:1.15'
|
||||||
|
|
||||||
const stars = ref(null)
|
const stars = ref(null)
|
||||||
const formattedStars = computed(() => {
|
const formattedStars = computed(() => {
|
||||||
@@ -61,7 +61,7 @@ onBeforeUnmount(() => clearTimeout(timer))
|
|||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
>
|
>
|
||||||
<span class="og-badge__dot" />
|
<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">
|
<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" />
|
<path stroke-linecap="round" stroke-linejoin="round" d="m9 6 6 6-6 6" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
@@ -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.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
|
cd opengist
|
||||||
chmod +x opengist
|
chmod +x opengist
|
||||||
./opengist # with or without `--config config.yml`
|
./opengist # with or without `--config config.yml`
|
||||||
|
|||||||
@@ -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.14.0
|
git checkout v1.15.0
|
||||||
|
|
||||||
make
|
make
|
||||||
./opengist
|
./opengist
|
||||||
|
|||||||
+2
-2
@@ -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.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
|
cd opengist
|
||||||
chmod +x opengist
|
chmod +x opengist
|
||||||
./opengist # with or without `--config config.yml`
|
./opengist # with or without `--config config.yml`
|
||||||
|
|||||||
@@ -1,5 +1,10 @@
|
|||||||
# Helm Chart Changelog
|
# 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
|
# 0.10.0 - 2026-07-21
|
||||||
|
|
||||||
- Bump Opengist image to 1.14.0
|
- Bump Opengist image to 1.14.0
|
||||||
|
|||||||
@@ -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.10.0
|
version: 0.11.0
|
||||||
appVersion: 1.14.0
|
appVersion: 1.15.0
|
||||||
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,6 +1,6 @@
|
|||||||
# Opengist Helm Chart
|
# Opengist Helm Chart
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ configExistingSecret: ""
|
|||||||
image:
|
image:
|
||||||
repository: ghcr.io/thomiceli/opengist
|
repository: ghcr.io/thomiceli/opengist
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
tag: "1.14.0"
|
tag: "1.15.0"
|
||||||
digest: ""
|
digest: ""
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
# - name: "image-pull-secret"
|
# - name: "image-pull-secret"
|
||||||
|
|||||||
Reference in New Issue
Block a user