Skip to content

Releases: fief-dev/fief

v0.25.1

01 Jun 14:47
v0.25.1
ec062e6
Compare
Choose a tag to compare

Bump version 0.25.0 → 0.25.1

Bug fixes

  • Fix domain authentication modal not showing when loaded directly
  • Fix transactional emails not being able to be sent because of missing lazy loading on Tenant model

v0.25.0

01 Jun 14:47
v0.25.0
8146379
Compare
Choose a tag to compare

Bump version 0.24.9 → 0.25.0

New features and improvements

  • Configure the From Name and Email Address of your transactional emails!
    • They can be set per tenant
    • Domain authentication is supported on Sendgrid. Postmark support coming soon.
    • Already available to all Fief Cloud users 🚀
  • Bump dependencies

v0.24.9

30 May 06:39
v0.24.9
e7157ef
Compare
Choose a tag to compare

Bump version 0.24.8 → 0.24.9

Bug fixes

  • Fix bug with email template preview when a UserFieldValue is None

v0.24.8

30 May 06:39
v0.24.8
2f0898f
Compare
Choose a tag to compare

Bump version 0.24.7 → 0.24.8

Improvements

  • Bump dependencies

v0.24.7

25 May 18:21
v0.24.7
c871252
Compare
Choose a tag to compare

Bump version 0.24.6 → 0.24.7

Bug fixes

  • Fix #201: run server CLI is failing because of missing parameter in migrate_workspaces

v0.24.6

25 May 17:19
v0.24.6
9c4f068
Compare
Choose a tag to compare

Bump version 0.24.5 → 0.24.6

Bug fixes

  • Fix workspaces migrate command for BYOD workspaces

v0.24.5

25 May 14:46
v0.24.5
f885a67
Compare
Choose a tag to compare

Bump version 0.24.4 → 0.24.5

Improvements

  • Add query filters to Users API and Admin dashboard.
  • SECRETS_DIR setting is no longer set by default to avoid Pydantic warning.
    • It's still set by default in the Docker image.
  • migrate workspaces command optimizations to speed-up DB migrations when we have lot of workspaces.

v0.24.4

21 May 07:58
v0.24.4
b80effd
Compare
Choose a tag to compare

Bump version 0.24.3 → 0.24.4

New features

  • Docker secrets support: sensitive settings can be set through secrets file instead of environment variables.
    • By default, secrets will be searched in /run/secrets, but can be customized by setting the SECRETS_DIR environment variable.
    • Thanks @oaltun for the idea and implementation

Bug fixes

  • Fix #193: Impossible to authenticate through OAuth Provider when /login without a login session
  • Fix quickstart CLI command

v0.24.3

14 May 12:42
v0.24.3
25fc04a
Compare
Choose a tag to compare

Bump version 0.24.2 → 0.24.3

New features

  • Add password strength validation using the zxcvbn algorithm.
  • Re-add Admin API to generate access token programmatically for a given user. Thanks @Kh-Oleg for the idea 🎉
    • Endpoint: /admin/api/users/access-token
  • Add CLI command to create Admin API key. Thanks @Kh-Oleg for the idea 🎉
    • fief workspaces create-main-admin-api-key TheTokenYouWantToUse
  • Add environment variable to create Admin API key at startup. Thanks @Kh-Oleg for the idea 🎉
    • FIEF_MAIN_ADMIN_API_KEY=TheTokenYouWantToUse

Bug fixes

  • Fix #166: UserFieldConfiguration doesn't comply with the schema when created from dashboard.
  • Fix #181: write audit logs in the background worker to avoid race conditions with SQLite. Thanks @Kh-Oleg for the report 🎉
  • Fix #189: role update fails to send task to worker

v0.24.2

28 Apr 09:59
v0.24.2
9acbcd7
Compare
Choose a tag to compare

Bump version 0.24.1 → 0.24.2

Bug fixes

  • Fix server error with telemetry when workspace is unknown.