Skip to content

Releases: accounts-js/accounts

v0.3.0-beta.30

17 Oct 07:45
Compare
Choose a tag to compare
v0.3.0-beta.30 Pre-release
Pre-release

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

30 Sep 10:59
Compare
Choose a tag to compare
v0.3.0-beta.29 Pre-release
Pre-release
  • [@accounts/mongo] Switched from collection.update to collection.updatOne (#465)
  • [docs] GraphQLClient should be AccountsGraphQLClient (#468)

v0.3.0-beta.28

10 Sep 14:25
Compare
Choose a tag to compare
v0.3.0-beta.28 Pre-release
Pre-release

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

30 Sep 10:59
Compare
Choose a tag to compare
v0.3.0-beta.27 Pre-release
Pre-release
v0.3.0-beta.27

v0.3.0-beta.26

03 Aug 07:33
Compare
Choose a tag to compare
v0.3.0-beta.26 Pre-release
Pre-release
  • docs: Update README and CONTRIBUTING (#428)
  • Made access token optional when calling getUser with graphql (#420)

v0.3.0-beta.25

03 Aug 07:35
Compare
Choose a tag to compare
v0.3.0-beta.25 Pre-release
Pre-release
  • Emit events when creating password users (#425)
  • e2e testing password service (#418)
  • Refactor and test getFirstUserEmail
  • Fix to accounts link sending null string as access token (#423)

v0.3.0-beta.24

30 Jul 13:13
Compare
Choose a tag to compare
v0.3.0-beta.24 Pre-release
Pre-release

Republish v0.3.0-beta.23 as v0.3.0-beta.24

v0.3.0-beta.23

30 Jul 11:20
Compare
Choose a tag to compare
v0.3.0-beta.23 Pre-release
Pre-release

Features

  • Add html option for email templates (#403)
  • Improve contributing documentation (#408)
  • Do not fetch the user on logout (#411)

Bug fixes

  • Fix change password not working (#401)

v0.3.0-beta.22

19 Jul 10:10
Compare
Choose a tag to compare
v0.3.0-beta.22 Pre-release
Pre-release

Features

  • feat: export graphql-api types (#393)
  • Add some README to the packages for npm (#381)

Bug fixes

  • Update @accounts/password peer dep (#397)
  • Fix accounts apollo-link types (#382)
  • Fix peerDependencies (#399)
  • Add graphql-tools as a peer dep of graphql-api (#400)
  • add start script to all (#395)

v0.3.0-beta.21

12 Jul 08:43
Compare
Choose a tag to compare
v0.3.0-beta.21 Pre-release
Pre-release

Features:

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)

Internal:

  • [server] Change any type to specific type (#373)
  • Required reason token for the database interface (#380)