1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 12:49:43 +02:00
Commit graph

418 commits

Author SHA1 Message Date
Maksim Eltyshev
3ada84527f chore: Use Node v18 2023-11-18 09:26:31 +01:00
Maksim Eltyshev
965f7cd1ed chore: Update version 2023-11-17 22:13:04 +01:00
Yu Inoue
ecf94dccc1 fix: Separate service port and container port in Helm (#549) 2023-11-17 22:11:35 +01:00
Maksim Eltyshev
bca077831b chore: Update vips version 2023-11-17 21:48:26 +01:00
Maksim Eltyshev
22aa3c4adf chore: Update dependencies 2023-11-17 14:34:10 +01:00
Yu Inoue
064b9a915c fix: Fix time format in Japanese locale (#546)
Closes #542
2023-11-13 12:51:00 +01:00
Maksim Eltyshev
9d5de93dcd chore: Update version 2023-10-25 23:41:48 +02:00
Maksim Eltyshev
d951ba59dd fix: Disable role change when OIDC roles are not ignored 2023-10-25 23:39:34 +02:00
Balthasar Hofer
e41a434fc8 feat: Add ability to ignore roles when logging in with SSO (#534)
Closes #533
2023-10-26 02:01:35 +05:00
Daniel Hiller
43f196c9e6 docs: adjust filenames to match the docs 2023-10-24 13:17:49 +02:00
Daniel Hiller
d789498c2d ci: ignore some paths on push 2023-10-22 22:47:39 +02:00
Daniel Hiller
0a507da408 chore: update version 2023-10-22 22:31:10 +02:00
Daniel Hiller
ed48090b6b fix: add admin user variables 2023-10-22 22:27:25 +02:00
Maksim Eltyshev
879878b961 chore: Update version 2023-10-20 22:38:43 +02:00
Maksim Eltyshev
4e7e57dfd9 fix: Fix logging out with invalid token 2023-10-20 22:34:58 +02:00
Maksim Eltyshev
6a09e9a984 fix: Make default admin environment variables optional
Closes #526
2023-10-20 21:52:12 +02:00
Vishnu Kaushik
e3d3130797 fix: Add task counter in card modal (#525)
Closes #467
2023-10-21 00:20:04 +05:00
Maksim Eltyshev
d820d5e5d0 ci: Do not mark released chart as latest 2023-10-19 23:30:58 +02:00
Maksim Eltyshev
4d03e5f971 chore: Update version 2023-10-19 23:08:40 +02:00
Maksim Eltyshev
ff2223c490 fix: Fallback to query if there is no fragment 2023-10-19 23:06:37 +02:00
Maksim Eltyshev
7c599d5c6f chore: Update version 2023-10-19 16:07:52 +02:00
Maksim Eltyshev
0fab6075bd ref: Refactoring 2023-10-19 16:05:34 +02:00
Lorenz Brun
9011ee61da feat: Improve OIDC SSO (#524)
The OIDC implementation merged in https://github.com/plankanban/planka/pull/491 is flawed for multiple reasons.

It assumes that the access_token returned by the IDP has to be a JWT parseable by the RP which is not the case [1].
Many major IDPs do issue tokens which are not JWTs and RPs should not rely on the contents of these at all.
The only signed token which has a standardized format for direct RP consumption is the OIDC ID token (id_token), but this by default doesn't contain many claims, especially role claims are omitted from them by default for size reasons. To get these additional claims into the ID token, one needs an IDP with support for the "claims" parameter.

It requires manual specification of the JWKS URL which is mandatory in any OIDC discovery document and thus never needs to be manually specified.

It also makes the questionable decision to use a client-side code flow with PKCE where a normal code flow would be much more appropriate as all user data is processed in the backend which can securely hold a client secret (confidential client). This has far wider IDP support, is safer (due to direct involvement of the IDP in obtaining user information) and doesn't require working with ID tokens and claim parameters.

By using a server-side code flow we can also offload most complexity to the server alone, no longer requiring an additional OIDC library on the web client.

Also silent logout doesn't work on most IDPs for security reasons, one needs to actually redirect the user over to the IDP, which then prompts them once more if they actually want to log out.

This implementation should work with any OIDC-compliant IDP and even OAuth 2.0-only IDPs as long as they serve and OIDC discovery document.

[1] rfc-editor.org/rfc/rfc6749#section-5.1
2023-10-19 17:39:21 +05:00
Maksim Eltyshev
ec9194dac7 chore: Update chart version 2023-10-18 23:33:30 +02:00
Maksim Eltyshev
2a24fc5155 chore: Update version 2023-10-18 23:20:30 +02:00
Maksim Eltyshev
1ef736106c fix: Fix order of checks when logging in 2023-10-18 23:07:57 +02:00
Maksim Eltyshev
9ea3e1ab0d Merge branch 'master' of github.com:gorrilla10101/planka 2023-10-17 22:31:16 +02:00
Maksim Eltyshev
ab9a0e91e2 chore: Update version 2023-10-17 19:31:21 +02:00
Maksim Eltyshev
afe83d2760 chore: Bump sails version 2023-10-17 19:23:09 +02:00
Maksim Eltyshev
b9716c6e3a fix: OIDC finalization and refactoring 2023-10-17 19:18:19 +02:00
Daniel Hiller
c21e9cb60a CI: Add prebuild planka package on release 2023-09-30 01:59:09 +02:00
Daniel Hiller
9e2ae17dc0 Meta: Add missing return 2023-09-23 03:48:32 +02:00
Daniel Hiller
909a2ad41a Meta: Add Automated installation 2023-09-23 03:47:46 +02:00
gorrilla10101
dd91d2b9d4 Merge branch 'plankanban:master' into master 2023-09-16 22:15:54 -05:00
Jeffrey
cfd85721a3 dynamic environment variables 2023-09-16 21:37:12 -05:00
Daniel Hiller
1dc8560618 chore: fix docker dev build 2023-09-14 01:27:29 +02:00
Daniel Hiller
21dedd00e0 chore: fix runs-on name 2023-09-13 22:55:09 +02:00
Daniel Hiller
ca42b5cb77 chore: Switch to self hostet action runner 2023-09-13 22:47:08 +02:00
Daniel Hiller
88b058ad9d chore: Add dev container, based on latest commit 2023-09-13 22:39:37 +02:00
Daniel Hiller
ff3cb6a1c8 chore: Switch to pnpm package manager 2023-09-13 22:38:37 +02:00
Maksim Eltyshev
6aefccf543 fix: Fix starting without OIDC environment variables
Closes #503
2023-09-12 01:20:21 +02:00
Maksim Eltyshev
e59535b9b4 feat: Use environment variables for default admin configuration 2023-09-12 01:12:38 +02:00
Gilberto Vidal
2dfa79801f fix: Fix Turkish translation linting (#504) 2023-09-11 22:21:46 +05:00
gorrilla10101
6941500c7b feat: OIDC with PKCE flow (#491) 2023-09-04 20:06:59 +05:00
creador30
e254443272 feat: Add Turkish translation (#501) 2023-09-04 19:41:11 +05:00
RocketProto
beaa471aca fix: Decouple BASE_URL from Ingress host (#498)
Closes #496
2023-08-27 02:26:45 +05:00
Andrey
d91b047be4 fix: Update Russian translation (#497) 2023-08-22 14:34:45 +05:00
Maksim Eltyshev
ae14f97592 fix: Fix Czech translation linting
Closes #487
2023-07-31 11:54:50 +02:00
leroyloren
c4cc715443 fix: Update Czech translation (#485) 2023-07-27 04:07:47 +05:00
[object Object]
1bd0c2b2c1 feat: Add edit icon to project name (#457) 2023-07-09 20:49:08 +05:00