Skip to content

Releases: authorizerdev/authorizer

0.9.2

29 Jan 11:34

Choose a tag to compare

Fixes

  • Fix issue with persisting env data in postgres #110

0.9.1

27 Jan 04:42

Choose a tag to compare

Fixes

  • Fixes default organization logo

0.9.0

25 Jan 17:29

Choose a tag to compare

Fixes

Features

  • Add dashboard to manage the environment variables
  • Add pagination for _users and _verification_requests
  • Add query to validate jwt token is_valid_jwt

0.8.5

10 Jan 05:20

Choose a tag to compare

Fixes

  • Fix getting the meta-information about GitHub login

0.8.4

08 Jan 17:53

Choose a tag to compare

Fixes

  • Fix setting basic_auth as login method for users signed up via other means. i.e. set email_verfied_at when a user does forget the password
  • Update app version

0.8.3

08 Jan 08:40

Choose a tag to compare

Features

0.8.2

07 Jan 16:12
2137d8e

Choose a tag to compare

Fixes

  • Fixes smtp.SendMail(...) from param

0.8.1

07 Jan 14:03
303a3cb

Choose a tag to compare

Features

  • Improves SMTP env variable names + support SENDER_EMAIL that will be used as From email #94
    Rename:

    SENDER_EMAIL -> SMTP_USERNAME
    SENDER_PASSWORD -> SMTP_PASSWORD
    SENDER_EMAIL -> Used as From in email

0.8.1.test.1

28 Dec 23:44

Choose a tag to compare

Testing new github action flow

0.8.0

24 Dec 13:55

Choose a tag to compare

Features

  • Use standard JWT claims as per OpenID specs #84
  • Refactor GraphQL schema as per standard claims
  • Refactor DB schema as per standard claims
  • Use snake_case instead of camelCase as per OpenID standards
  • Added automated testing for all Resolvers and Databases #25

Major Changes

  • token query becomes session

  • magicLogin mutation becomes magic_link_login

  • users query becomes _users

  • verificationRequests query becomes _verification_requests

  • deleteUser mutation becomes _delete_user

  • adminUpdateUser mutation becomes _update_user

  • all the response variables are now using snake_case instead of camelCase

  • accessTokenExpiresAt in all the session apis becomes expires_at

  • Changes in user schema

    Renamed fields

    • firstName - given_name
    • lastName - family_name
    • image - picture
    • signupMethod - signup_methods
    • emailVerifiedAt - email_verified(bool)

    Newly added fields

    • middle_name
    • nickname
    • preferred_username
    • gender
    • birthdate
    • phone_number
    • phone_number_verified