Commit Graph

289 Commits (6251b0a08abe54964464487c361a87103689ea0e)

Author SHA1 Message Date
Maksim Eltyshev f1c72df8b6 chore: Update version 2 years ago
Maksim Eltyshev 5056d38848 fix: Fix logging out with invalid token 2 years ago
Vishnu Kaushik ded58dc8b0
fix: Add task counter in card modal (#525)
Closes #467
2 years ago
Maksim Eltyshev fc2f4cd5d3 chore: Update version 2 years ago
Maksim Eltyshev 7ef457157e fix: Fallback to query if there is no fragment 2 years ago
Maksim Eltyshev 23ee815200 chore: Update version 2 years ago
Maksim Eltyshev 40c04c35ff ref: Refactoring 2 years ago
Lorenz Brun 743f2956c8
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
2 years ago
Maksim Eltyshev 667c5daf25 chore: Update version 2 years ago
Maksim Eltyshev 3ac2d289d0 chore: Update version 2 years ago
Maksim Eltyshev 8e0c60f5be fix: OIDC finalization and refactoring 2 years ago
Maksim Eltyshev 91bc889fed feat: Use environment variables for default admin configuration 2 years ago
Gilberto Vidal a34d8e9753
fix: Fix Turkish translation linting (#504) 2 years ago
gorrilla10101 107cb85ba2
feat: OIDC with PKCE flow (#491) 2 years ago
creador30 9333ef562e
feat: Add Turkish translation (#501) 2 years ago
Andrey 5317950b5c
fix: Update Russian translation (#497) 2 years ago
Maksim Eltyshev 7501619b7e fix: Fix Czech translation linting
Closes #487
2 years ago
leroyloren 080e29aa03
fix: Update Czech translation (#485) 2 years ago
[object Object] 48c532b2c2
feat: Add edit icon to project name (#457) 2 years ago
Maksim Eltyshev a62815f825 ref: Little refactoring 3 years ago
Maksim Eltyshev 6938232dc4 fix: Keep task edits when textarea loses focus 3 years ago
[object Object] 4c4cfa9c66
fix: Keep comment edits when textarea loses focus (#443)
Closes #441
3 years ago
Maksim Eltyshev 5c435414f7 chore: Update version 3 years ago
Maksim Eltyshev 2d7812a679 fix: Use creation timestamp instead of id for ordering
Closes #465
3 years ago
ULiiAn 6c4db967c2
fix: Fix Chinese translation (#464)
Closes #463
3 years ago
Zsh 23e2b4a622
fix: Update Chinese translation (#410) 3 years ago
LuisLiu f4cc51e1c0
feat: Add Chinese translation (#398) 3 years ago
Maksim Eltyshev 02eabd203c chore: Update version 3 years ago
Maksim Eltyshev d0a2734161 fix: Rename timer to stopwatch
Closes #392
3 years ago
Maksim Eltyshev 7e2b74627c fix: Prevent board from scrolling when it starts with non-left-click 3 years ago
Maksim Eltyshev 8dd331b895 fix: Fix paths in css files when building on windows 3 years ago
Maksim Eltyshev b9e64d4e91 chore: Update version 3 years ago
Maksim Eltyshev 9d35b8535b feat: Display current project and board in page title 3 years ago
Maksim Eltyshev d622b9df4e fix: Fix line breaks in task preview
Closes #391
3 years ago
Maksim Eltyshev 8a46a2e0b9 ref: Creating popups with hook, fix translation keys passing 3 years ago
Maksim Eltyshev 0d86351d62 chore: Update version 3 years ago
Maksim Eltyshev 3a7e4d2e8f fix: Fix markdown styles and card description font size 3 years ago
Maksim Eltyshev 1bb387d315 feat: Display version in UI
Closes #153
3 years ago
Maksim Eltyshev 38eab8b166 ref: Prettify eslint-disables 3 years ago
Maksim Eltyshev aa69bb8d1e feat: Labels reordering
Closes #289
3 years ago
dependabot[bot] d627a19935
chore(deps): Bump json5 from 1.0.1 to 1.0.2 in /client (#370)
Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2.
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](https://github.com/json5/json5/compare/v1.0.1...v1.0.2)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3 years ago
RAR ed89fe5351
feat: Open card once created with Ctrl+Enter (#373) 3 years ago
Maksim Eltyshev 6021d67a00 fix: Subscribe only when needed 3 years ago
albanobattistella 7182a09931
fix: Update Italian translation (#363) 3 years ago
Maksim Eltyshev d21dee05a3 fix: Show completed tasks greyed out 3 years ago
Maksim Eltyshev 1dacd6e700 fix: Prevent scroll when focusing 3 years ago
Maksim Eltyshev 6ffa817b53 ref: Remove board types, refactoring 3 years ago
Maksim Eltyshev 8d477af498 fix: Fix active tab style 3 years ago
Maksim Eltyshev 32507f2799 fix: Add missing translation key 3 years ago
Maksim Eltyshev 0a5210dd21 feat: Preserve original format of images, change interpolation kernel
Closes #349
3 years ago
Maksim Eltyshev b82a601f46 fix: Increase height of scroll area in popups 3 years ago
Christoph Enne 738ed19e7f
feat: Trello board JSON import (#352)
Closes #27, closes #105
3 years ago
Maksim Eltyshev a8d312922a fix: Fix error on initial loading
Closes #347
3 years ago
Maksim Eltyshev 4941b51fa4 fix: Prevent popup from overflowing 3 years ago
Maksim Eltyshev a858419f3c fix: Fix router synchronization with redux store 3 years ago
Maksim Eltyshev db4e5a89f9 fix: Improve building 3 years ago
Maksim Eltyshev 5afd4af897 ref: Little refactoring 3 years ago
Maksim Eltyshev b0d23373c0 chore: Update dependencies 3 years ago
Rafly Maulana 5381d45e50
meta: Share global eslint config, move prettier config (#339) 3 years ago
Maksim Eltyshev 409a7cde6b fix: Fix notifications popup styles 3 years ago
Maksim Eltyshev f62cba9bcd fix: Fix board actions for mobile 3 years ago
Maksim Eltyshev 9495234066 ref: Little refactoring 3 years ago
Rafly Maulana 5dcbad7b5a
feat: Add markdown editor in card description (#333) 3 years ago
Maksim Eltyshev 064b37050c fix: Hide label actions based on role 3 years ago
Maksim Eltyshev 00fccbaa3d fix: Fix z-indexes 3 years ago
Maksim Eltyshev e051f624a8 ref: Little change for consistency 3 years ago
Connor Lanigan 4e876922f8
feat: Prefill label creation with search term (#307) 3 years ago
Connor Lanigan d82d928e29
fix: Update German translation (#306) 3 years ago
Jacques Lorentz b08e731419
fix: Front-end base url with path (#303)
Closes #43, closes #111, closes #272
3 years ago
Maksim Eltyshev e3d00c8791 fix: Disable quick timer actions for viewers 3 years ago
Maksim Eltyshev e1a0b635ea ref: Little refactoring 3 years ago
Maksim Eltyshev 56044e6d8a ref: Fix filename 3 years ago
Maksim Eltyshev e5bd73f33e fix: Prevent popup from leaving window 3 years ago
Maksim Eltyshev e65ab6ece7 fix: Fix flag for English 3 years ago
Maksim Eltyshev 14cc55a8c0 feat: Highlight active timer, add quick actions 3 years ago
Maksim Eltyshev b4306d0a4b fix: Fix font of timer numbers 3 years ago
Maksim Eltyshev 283c850ebf feat: Add about pane 3 years ago
Maksim Eltyshev 62de71bd97 fix: Visually highlight card cover 3 years ago
Maksim Eltyshev 8109936ce2 feat: Invalidate access token on logout 3 years ago
Maksim Eltyshev 640908320a ref: Remove unused style 3 years ago
Maksim Eltyshev 3df07c10fa fix: Use password strength estimator
Closes #294
3 years ago
Maksim Eltyshev 95738ee7d3 fix: Add missing validation for password 3 years ago
Maksim Eltyshev 253af55790 fix: Add password requirements when creating user
Closes #293
3 years ago
Maksim Eltyshev 62c3cca9a7 fix: Fix password length validation 3 years ago
Maksim Eltyshev 3379c65a87 fix: Prevent tabnabbing in markdown 3 years ago
Maksim Eltyshev 42092efcd2 fix: Remove dots in translations 3 years ago
Maksim Eltyshev 5c91bddfe7 feat: Stronger password policy 3 years ago
Maksim Eltyshev 212fb8ac8c fix: Add missing border radius 3 years ago
Maksim Eltyshev 5a38805588 feat: Add Italian translation. Thanks to @belf88 3 years ago
Maksim Eltyshev 2dbbead2e9 fix: Add missing border radiuses 3 years ago
Maksim Eltyshev 039eee0aac ref: Little refactoring 3 years ago
Maksim Eltyshev 21ef850913 fix: Fix missed function name 3 years ago
Maksim Eltyshev 51fa7df69c feat: Permissions for board members
Closes #262
3 years ago
Maksim Eltyshev d80a538857 fix: Little improvements in users modal 3 years ago
Maksim Eltyshev 78669da01d feat: Add search by users, members and labels 3 years ago
Maksim Eltyshev eea94e0ee2 ref: Little change for consistency 3 years ago
SimonTagne 7786533a90
feat: Improve security of access tokens (#279)
Closes #275
3 years ago
Maksim Eltyshev 3714bbc06f ref: Refactoring 3 years ago
Maksim Eltyshev a9111bf7ba feat: Add Korean translation. Thanks to @chooya 3 years ago
Maksim Eltyshev 2d50211892 fix: Fix label style 3 years ago