From a08cd2e8f18f7d5bd6d839ba18f49bcb7cab43e4 Mon Sep 17 00:00:00 2001 From: Marc Ole Bulling Date: Wed, 7 Feb 2024 16:27:40 +0100 Subject: [PATCH] Updated version number and changelog --- cmd/gokapi/Main.go | 2 +- docs/changelog.rst | 10 ++++++++++ internal/webserver/web/templates/string_constants.tmpl | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/cmd/gokapi/Main.go b/cmd/gokapi/Main.go index 328adfe..e31b62d 100644 --- a/cmd/gokapi/Main.go +++ b/cmd/gokapi/Main.go @@ -31,7 +31,7 @@ import ( // versionGokapi is the current version in readable form. // Other version numbers can be modified in /build/go-generate/updateVersionNumbers.go -const versionGokapi = "1.8.0" +const versionGokapi = "1.8.1" // The following calls update the version numbers, update documentation, minify Js/CSS and build the WASM modules //go:generate go run "../../build/go-generate/updateVersionNumbers.go" diff --git a/docs/changelog.rst b/docs/changelog.rst index 983e745..53406c7 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -7,6 +7,16 @@ Changelog Overview of all Changes ----------------------- +v1.8.1: 7 Feb 2024 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +* Reworked OIDC authentication, added support for Groups, use consent instead of selec_account, better error handling +* Added wildcard support for OIDC groups and users +* Fixed crash on client timeout #125 +* Added /auth/create API endpoint for creating API keys +* Minor changes and fixes + + v1.8.0: 9 Dec 2023 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ * Changed Database to Sqlite3 diff --git a/internal/webserver/web/templates/string_constants.tmpl b/internal/webserver/web/templates/string_constants.tmpl index 8fb9405..6ac4d50 100644 --- a/internal/webserver/web/templates/string_constants.tmpl +++ b/internal/webserver/web/templates/string_constants.tmpl @@ -1,5 +1,5 @@ // Change these for rebranding -{{define "version"}}1.8.0{{end}} +{{define "version"}}1.8.1{{end}} // Specifies the version of JS files, so that the browser doesn't // use a cached version, if the file has been updated