Skip to content

Releases: accounts-js/accounts

@accounts/client@0.33.1

12 Oct 17:32
83280af
Compare
Choose a tag to compare

Patch Changes

@accounts/client-password@0.32.2

12 Oct 17:32
83280af
Compare
Choose a tag to compare

Patch Changes

@accounts/client-magic-link@0.1.1

12 Oct 17:32
83280af
Compare
Choose a tag to compare

Patch Changes

@accounts/boost@0.32.2

12 Oct 17:32
83280af
Compare
Choose a tag to compare

Patch Changes

  • #1170 e81eb578 Thanks @pradel! - Upgrade tslib to 2.3.0

  • Updated dependencies [1cf53c32, 926b4217, e81eb578]:

    • @accounts/server@0.33.1
    • @accounts/graphql-api@0.33.1
    • @accounts/database-manager@0.33.1
    • @accounts/types@0.33.1

@accounts/apollo-link@0.32.1

12 Oct 17:32
83280af
Compare
Choose a tag to compare

Patch Changes

@accounts/mongo@0.33.4

07 Aug 10:44
dd37999
Compare
Choose a tag to compare

Patch Changes

v0.32.0

21 Apr 17:27
Compare
Choose a tag to compare

0.32.0 (2021-04-21)

⚠ BREAKING CHANGES

  • server: Change the option userObjectSanitizer parameters. pick and omit are removed, if you are relying on them, you can import them from lodash directly.
  • password: await sendVerificationEmail during user signup (#1113)

Bug Fixes

  • mongo: put mongodb types in dependencies (#1085) 35c4c8c
  • mongo-session/password: added missing mongodb peer dependency 89c2b83
  • typeorm: fix query in findUserByServiceId #1108 (#1109) 2450f33

Tests

Miscellaneous Chores

v0.31.0

01 Feb 10:59
Compare
Choose a tag to compare

0.31.0 (2021-02-01)

⚠ BREAKING CHANGES

  • Drop support for node 8. Minimum node version is node 10.
  • db.setResetPassword has been removed from the database interface as it was just an alias to db.setPassword.
    If you are using this method, use setPassword instead.

Note: if you are using the typeorm adapter, you also need to call db.removeAllResetPasswordTokens to keep the same behavior as before.

Features

  • graphql-api: custom typings for authenticated-resolver (#1004) 3c2264d
  • graphql-client: support graphql ^15.0.0 (#1088) 8419a49

Bug Fixes

Code Refactoring

  • mongo: split mongo services in multiple packages (#1069) 8411fa8

Documentation

Miscellaneous Chores

  • remove the database setResetPassword method (#1082) 0abf186
  • upgrade jwt-decode to v3 (#1101) 1499d7e
  • upgrade lodash to remove security warning e9aaa59
  • upgrade node-fetch to remove security warning 21f8d6d

v0.30.0

12 Dec 13:49
Compare
Choose a tag to compare

0.30.0 (2020-12-12)

⚠ BREAKING CHANGES

  • password: calling password.sendResetPasswordEmail will not hide the error anymore if the user is not found when ambiguousErrorMessages is true, this error will now be hidden by the transport layer (rest-express, graphql).
    Only a breaking change if you expose password.sendResetPasswordEmail to your users directly.
  • password: calling password.sendVerificationEmail will not hide the error anymore if the user is not found when ambiguousErrorMessages is true, this error will now be hidden by the transport layer (rest-express, graphql).
    Only a breaking change if you expose password. sendVerificationEmail to your users directly.
  • The hooks on the server are now awaited. The execution will continue after the hook promise is resolved. (#1068)

Features

  • execute server hooks with await (#1068) d6efc69
  • upgrade graphql-tools to v7 (#1066) 099fea6
  • accounts-client: Add token storage separator option to Client e84e275

Bug Fixes

  • rest-example: fix mongo usage 27b2ba3
  • fix typo in example code: Typeorm -> AccountsTypeorm 193dbcd

Continuous Integration

Documentation

  • add website to monorepo (#1075) e760e61
  • fix an issue in an example of the README for graphql-api 84f480d
  • upgrade docusaurus to 2.0.0-alpha.68 (#1074) c7f6e2b

Miscellaneous Chores

  • examples: upgrade to create-react-app 4 and react 17 (#1076) 785104f
  • password: move sendResetPasswordEmail user check to transport 3f02186
  • password: move sendVerificationEmail user check to transport b6ff028
  • add jsx files to prettier 64f4e3d
  • two-factor: remove lodash from the dependencies (#1073) e3c3860
  • update prettier and eslint (#1072) 20d9dbe
  • mongo: remove lodash from the dependencies (#1070) 366f44f
  • redis: remove lodash from the dependencies (#1071) dc59fa4

v0.29.0

06 Aug 09:41
Compare
Choose a tag to compare

0.29.0 (2020-08-06)

⚠ BREAKING CHANGES

  • apollo-link-accounts: update to use @apollo/client 3. If you still use apollo client 2, do not upgrade this dependency (#1030)

Features

  • apollo-link-accounts: update to use @apollo/client 3 (#1030) f884146
  • graphql-client: generate ts types from operations (#1027) c22d38a

Miscellaneous Chores

Code Refactoring

  • rest-express: use middleware to setup request infos (#1028) 99d988f

Continuous Integration

Documentation

  • password-client: add example of login with password (#1033) 70918ed