Skip to content

Releases: fief-dev/fief-js

v0.12.1

20 Feb 11:01
d4c43a2
Compare
Choose a tag to compare

0.12.1

Improvements

  • React integration: save auth state in sessionStorage so it's preserved between page reloads

v0.12.0

20 Jan 10:26
347005e
Compare
Choose a tag to compare

0.12.0

Improvements

  • Browser integration: allow to pass optional parameters to redirectToLogin. [Documentation]

v0.11.0

09 Jan 08:44
45ece8e
Compare
Choose a tag to compare

0.11.0

New features

  • Add support for lang parameter to set the locale of the user on authentication pages. [Documentation]

v0.10.2

15 Nov 10:53
e3ccbf6
Compare
Choose a tag to compare

0.10.2

Bug fixes

  • Fix a bundling issue around crypto with React and Webpack

v0.10.1

26 Oct 11:48
eaf043b
Compare
Choose a tag to compare

0.10.1

Bug fixes

  • Fix a bug with fetch in browser.

v0.10.0

26 Oct 11:28
b850a4e
Compare
Choose a tag to compare

0.10.0

New features

Breaking changes

  • Functions of the crypto module can't be used directly anymore. Instead, you need to call getCrypto to get a helper suitable for your runtime:
const cryptoHelper = fief.crypto.getCrypto();
const codeVerifier = await cryptoHelper.generateCodeVerifier();
const codeChallenge = await cryptoHelper.getCodeChallenge(codeVerifier, 'S256');

v0.9.5

09 Oct 09:25
caafeba
Compare
Choose a tag to compare

0.9.5

Improvements

  • Bump dependencies

v0.9.4

28 Sep 09:52
7032300
Compare
Choose a tag to compare

Bug fixes

  • Fix FiefUserInfo interface.

v0.9.3

22 Sep 08:55
866bf14
Compare
Choose a tag to compare

Big fixes and improvements

  • Fix missing children property in FiefAuthProviderProps. Thanks @Pckool 🚀
  • Bump dependencies

v0.9.2

20 Jul 15:04
7eb5d96
Compare
Choose a tag to compare

Improvements

  • Export the crypto module
  • Bump dependencies