·
1712 commits
to main
since this release
Major Changes
-
#2828
82903f7bbThanks @calebpollman! - feat(next-release): render Authenticator field labels -
#2735
fa3135addThanks @wlee221! - Breaking: We replaced following legacy Authenticator texts:Send Codein reset password screen is replaced bySend code.Forgot your password?with the trailing space is replaced byForgot your password.
If you were using
I18nto translate those keys, please update your translations accordingly to match the new strings.
Patch Changes
-
#2877
ab8942c54Thanks @ErikCH! - BREAKING: When overridingAuth.signUp, update the override function call to include theautoSignInoption 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]:- @aws-amplify/[email protected]