Releases: accounts-js/accounts
Releases · accounts-js/accounts
v0.3.0-beta.30
Features
- Import the example repository into the main monorepo (#473)
- [@accounts/server] Calling
addEmail
now trigger the email verification option (#477) - [@accounts/password] Check the arguments in the exposed methods (#478)
- [@accounts/server] Deactivate user (#480)
- [e2e] Test some core features (#439)
Bug fixes
- [@accounts/password] Support uppercase emails when sending the different emails (verification, rest, ...) (#476)
v0.3.0-beta.29
v0.3.0-beta.28
Features
- update deps (#455)
- additional fields user (#438)
- Load the user in the context resolver (#437)
- Removes unused schema in graphql-client (#430)
Breaking changes
- The new graphql context is now async
context: async ({ req }) => ({
...(await accountsContext(req, {
accountsServer: this.accountsServer,
myContext: 'context'
})),
- additional fields user (#438) See the pull request description for more details.
v0.3.0-beta.27
v0.3.0-beta.27
v0.3.0-beta.26
v0.3.0-beta.25
v0.3.0-beta.24
Republish v0.3.0-beta.23 as v0.3.0-beta.24
v0.3.0-beta.23
v0.3.0-beta.22
v0.3.0-beta.21
Features:
- New package: @accounts/apollo-link (#379)
import { accountsLink } from '@accounts/apollo-link';
const accountsClient = new AccountsClient( ... );
const authLink = accountsLink(accountsClient);
export const apolloClient = new ApolloClient({
link: ApolloLink.from([authLink, httpLink]),
cache,
});
Bug fix:
- [graphql-client] Fix infinite loop issue (#369)
- [graphql-api] build resolvers and schema based on the service (#378)