From d746e4787d70080bbc22b37263bbfa695c1a7d72 Mon Sep 17 00:00:00 2001 From: ThetaDev Date: Sun, 19 May 2024 19:01:53 +0200 Subject: [PATCH 1/3] feat: add optional Keycloak endpoint config --- src/lib/server/auth.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/lib/server/auth.ts b/src/lib/server/auth.ts index 66016cb..b35c1a3 100644 --- a/src/lib/server/auth.ts +++ b/src/lib/server/auth.ts @@ -24,6 +24,16 @@ export const AUTH_CFG: AuthConfig = { clientId: env.KEYCLOAK_CLIENT_ID, clientSecret: env.KEYCLOAK_CLIENT_SECRET, issuer: env.KEYCLOAK_ISSUER, + /* + Optional manual OIDC endpoint config. + Normally this is configured via the issuer URL + (KEYCLOAK_ISSUER/.well-known/openid-configuration), + but if the OIDC server is available under a different + internal domain, these variables must be manually set + */ + authorization: env.KEYCLOAK_EP_AUTHORIZATION, + token: env.KEYCLOAK_EP_TOKEN, + userinfo: env.KEYCLOAK_EP_USERINFO, }), ], session: { From 03f6c5848201eff02999c6b9323ec1515d68fd5a Mon Sep 17 00:00:00 2001 From: ThetaDev Date: Sun, 19 May 2024 23:37:25 +0200 Subject: [PATCH 2/3] fix: remove test route --- src/routes/(app)/test/+page.svelte | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 src/routes/(app)/test/+page.svelte diff --git a/src/routes/(app)/test/+page.svelte b/src/routes/(app)/test/+page.svelte deleted file mode 100644 index a08fe61..0000000 --- a/src/routes/(app)/test/+page.svelte +++ /dev/null @@ -1,8 +0,0 @@ - - -
- - -
From b696ee88940f4d259b7f2287ab20b7236b08cf54 Mon Sep 17 00:00:00 2001 From: ThetaDev Date: Mon, 20 May 2024 15:11:32 +0200 Subject: [PATCH 3/3] chore(release): release v0.3.5 --- CHANGELOG.md | 22 ++++++++++++++++++++++ package.json | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e50f81d..0540fe4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,28 @@ All notable changes to this project will be documented in this file. +## [v0.3.5](https://code.thetadev.de/HSA/Visitenbuch/compare/v0.3.4..v0.3.5) - 2024-05-20 + +### 🚀 Features + +- Focus filter bar when pressing F - ([ad796dc](https://code.thetadev.de/HSA/Visitenbuch/commit/ad796dcb578b79b566559d1c22c99f0231a03251)) +- Add optional Keycloak endpoint config - ([d746e47](https://code.thetadev.de/HSA/Visitenbuch/commit/d746e4787d70080bbc22b37263bbfa695c1a7d72)) + +### 🐛 Bug Fixes + +- Dont create entry executions if entry is only postponed - ([34e54fa](https://code.thetadev.de/HSA/Visitenbuch/commit/34e54fa4afdf17e7258cbc5ccac5a3d094ee161b)) +- HumanDate capitalization - ([f4f03ab](https://code.thetadev.de/HSA/Visitenbuch/commit/f4f03ab4914f850b15acf7bb39da34b1abb587a7)) +- Filterbar does not exclude present filters from URL, text filters dont confirm when defocused - ([9ed5f15](https://code.thetadev.de/HSA/Visitenbuch/commit/9ed5f15b9ef237cc400b069928baeb920b2d3681)) +- [**breaking**] Ensure category, room and station names are unique - ([98c62ac](https://code.thetadev.de/HSA/Visitenbuch/commit/98c62ac4603fa6d7c97e1a439f613379db7a2587)) +- Allow multiple date filters - ([2a4bda7](https://code.thetadev.de/HSA/Visitenbuch/commit/2a4bda70c6cfd85b4a32989a2e19ba718cc7717e)) +- Add dumb-init to docker image - ([47f0a08](https://code.thetadev.de/HSA/Visitenbuch/commit/47f0a08ea3dbd8b1721a11c52b36c42ad56e8e29)) +- Remove test route - ([03f6c58](https://code.thetadev.de/HSA/Visitenbuch/commit/03f6c5848201eff02999c6b9323ec1515d68fd5a)) + +### ⚙️ Miscellaneous Tasks + +- Remove unused zod-form-data dependency - ([882ae66](https://code.thetadev.de/HSA/Visitenbuch/commit/882ae66a6a137259388525df2c91b8e1ed924d86)) + + ## [v0.3.4](https://code.thetadev.de/HSA/Visitenbuch/compare/v0.3.3..v0.3.4) - 2024-05-16 ### 🚀 Features diff --git a/package.json b/package.json index 67220ca..1bde82a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "visitenbuch", - "version": "0.3.4", + "version": "0.3.5", "private": true, "license": "AGPL-3.0", "scripts": {