·
1712 commits
to main
since this release
Major Changes
-
#2828
82903f7bbThanks @calebpollman! - feat(next-release): render Authenticator field labels -
#2558
d90b148c0Thanks @reesscot! - chore: upgrade radix to 1.0Fixes error messages during
npm installrelated to React 18. See Migration guide for more information:
https://ui.docs.amplify.aws/react/getting-started/migration
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 + } }); }