Skip to content

@aws-amplify/[email protected]

Choose a tag to compare

@github-actions github-actions released this 14 Nov 16:55
· 1712 commits to main since this release
2587610

Major Changes

  • #2828 82903f7bb Thanks @calebpollman! - feat(next-release): render Authenticator field labels

  • #2735 fa3135add Thanks @wlee221! - Breaking: We replaced following legacy Authenticator texts:

    • Send Code in reset password screen is replaced by Send code.
    • Forgot your password? with the trailing space is replaced by Forgot your password.

    If you were using I18n to translate those keys, please update your translations accordingly to match the new strings.

Patch Changes

  • #2877 ab8942c54 Thanks @ErikCH! - BREAKING: When overriding Auth.signUp, update the override function call to include the autoSignIn option set to enabled. This is now required.

     async handleSignUp(formData) {
      let { username, password, attributes } = formData;
      // custom username
      username = username.toLowerCase();
      attributes.email = attributes.email.toLowerCase();
      return Auth.signUp({
        username,
        password,
        attributes,
    +   autoSignIn: {
    +     enabled: true
    +   }
      });
    }
    
  • Updated dependencies [ab8942c54, 82903f7bb, d90b148c0]: