This repository was archived by the owner on Apr 26, 2025. It is now read-only.
Releases: fief-dev/fief-js
Releases · fief-dev/fief-js
v0.12.1
0.12.1
Improvements
- React integration: save auth state in sessionStorage so it's preserved between page reloads
v0.12.0
0.12.0
Improvements
- Browser integration: allow to pass optional parameters to
redirectToLogin. [Documentation]
v0.11.0
0.11.0
New features
- Add support for
langparameter to set the locale of the user on authentication pages. [Documentation]
v0.10.2
0.10.2
Bug fixes
- Fix a bundling issue around
cryptowith React and Webpack
v0.10.1
0.10.1
Bug fixes
- Fix a bug with
fetchin browser.
v0.10.0
0.10.0
New features
- Backend integration for Express [Documentation]
- SSR integration for Next.js [Documentation]
Breaking changes
- Functions of the
cryptomodule can't be used directly anymore. Instead, you need to callgetCryptoto 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
0.9.5
Improvements
- Bump dependencies
v0.9.4
Bug fixes
- Fix
FiefUserInfointerface.
v0.9.3
v0.9.2
Improvements
- Export the
cryptomodule - Bump dependencies