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
lang
parameter to set the locale of the user on authentication pages. [Documentation]
v0.10.2
0.10.2
Bug fixes
- Fix a bundling issue around
crypto
with React and Webpack
v0.10.1
0.10.1
Bug fixes
- Fix a bug with
fetch
in 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
crypto
module can't be used directly anymore. Instead, you need to callgetCrypto
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
0.9.5
Improvements
- Bump dependencies
v0.9.4
Bug fixes
- Fix
FiefUserInfo
interface.
v0.9.3
v0.9.2
Improvements
- Export the
crypto
module - Bump dependencies