Skip to content

chore(react): add support for react 19 #5826

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Dec 19, 2024
Merged

Conversation

calebpollman
Copy link
Member

@calebpollman calebpollman commented Sep 24, 2024

Description of changes

Add React 19 support for React web packages. While definitely a large PR, the bulk of the changes are changes due to the removal of the global JSX namespace in the React 19 types.

  • allow react@^19 and react-dom@^19 peer deps in React web and core packages (React Native does not support react@^19 currently), example:
- "react": "^16.14.0 || ^17.0 || ^18.0"
+ "react": "^16.14 || ^17 || ^18 || ^19"
  • update ForwardRefPrimitive interface to provide component Props and Element type generics to returned React.Element (ref). This change allows support of React 19 element typing while continuing support of React versions previous to 19.

  • update JSX.Foo -> React.JSX.Foo due to global JSX namespace removal in React 19, example:

- function SomeComponent(): JSX.Element {}
+ function SomeComponent(): React.JSX.Element {}
  • provide explicit undefined to empty useRef callsites:
- useRef()
+ useRef(undefined)
  • add "jest" and "@testing-library/jest-dom" to "types" field of tsconfig.base.json to allow usage of @testing-library/jest-dom extended jest matchers

  • update and align (where appropriate) React related dev and direct dependency versions in example apps and packages:

    • react@18.2 -> react@^18.3
    • @types/react@^18.2.22 -> @types/react@^18.3
    • react-dom@18.2 -> react-dom@^18.3
    • @types/react-dom@^18.2.7 -> @types/react-dom@^18.3.0
    • react-test-renderer@^18.2.0 -> react-test-renderer@^18.3.0
    • @types/react-test-renderer@^18.0.2 -> @types/react-test-renderer@^18.3.0
    • react-hook-form@"^7.43.5 -> react-hook-form@^7.53.2
    • @testing-library/react-native@^12.3.0 ->@testing-library/react-native@^12.9.0
  • bump StorageBrowser size thresholds due to radix dep size increases

  • remove "react-router-dom" dev dependency used in a single Link primitive unit test and the test itself

  • fix typing of DropZone primitive components to no longer accept unsupported forwardRef, example (ref):

- const Accepted: Primitive<{ children?: React.ReactNode }, 'div'> = ...
+ type AcceptedType = (props: {
+   children?: React.ReactNode;
+ }) => React.JSX.Element | null;
+ const Accepted: AcceptedType = ... 
  • add "@types/emscripten" and "@types/long" to @aws-amplify/ui-react-liveness tsconfig.json (ref)

Issue #, if available

closes #6084

Description of how you validated changes

Checklist

  • Have read the Pull Request Guidelines
  • PR description included
  • yarn test passes and tests are updated/added
  • PR title and commit messages follow conventional commit syntax
  • If this change should result in a version bump, changeset added (This can be done after creating the PR.) This does not apply to changes made to docs, e2e, examples, or other private packages.

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.

@calebpollman calebpollman requested a review from a team as a code owner September 24, 2024 00:38
Copy link

changeset-bot bot commented Sep 24, 2024

🦋 Changeset detected

Latest commit: 52c4865

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 12 packages
Name Type
@aws-amplify/ui-react Patch
@aws-amplify/ui-react-ai Patch
@aws-amplify/ui-react-core Patch
@aws-amplify/ui-react-core-notifications Patch
@aws-amplify/ui-react-geo Patch
@aws-amplify/ui-react-liveness Patch
@aws-amplify/ui-react-native Patch
@aws-amplify/ui-react-notifications Patch
@aws-amplify/ui-react-storage Patch
@aws-amplify/ui-react-auth Patch
@aws-amplify/ui-react-core-auth Patch
@aws-amplify/ui-react-native-auth Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@calebpollman calebpollman changed the title chore(react): update react & react-dom types pre-react 19 [WIP} chore(react): add support for react 19 Dec 6, 2024
@calebpollman calebpollman marked this pull request as draft December 6, 2024 02:22
@calebpollman calebpollman force-pushed the react/bump-react-types branch from 1721702 to 3a8fc36 Compare December 16, 2024 23:47
@calebpollman calebpollman changed the title [WIP} chore(react): add support for react 19 [WIP] chore(react): add support for react 19 Dec 16, 2024
@calebpollman calebpollman force-pushed the react/bump-react-types branch 4 times, most recently from b860b9e to 78ba219 Compare December 17, 2024 01:28
@calebpollman calebpollman force-pushed the react/bump-react-types branch from 78ba219 to 6da6e66 Compare December 17, 2024 02:04
@calebpollman calebpollman changed the title [WIP] chore(react): add support for react 19 chore(react): add support for react 19 Dec 19, 2024
@calebpollman calebpollman merged commit 954e9be into main Dec 19, 2024
37 checks passed
@calebpollman calebpollman deleted the react/bump-react-types branch December 19, 2024 22:32
@github-actions github-actions bot mentioned this pull request Dec 19, 2024
@morganney
Copy link

I'm still seeing older versions of dependencies that don't support React 19:

morganney@macos openai-realtime (feat/amplify-authn) $ npm ls react-dom
openai-realtime@1.0.0 /Users/morganney/code/openai-realtime
└─┬ ui@1.0.0 -> ./packages/ui
  ├─┬ @aws-amplify/ui-react@6.8.0
  │ ├─┬ @radix-ui/react-dropdown-menu@1.0.0
  │ │ ├─┬ @radix-ui/react-menu@1.0.0
  │ │ │ ├─┬ @radix-ui/react-dismissable-layer@1.0.0
  │ │ │ │ └── react-dom@18.3.1 deduped
  │ │ │ ├─┬ @radix-ui/react-focus-scope@1.0.0
  │ │ │ │ └── react-dom@18.3.1 deduped
  │ │ │ ├─┬ @radix-ui/react-popper@1.0.0
  │ │ │ │ ├─┬ @floating-ui/react-dom@0.7.2
  │ │ │ │ │ └── react-dom@18.3.1 deduped
  │ │ │ │ ├─┬ @radix-ui/react-arrow@1.0.0
  │ │ │ │ │ └── react-dom@18.3.1 deduped
  │ │ │ │ └── react-dom@18.3.1 deduped
  │ │ │ ├─┬ @radix-ui/react-portal@1.0.0
  │ │ │ │ └── react-dom@18.3.1 deduped
  │ │ │ ├─┬ @radix-ui/react-presence@1.0.0
  │ │ │ │ └── react-dom@18.3.1 deduped
  │ │ │ ├─┬ @radix-ui/react-roving-focus@1.0.0
  │ │ │ │ └── react-dom@18.3.1 deduped
  │ │ │ └── react-dom@18.3.1 deduped
  │ │ ├─┬ @radix-ui/react-primitive@1.0.0
  │ │ │ └── react-dom@18.3.1 deduped
  │ │ └── react-dom@18.3.1 deduped
  │ ├─┬ @radix-ui/react-slider@1.0.0
  │ │ ├─┬ @radix-ui/react-collection@1.0.0
  │ │ │ └── react-dom@18.3.1 deduped
  │ │ └── react-dom@18.3.1 deduped
  │ └── react-dom@18.3.1
  ├── react-dom@19.0.0
  └─┬ styled-components@6.1.13
    └── react-dom@18.3.1 deduped

When running npm install you'll see npm warn ERESOLVE overriding peer dependency.

I'm running:

morganney@macos openai-realtime (feat/amplify-authn) $ node -v
v22.12.0
morganney@macos openai-realtime (feat/amplify-authn) $ npm -v
10.9.0 

jordanvn added a commit that referenced this pull request Jan 2, 2025
jordanvn added a commit that referenced this pull request Jan 3, 2025
jordanvn added a commit that referenced this pull request Jan 3, 2025
tiffanynwyeung pushed a commit that referenced this pull request Jan 3, 2025
* Revert "chore: remove temporary pin to react 18 in react@latest build tests (#6274)"

This reverts commit d9ee32d.

* Revert "fix(docs): remove typo from liveness detector core docs (#6256)"

This reverts commit 9d71dd8.

* Revert "chore(react): remove radix-ui upgrades (#6268)"

This reverts commit c623990.

* Revert "chore(changeset): update react 19 changeset from patch to minor bump (#6269)"

This reverts commit 7045aed.

* Revert "chore(storage-browser): bump up package size limit (#6267)"

This reverts commit a79b8e9.

* Revert "chore(react): add support for react 19 (#5826)"

This reverts commit 954e9be.

* chore: add changeset
@morganney morganney mentioned this pull request Jan 17, 2025
jjarvisp pushed a commit that referenced this pull request Jan 23, 2025
* Revert "chore: remove temporary pin to react 18 in react@latest build tests (#6274)"

This reverts commit d9ee32d.

* Revert "fix(docs): remove typo from liveness detector core docs (#6256)"

This reverts commit 9d71dd8.

* Revert "chore(react): remove radix-ui upgrades (#6268)"

This reverts commit c623990.

* Revert "chore(changeset): update react 19 changeset from patch to minor bump (#6269)"

This reverts commit 7045aed.

* Revert "chore(storage-browser): bump up package size limit (#6267)"

This reverts commit a79b8e9.

* Revert "chore(react): add support for react 19 (#5826)"

This reverts commit 954e9be.

* chore: add changeset
jjarvisp added a commit that referenced this pull request Jan 28, 2025
* chore(react): remove direct usage of react-test-renderer and types (#6255)

* chore(deps): upgrade next deps to point to ^14.2.15 (#6263)

* fix(docs): use correct listLocation attribute names in Storage Browser auth example (#6264)

* chore(react-native): update allowed peerDep to >=0.70 (#6266)

* chore(react): add support for react 19 (#5826)

* chore(storage-browser): bump up package size limit (#6267)

* chore(changeset): update react 19 changeset from patch to minor bump (#6269)

* chore(react): remove radix-ui upgrades (#6268)

* fix(docs): remove typo from liveness detector core docs (#6256)

* Version Packages (#6261)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* chore: remove temporary pin to react 18 in react@latest build tests (#6274)

* chore: remove temporary use of react 18 in react@latest build tests

* chore: update workflow for forced test run

* chore: adjusting testing strategy, modify publish workflow instead of reusable test

* chore: reverting temporary testing changes

* Revert support for React 19 (#6278)

* Revert "chore: remove temporary pin to react 18 in react@latest build tests (#6274)"

This reverts commit d9ee32d.

* Revert "fix(docs): remove typo from liveness detector core docs (#6256)"

This reverts commit 9d71dd8.

* Revert "chore(react): remove radix-ui upgrades (#6268)"

This reverts commit c623990.

* Revert "chore(changeset): update react 19 changeset from patch to minor bump (#6269)"

This reverts commit 7045aed.

* Revert "chore(storage-browser): bump up package size limit (#6267)"

This reverts commit a79b8e9.

* Revert "chore(react): add support for react 19 (#5826)"

This reverts commit 954e9be.

* chore: add changeset

* Version Packages (#6281)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* chore(deps): bump nextjs version (#6284)

* chore: add v0.76 and latest to React Native build system tests (#6285)

* chore: add react native v0.76 build system tests to CI
* chore: add react native 'latest' to build system tests

* fix(github-actions): bump upload-artifact to v4 (#6289)

* feat(i18n): add Chinese translations for password fields in zh.ts (#6125)

Co-authored-by: Caleb Pollman <cpollman1@gmail.com>

* test(e2e): add storage-browser offline tests (#6206)

* test(e2e): add storage-browser offline tests

* address feedback

* fix EOF

* fix EOF

* Update packages/e2e/cypress/integration/common/shared.ts

Co-authored-by: Caleb Pollman <cpollman@amazon.com>

* address feedback

---------

Co-authored-by: Caleb Pollman <cpollman@amazon.com>

* chore(docs): update react web Authenticator hideSignUp example (#6290)

* feat(react): reenable react 19 support (#6296)

* Revert "Revert support for React 19 (#6278)"

This reverts commit 475e4a3.

* update radix deps
* remove radix namespace sanitization
* migrate/cleanup FileUploader component override example
* add ExtendedView component for surfacing ReactNode conflicts
* Remove extended and overridden react types

* chore(build-system-tests): disable react@latest tests (#6297)

* Version Packages (#6292)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* chore(ci): add retry delays to build tests & upgrade actions/cache (#6291)

* chore: add delay between install retries, swap RN to use install script
* chore: upgrade actions/cache to v4.2.0

* chore(build-system-tests): reenable react@latest tests (#6299)

* fix(slider): remounted controlled value not updating (#6301)

* fix(ui): fix and add missing sv translations (#6288)

Co-authored-by: Jordan Van Ness <jordvn@amazon.com>
Co-authored-by: Caleb Pollman <cpollman1@gmail.com>

* chore(changeset): add changeset for PR #6301 (#6303)

* fix(react-storage): enable default checksum algorithm for create folder action  (#6305)

* fix: include default checksum alg header in createFolder action

* test: update createFolder test spec for checksum alg header

* chore: adding changeset

* Version Packages (#6304)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* chore(docs): Update Android UI component versions (#6311)

* chore(deps-dev): bump vite from 5.2.14 to 5.4.12 (#6307)

Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.2.14 to 5.4.12.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.12/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.12/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix(storage-browser): export UseView type (#6314)

* chore(ui-react-storage): clean up outdated styles file (#6197)

Co-authored-by: ashika112 <155593080+ashika112@users.noreply.github.com>

* chore(react-native): add fed sign in example env (#6318)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Caleb Pollman <cpollman@amazon.com>
Co-authored-by: Tiffany Yeung <tnwyeung@amazon.com>
Co-authored-by: Jordan Van Ness <jordvn@amazon.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: BeforeSunset16 <145817984+BeforeSunset16@users.noreply.github.com>
Co-authored-by: Caleb Pollman <cpollman1@gmail.com>
Co-authored-by: Ashwin Kumar <ashwinkumar2468@gmail.com>
Co-authored-by: Danny Banks <djb@amazon.com>
Co-authored-by: berg-dee <berg_deejay0d@icloud.com>
Co-authored-by: Vincent Tran <freedom1378@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AllanZhengYP <zheallan@amazon.com>
Co-authored-by: ashika112 <155593080+ashika112@users.noreply.github.com>
jjarvisp added a commit that referenced this pull request Mar 10, 2025
* chore(react): remove direct usage of react-test-renderer and types (#6255)

* chore(deps): upgrade next deps to point to ^14.2.15 (#6263)

* fix(docs): use correct listLocation attribute names in Storage Browser auth example (#6264)

* chore(react-native): update allowed peerDep to >=0.70 (#6266)

* chore(react): add support for react 19 (#5826)

* chore(storage-browser): bump up package size limit (#6267)

* chore(changeset): update react 19 changeset from patch to minor bump (#6269)

* chore(react): remove radix-ui upgrades (#6268)

* fix(docs): remove typo from liveness detector core docs (#6256)

* Version Packages (#6261)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* chore: remove temporary pin to react 18 in react@latest build tests (#6274)

* chore: remove temporary use of react 18 in react@latest build tests

* chore: update workflow for forced test run

* chore: adjusting testing strategy, modify publish workflow instead of reusable test

* chore: reverting temporary testing changes

* Revert support for React 19 (#6278)

* Revert "chore: remove temporary pin to react 18 in react@latest build tests (#6274)"

This reverts commit d9ee32d.

* Revert "fix(docs): remove typo from liveness detector core docs (#6256)"

This reverts commit 9d71dd8.

* Revert "chore(react): remove radix-ui upgrades (#6268)"

This reverts commit c623990.

* Revert "chore(changeset): update react 19 changeset from patch to minor bump (#6269)"

This reverts commit 7045aed.

* Revert "chore(storage-browser): bump up package size limit (#6267)"

This reverts commit a79b8e9.

* Revert "chore(react): add support for react 19 (#5826)"

This reverts commit 954e9be.

* chore: add changeset

* Version Packages (#6281)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* chore(deps): bump nextjs version (#6284)

* chore: add v0.76 and latest to React Native build system tests (#6285)

* chore: add react native v0.76 build system tests to CI
* chore: add react native 'latest' to build system tests

* fix(github-actions): bump upload-artifact to v4 (#6289)

* feat(i18n): add Chinese translations for password fields in zh.ts (#6125)

Co-authored-by: Caleb Pollman <cpollman1@gmail.com>

* test(e2e): add storage-browser offline tests (#6206)

* test(e2e): add storage-browser offline tests

* address feedback

* fix EOF

* fix EOF

* Update packages/e2e/cypress/integration/common/shared.ts

Co-authored-by: Caleb Pollman <cpollman@amazon.com>

* address feedback

---------

Co-authored-by: Caleb Pollman <cpollman@amazon.com>

* chore(docs): update react web Authenticator hideSignUp example (#6290)

* feat(react): reenable react 19 support (#6296)

* Revert "Revert support for React 19 (#6278)"

This reverts commit 475e4a3.

* update radix deps
* remove radix namespace sanitization
* migrate/cleanup FileUploader component override example
* add ExtendedView component for surfacing ReactNode conflicts
* Remove extended and overridden react types

* chore(build-system-tests): disable react@latest tests (#6297)

* Version Packages (#6292)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* chore(ci): add retry delays to build tests & upgrade actions/cache (#6291)

* chore: add delay between install retries, swap RN to use install script
* chore: upgrade actions/cache to v4.2.0

* chore(build-system-tests): reenable react@latest tests (#6299)

* fix(slider): remounted controlled value not updating (#6301)

* fix(ui): fix and add missing sv translations (#6288)

Co-authored-by: Jordan Van Ness <jordvn@amazon.com>
Co-authored-by: Caleb Pollman <cpollman1@gmail.com>

* chore(changeset): add changeset for PR #6301 (#6303)

* fix(react-storage): enable default checksum algorithm for create folder action  (#6305)

* fix: include default checksum alg header in createFolder action

* test: update createFolder test spec for checksum alg header

* chore: adding changeset

* Version Packages (#6304)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* chore(docs): Update Android UI component versions (#6311)

* chore(deps-dev): bump vite from 5.2.14 to 5.4.12 (#6307)

Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.2.14 to 5.4.12.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.12/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.12/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix(storage-browser): export UseView type (#6314)

* chore(ui-react-storage): clean up outdated styles file (#6197)

Co-authored-by: ashika112 <155593080+ashika112@users.noreply.github.com>

* chore(react-native): add fed sign in example env (#6318)

* chore: add changeset for #6197 (#6322)

* Version Packages (#6315)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* fix(docs): fix typo of fetchUserAttributes (#6324)

* chore(gh-workflow): apply maintainer response label only to open issues (#6326)

* feature(multi-bucket): add multi-bucket support to storage components (#5562)

* initial commit to add 'bucket' property to storage components

* chore: use StorageBucket type in StorageImagePathProps

* remove duplicate StorageBucket type declaration

* chore: update aws-amplify version to include multi-bucket support

* docs: include references to new 'bucket' prop and its usage

* more explicitly clarifying that  can be a string in docs example

* chore: changing reference of storage manager to file uploader

* chore: updating yarn.lock

* chore: undoing unnecessary linting changes

* chore: moving yarn.lock from main branch parity

* chore: updating yarn.lock to main

* chore: add missing references to 'bucket'

* chore: adding tests and new example app

* chore: add end of file line

* chore: add changeset

* chore: setting more obviously fake bucket name as example

* chore: adding link for setting up multi-bucket configuration to docs

* chore: removing unnecessary type definitions

* chore: removing unnecessary type from Storage Image props

* chore: adding bucket as omitted prop to gen1 props

* fix(tests): updating test data to fit expected behavior

* chore: adjusting prop order, import consolidation, and added description

* chore: add FileUploader example app and e2e test

---------

Co-authored-by: Caleb Pollman <cpollman@amazon.com>

* chore: remove storage browser table rows while loading (#6183)

* fix(angular): stop auth actor when destroying `AuthenticatorService` (#6333)

* fix(angular): stop interpreter when destroying AuthenticatorService

* chore: add changeset

* test(angular): in AuthenticatorService, ensure underlying auth actor is closed on destruction

* fix(docs): add callout for Amplify UI component usage in SSR for Angular/Vue (#6339)

* fix(docs): add callout about Amplify UI component usage in SSR for Angular/Vue

* chore: adjust wording feedback, fix angular heading sizes

* chore(docs): add StorageBrowser amplify auth note (#6342)

* chore(deps): remove out of date browserslist resolution (#6343)

* chore(deps): clear serialize-javascript and esbuild dependabot alerts (#6348)

* fix: add parentheses to fix displayed Storage Browser upload status (#6347)

* fix: add parentheses to fix displayed upload status

* chore: add changeset

* chore: add test for progress indicator

* chore: update statuses within progress test to accurately reflect progress state

* chore: other minor changes to make test data more appropriate

* chore(docs): adjust wording and clean up React troubleshooting page (#6345)

* chore(docs): adjust wording and clean up React troubleshooting page

* address feedback

* revert Next.js version change to point to version introducing breaking changes

specifically, 13.4 was the change that introduced stable App Router, and it would be better to point this out rather than point to the latest version of 13 for clarity's sake

* chore(changeset): add missing changeset for #6183 (#6353)

* Version Packages (#6337)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* chore(deps): bump build-system-test deps, clear esbuild dependabots, remove extraneous resolutions (#6351)

* chore(react-storage): update access level deprecation message (#6369)

* chore: update url in deprecation message

* chore: add changeset

* chore(gh-action): bump retry backoff in build system tests (#6355)

* fix(docs): remove non-visible header rendering in TOC (#6371)

* chore: specify react-native-safe-area-context version (#6372)

* chore: move intercepts listeners to before request (#6373)

* fix: signout bug when offline (#6061)

Co-authored-by: Caleb Pollman <cpollman@amazon.com>

* fix: enable customization of displayText for location detail view dataTable headers (#6346)

* fix: enable customization of displayText for location detail view dataTable headers

* fix: update location detail view test to include displayText

* chore: converting default headers to string array, adding unit tests

* chore: add changeset for #6061 (#6375)

* chore(deps): add esbuild resolution in build-system-tests/package.json (#6376)

* Version Packages (#6370)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* chore(react-core): ensure useDataState returns value of last dispatch (#6382)


* Create nasty-lemons-agree.md

* feat(ui): allow override of resendSignUpCode function call (#6312)

Co-authored-by: Caleb Pollman <cpollman@amazon.com>

* fix: Numeric 0 can be set in the property (#6381)

Co-authored-by: James Jarvis <jjarvisp@amazon.com>

* Version Packages (#6385)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* feat(ui-react-storage): allow custom error boundary (#6408)

* feat(ui-react-storage): allow custom error boundary

* feat: allow functional error boundary and null to disable

---------

Co-authored-by: Danny Banks <djb@amazon.com>

* chore: update license allowlist (#6411)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Caleb Pollman <cpollman@amazon.com>
Co-authored-by: Tiffany Yeung <tnwyeung@amazon.com>
Co-authored-by: Jordan Van Ness <jordvn@amazon.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: BeforeSunset16 <145817984+BeforeSunset16@users.noreply.github.com>
Co-authored-by: Caleb Pollman <cpollman1@gmail.com>
Co-authored-by: Ashwin Kumar <ashwinkumar2468@gmail.com>
Co-authored-by: Danny Banks <djb@amazon.com>
Co-authored-by: berg-dee <berg_deejay0d@icloud.com>
Co-authored-by: Vincent Tran <freedom1378@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AllanZhengYP <zheallan@amazon.com>
Co-authored-by: ashika112 <155593080+ashika112@users.noreply.github.com>
Co-authored-by: Quentin <QuentinFchx@users.noreply.github.com>
Co-authored-by: cp <cp@deh.li>
Co-authored-by: Kevin Campbell <11986186+kevin860@users.noreply.github.com>
Co-authored-by: Kihara, Takuya <gray@tacck.net>
jjarvisp added a commit that referenced this pull request Mar 31, 2025
…allenges (#6469)

* chore: update github workflows and add publishing tag on merge (#6260)

* chore: update github workflows and add publishing tag on merge

* chore: publish workflow in correct directory

* chore: remove edits to sample workflow

* chore: sync main with feat-email-mfa/main (#6320)

* chore(react): remove direct usage of react-test-renderer and types (#6255)

* chore(deps): upgrade next deps to point to ^14.2.15 (#6263)

* fix(docs): use correct listLocation attribute names in Storage Browser auth example (#6264)

* chore(react-native): update allowed peerDep to >=0.70 (#6266)

* chore(react): add support for react 19 (#5826)

* chore(storage-browser): bump up package size limit (#6267)

* chore(changeset): update react 19 changeset from patch to minor bump (#6269)

* chore(react): remove radix-ui upgrades (#6268)

* fix(docs): remove typo from liveness detector core docs (#6256)

* Version Packages (#6261)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* chore: remove temporary pin to react 18 in react@latest build tests (#6274)

* chore: remove temporary use of react 18 in react@latest build tests

* chore: update workflow for forced test run

* chore: adjusting testing strategy, modify publish workflow instead of reusable test

* chore: reverting temporary testing changes

* Revert support for React 19 (#6278)

* Revert "chore: remove temporary pin to react 18 in react@latest build tests (#6274)"

This reverts commit d9ee32d.

* Revert "fix(docs): remove typo from liveness detector core docs (#6256)"

This reverts commit 9d71dd8.

* Revert "chore(react): remove radix-ui upgrades (#6268)"

This reverts commit c623990.

* Revert "chore(changeset): update react 19 changeset from patch to minor bump (#6269)"

This reverts commit 7045aed.

* Revert "chore(storage-browser): bump up package size limit (#6267)"

This reverts commit a79b8e9.

* Revert "chore(react): add support for react 19 (#5826)"

This reverts commit 954e9be.

* chore: add changeset

* Version Packages (#6281)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* chore(deps): bump nextjs version (#6284)

* chore: add v0.76 and latest to React Native build system tests (#6285)

* chore: add react native v0.76 build system tests to CI
* chore: add react native 'latest' to build system tests

* fix(github-actions): bump upload-artifact to v4 (#6289)

* feat(i18n): add Chinese translations for password fields in zh.ts (#6125)

Co-authored-by: Caleb Pollman <cpollman1@gmail.com>

* test(e2e): add storage-browser offline tests (#6206)

* test(e2e): add storage-browser offline tests

* address feedback

* fix EOF

* fix EOF

* Update packages/e2e/cypress/integration/common/shared.ts

Co-authored-by: Caleb Pollman <cpollman@amazon.com>

* address feedback

---------

Co-authored-by: Caleb Pollman <cpollman@amazon.com>

* chore(docs): update react web Authenticator hideSignUp example (#6290)

* feat(react): reenable react 19 support (#6296)

* Revert "Revert support for React 19 (#6278)"

This reverts commit 475e4a3.

* update radix deps
* remove radix namespace sanitization
* migrate/cleanup FileUploader component override example
* add ExtendedView component for surfacing ReactNode conflicts
* Remove extended and overridden react types

* chore(build-system-tests): disable react@latest tests (#6297)

* Version Packages (#6292)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* chore(ci): add retry delays to build tests & upgrade actions/cache (#6291)

* chore: add delay between install retries, swap RN to use install script
* chore: upgrade actions/cache to v4.2.0

* chore(build-system-tests): reenable react@latest tests (#6299)

* fix(slider): remounted controlled value not updating (#6301)

* fix(ui): fix and add missing sv translations (#6288)

Co-authored-by: Jordan Van Ness <jordvn@amazon.com>
Co-authored-by: Caleb Pollman <cpollman1@gmail.com>

* chore(changeset): add changeset for PR #6301 (#6303)

* fix(react-storage): enable default checksum algorithm for create folder action  (#6305)

* fix: include default checksum alg header in createFolder action

* test: update createFolder test spec for checksum alg header

* chore: adding changeset

* Version Packages (#6304)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* chore(docs): Update Android UI component versions (#6311)

* chore(deps-dev): bump vite from 5.2.14 to 5.4.12 (#6307)

Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.2.14 to 5.4.12.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.12/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.12/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix(storage-browser): export UseView type (#6314)

* chore(ui-react-storage): clean up outdated styles file (#6197)

Co-authored-by: ashika112 <155593080+ashika112@users.noreply.github.com>

* chore(react-native): add fed sign in example env (#6318)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Caleb Pollman <cpollman@amazon.com>
Co-authored-by: Tiffany Yeung <tnwyeung@amazon.com>
Co-authored-by: Jordan Van Ness <jordvn@amazon.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: BeforeSunset16 <145817984+BeforeSunset16@users.noreply.github.com>
Co-authored-by: Caleb Pollman <cpollman1@gmail.com>
Co-authored-by: Ashwin Kumar <ashwinkumar2468@gmail.com>
Co-authored-by: Danny Banks <djb@amazon.com>
Co-authored-by: berg-dee <berg_deejay0d@icloud.com>
Co-authored-by: Vincent Tran <freedom1378@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AllanZhengYP <zheallan@amazon.com>
Co-authored-by: ashika112 <155593080+ashika112@users.noreply.github.com>

* feat(authenticator): state machine updates for email mfa (#6317)

* feat: add email mfa support to state machine

* refactor: facade types

* refactor: update facade types

* test: update react core tests to align with type changes

* refactor: generalize radio options

* refactor: update react-core-auth tests

* refactor: update vue test spec

* chore: add addtnl challenge names

* chore: quick changes

* fix: allow labelled radio options

* chore: add i18n setup

* test: update textUtil tests

* chore: type safe MFA types

* fix: add addtl text utils

* chore: add translation sites

* chore: alphabetization

* chore: alphabetization

* chore: remove comment

* chore: alphabetization

* chore: alphabetization

* chore: address feedback

* chore: address feedback

* chore: alphabetization

* feat(authenticator): add react support for email mfa (#6319)

* feat: add email mfa support to state machine

* refactor: facade types

* refactor: update facade types

* test: update react core tests to align with type changes

* refactor: generalize radio options

* refactor: update react-core-auth tests

* refactor: update vue test spec

* chore: add addtnl challenge names

* chore: quick changes

* fix: allow labelled radio options

* chore: add i18n setup

* test: update textUtil tests

* chore: type safe MFA types

* fix: add addtl text utils

* chore: add translation sites

* chore: alphabetization

* chore: alphabetization

* chore: remove comment

* chore: alphabetization

* chore: alphabetization

* chore: address feedback

* chore: address feedback

* chore: alphabetization

* chore: add email mfa env / example route

* feat: adding react support for email mfa

* chore: update env to gen2 path

* fix: add validation errors to radio group

* chore: initial state is sign in

* feat: enable autoSignIn as state machine service

* chore: add email mfa examples

* feat: adding email mfa test specs

* chore: default state is sign in

* chore: update react-core tests

* fix: allow labelled radio options

* chore: tmp RN type fix

* chore: update component to use text util

* test: update react e2e and unit tests

* fix: avoid mutate xstate context

* chore: add missing unit tests

* chore: address feedback

* chore: address feedback

* chore: address feedback

* chore: address feedback

* feat(authenticator): add angular support for email mfa (#6356)

* feat: add email mfa support to state machine

* refactor: facade types

* refactor: update facade types

* test: update react core tests to align with type changes

* refactor: generalize radio options

* refactor: update react-core-auth tests

* refactor: update vue test spec

* chore: add addtnl challenge names

* chore: quick changes

* fix: allow labelled radio options

* chore: add i18n setup

* test: update textUtil tests

* chore: type safe MFA types

* fix: add addtl text utils

* chore: add translation sites

* chore: alphabetization

* chore: alphabetization

* chore: remove comment

* chore: alphabetization

* chore: alphabetization

* chore: address feedback

* chore: address feedback

* chore: alphabetization

* chore: add email mfa env / example route

* feat: adding react support for email mfa

* chore: update env to gen2 path

* fix: add validation errors to radio group

* chore: initial state is sign in

* feat: enable autoSignIn as state machine service

* chore: add email mfa examples

* feat: adding email mfa test specs

* chore: default state is sign in

* chore: update react-core tests

* fix: allow labelled radio options

* chore: tmp RN type fix

* chore: update component to use text util

* test: update react e2e and unit tests

* fix: avoid mutate xstate context

* chore: add missing unit tests

* chore: address feedback

* chore: address feedback

* chore: address feedback

* chore: address feedback

* chore: add angular email mfa example apps

* chore: add radio field component

* feat: add email mfa screens

* test: add email mfa e2e tests

* chore: use default classNames

* chore: address feedback

* chore: address feedback

* chore: fix slot names

* feat(authenticator): add vue support for email mfa (#6350)

* feat: add email mfa support to state machine

* refactor: facade types

* refactor: update facade types

* test: update react core tests to align with type changes

* refactor: generalize radio options

* refactor: update react-core-auth tests

* refactor: update vue test spec

* chore: add addtnl challenge names

* chore: quick changes

* fix: allow labelled radio options

* chore: add i18n setup

* test: update textUtil tests

* chore: type safe MFA types

* fix: add addtl text utils

* chore: add translation sites

* chore: alphabetization

* chore: alphabetization

* chore: remove comment

* chore: alphabetization

* chore: alphabetization

* chore: address feedback

* chore: address feedback

* chore: alphabetization

* chore: add email mfa env / example route

* feat: adding react support for email mfa

* chore: update env to gen2 path

* fix: add validation errors to radio group

* chore: initial state is sign in

* feat: enable autoSignIn as state machine service

* chore: add email mfa examples

* feat: adding email mfa test specs

* chore: default state is sign in

* chore: update react-core tests

* fix: allow labelled radio options

* chore: tmp RN type fix

* chore: update component to use text util

* test: update react e2e and unit tests

* fix: avoid mutate xstate context

* chore: add missing unit tests

* chore: address feedback

* chore: address feedback

* chore: address feedback

* chore: address feedback

* feat: add vue email mfa screens

* test: add vue component test specs

* test: update vue snapshots

* test: add vue e2e apps

* chore: enable vue in e2e spec

* chore: address feedback

* chore: address feedback

* chore: address feedback

* chore: add test to boost global coverage

* chore: add semicolon

* feat(authenticator): add react native support for email mfa (#6390)

* feat: add email mfa support to state machine

* refactor: facade types

* refactor: update facade types

* test: update react core tests to align with type changes

* refactor: generalize radio options

* refactor: update react-core-auth tests

* refactor: update vue test spec

* chore: add addtnl challenge names

* chore: quick changes

* fix: allow labelled radio options

* chore: add i18n setup

* test: update textUtil tests

* chore: type safe MFA types

* fix: add addtl text utils

* chore: add translation sites

* chore: alphabetization

* chore: alphabetization

* chore: remove comment

* chore: alphabetization

* chore: alphabetization

* chore: address feedback

* chore: address feedback

* chore: alphabetization

* chore: add email mfa env / example route

* feat: adding react support for email mfa

* chore: update env to gen2 path

* fix: add validation errors to radio group

* chore: initial state is sign in

* feat: enable autoSignIn as state machine service

* chore: add email mfa examples

* feat: adding email mfa test specs

* chore: default state is sign in

* chore: update react-core tests

* fix: allow labelled radio options

* chore: tmp RN type fix

* chore: update component to use text util

* test: update react e2e and unit tests

* fix: avoid mutate xstate context

* chore: add missing unit tests

* chore: address feedback

* chore: address feedback

* chore: address feedback

* chore: address feedback

* fix: avoid mutate xstate context

* chore: add email mfa example for RN

* feat: add email mfa screens

* test: add unit tests

* test: add e2e test apps

* fix: e2e test selector

* fix: customize sign up service

* fix: address PR feedback

* chore: address feedback

* chore: fix test

* chore: address feedback

* feat(i18n): add translations for email mfa (#6387)

* feat: add email mfa support to state machine

* refactor: facade types

* refactor: update facade types

* test: update react core tests to align with type changes

* refactor: generalize radio options

* refactor: update react-core-auth tests

* refactor: update vue test spec

* chore: add addtnl challenge names

* chore: quick changes

* fix: allow labelled radio options

* chore: add i18n setup

* test: update textUtil tests

* chore: type safe MFA types

* fix: add addtl text utils

* chore: add translation sites

* chore: alphabetization

* chore: alphabetization

* chore: remove comment

* chore: alphabetization

* chore: alphabetization

* chore: address feedback

* chore: address feedback

* chore: alphabetization

* feat(auth): add English translations for email MFA

* German

* Spanish

* French

* Indonesian

* Italian

* Japanese

* Korean

* Dutch

* Polish

* Portuguese

* Russian

* Swedish

* Turkish

* Chinese

* Ukrainian

* Thai

* Norwegian

* Hebrew

* chore: alphabetization

---------

Co-authored-by: James Jarvis <jjarvisp@amazon.com>

* chore: fix missing env (#6391)

* fix(authenticator): apply default checked to select mfa type (#6392)

* fix: apply default checked

* chore: update unit tests

* chore: add select mfa type default radio

* chore: add verify user default radio selection

* chore(email-mfa): sync with main (#6407)

* chore(react): remove direct usage of react-test-renderer and types (#6255)

* chore(deps): upgrade next deps to point to ^14.2.15 (#6263)

* fix(docs): use correct listLocation attribute names in Storage Browser auth example (#6264)

* chore(react-native): update allowed peerDep to >=0.70 (#6266)

* chore(react): add support for react 19 (#5826)

* chore(storage-browser): bump up package size limit (#6267)

* chore(changeset): update react 19 changeset from patch to minor bump (#6269)

* chore(react): remove radix-ui upgrades (#6268)

* fix(docs): remove typo from liveness detector core docs (#6256)

* Version Packages (#6261)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* chore: remove temporary pin to react 18 in react@latest build tests (#6274)

* chore: remove temporary use of react 18 in react@latest build tests

* chore: update workflow for forced test run

* chore: adjusting testing strategy, modify publish workflow instead of reusable test

* chore: reverting temporary testing changes

* Revert support for React 19 (#6278)

* Revert "chore: remove temporary pin to react 18 in react@latest build tests (#6274)"

This reverts commit d9ee32d.

* Revert "fix(docs): remove typo from liveness detector core docs (#6256)"

This reverts commit 9d71dd8.

* Revert "chore(react): remove radix-ui upgrades (#6268)"

This reverts commit c623990.

* Revert "chore(changeset): update react 19 changeset from patch to minor bump (#6269)"

This reverts commit 7045aed.

* Revert "chore(storage-browser): bump up package size limit (#6267)"

This reverts commit a79b8e9.

* Revert "chore(react): add support for react 19 (#5826)"

This reverts commit 954e9be.

* chore: add changeset

* Version Packages (#6281)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* chore(deps): bump nextjs version (#6284)

* chore: add v0.76 and latest to React Native build system tests (#6285)

* chore: add react native v0.76 build system tests to CI
* chore: add react native 'latest' to build system tests

* fix(github-actions): bump upload-artifact to v4 (#6289)

* feat(i18n): add Chinese translations for password fields in zh.ts (#6125)

Co-authored-by: Caleb Pollman <cpollman1@gmail.com>

* test(e2e): add storage-browser offline tests (#6206)

* test(e2e): add storage-browser offline tests

* address feedback

* fix EOF

* fix EOF

* Update packages/e2e/cypress/integration/common/shared.ts

Co-authored-by: Caleb Pollman <cpollman@amazon.com>

* address feedback

---------

Co-authored-by: Caleb Pollman <cpollman@amazon.com>

* chore(docs): update react web Authenticator hideSignUp example (#6290)

* feat(react): reenable react 19 support (#6296)

* Revert "Revert support for React 19 (#6278)"

This reverts commit 475e4a3.

* update radix deps
* remove radix namespace sanitization
* migrate/cleanup FileUploader component override example
* add ExtendedView component for surfacing ReactNode conflicts
* Remove extended and overridden react types

* chore(build-system-tests): disable react@latest tests (#6297)

* Version Packages (#6292)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* chore(ci): add retry delays to build tests & upgrade actions/cache (#6291)

* chore: add delay between install retries, swap RN to use install script
* chore: upgrade actions/cache to v4.2.0

* chore(build-system-tests): reenable react@latest tests (#6299)

* fix(slider): remounted controlled value not updating (#6301)

* fix(ui): fix and add missing sv translations (#6288)

Co-authored-by: Jordan Van Ness <jordvn@amazon.com>
Co-authored-by: Caleb Pollman <cpollman1@gmail.com>

* chore(changeset): add changeset for PR #6301 (#6303)

* fix(react-storage): enable default checksum algorithm for create folder action  (#6305)

* fix: include default checksum alg header in createFolder action

* test: update createFolder test spec for checksum alg header

* chore: adding changeset

* Version Packages (#6304)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* chore(docs): Update Android UI component versions (#6311)

* chore(deps-dev): bump vite from 5.2.14 to 5.4.12 (#6307)

Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.2.14 to 5.4.12.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.12/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.12/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix(storage-browser): export UseView type (#6314)

* chore(ui-react-storage): clean up outdated styles file (#6197)

Co-authored-by: ashika112 <155593080+ashika112@users.noreply.github.com>

* chore(react-native): add fed sign in example env (#6318)

* chore: add changeset for #6197 (#6322)

* Version Packages (#6315)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* fix(docs): fix typo of fetchUserAttributes (#6324)

* chore(gh-workflow): apply maintainer response label only to open issues (#6326)

* feature(multi-bucket): add multi-bucket support to storage components (#5562)

* initial commit to add 'bucket' property to storage components

* chore: use StorageBucket type in StorageImagePathProps

* remove duplicate StorageBucket type declaration

* chore: update aws-amplify version to include multi-bucket support

* docs: include references to new 'bucket' prop and its usage

* more explicitly clarifying that  can be a string in docs example

* chore: changing reference of storage manager to file uploader

* chore: updating yarn.lock

* chore: undoing unnecessary linting changes

* chore: moving yarn.lock from main branch parity

* chore: updating yarn.lock to main

* chore: add missing references to 'bucket'

* chore: adding tests and new example app

* chore: add end of file line

* chore: add changeset

* chore: setting more obviously fake bucket name as example

* chore: adding link for setting up multi-bucket configuration to docs

* chore: removing unnecessary type definitions

* chore: removing unnecessary type from Storage Image props

* chore: adding bucket as omitted prop to gen1 props

* fix(tests): updating test data to fit expected behavior

* chore: adjusting prop order, import consolidation, and added description

* chore: add FileUploader example app and e2e test

---------

Co-authored-by: Caleb Pollman <cpollman@amazon.com>

* chore: remove storage browser table rows while loading (#6183)

* fix(angular): stop auth actor when destroying `AuthenticatorService` (#6333)

* fix(angular): stop interpreter when destroying AuthenticatorService

* chore: add changeset

* test(angular): in AuthenticatorService, ensure underlying auth actor is closed on destruction

* fix(docs): add callout for Amplify UI component usage in SSR for Angular/Vue (#6339)

* fix(docs): add callout about Amplify UI component usage in SSR for Angular/Vue

* chore: adjust wording feedback, fix angular heading sizes

* chore(docs): add StorageBrowser amplify auth note (#6342)

* chore(deps): remove out of date browserslist resolution (#6343)

* chore(deps): clear serialize-javascript and esbuild dependabot alerts (#6348)

* fix: add parentheses to fix displayed Storage Browser upload status (#6347)

* fix: add parentheses to fix displayed upload status

* chore: add changeset

* chore: add test for progress indicator

* chore: update statuses within progress test to accurately reflect progress state

* chore: other minor changes to make test data more appropriate

* chore(docs): adjust wording and clean up React troubleshooting page (#6345)

* chore(docs): adjust wording and clean up React troubleshooting page

* address feedback

* revert Next.js version change to point to version introducing breaking changes

specifically, 13.4 was the change that introduced stable App Router, and it would be better to point this out rather than point to the latest version of 13 for clarity's sake

* chore(changeset): add missing changeset for #6183 (#6353)

* Version Packages (#6337)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* chore(deps): bump build-system-test deps, clear esbuild dependabots, remove extraneous resolutions (#6351)

* chore(react-storage): update access level deprecation message (#6369)

* chore: update url in deprecation message

* chore: add changeset

* chore(gh-action): bump retry backoff in build system tests (#6355)

* fix(docs): remove non-visible header rendering in TOC (#6371)

* chore: specify react-native-safe-area-context version (#6372)

* chore: move intercepts listeners to before request (#6373)

* fix: signout bug when offline (#6061)

Co-authored-by: Caleb Pollman <cpollman@amazon.com>

* fix: enable customization of displayText for location detail view dataTable headers (#6346)

* fix: enable customization of displayText for location detail view dataTable headers

* fix: update location detail view test to include displayText

* chore: converting default headers to string array, adding unit tests

* chore: add changeset for #6061 (#6375)

* chore(deps): add esbuild resolution in build-system-tests/package.json (#6376)

* Version Packages (#6370)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* chore(react-core): ensure useDataState returns value of last dispatch (#6382)


* Create nasty-lemons-agree.md

* feat(ui): allow override of resendSignUpCode function call (#6312)

Co-authored-by: Caleb Pollman <cpollman@amazon.com>

* fix: Numeric 0 can be set in the property (#6381)

Co-authored-by: James Jarvis <jjarvisp@amazon.com>

* Version Packages (#6385)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* feat(ui-react-storage): allow custom error boundary (#6408)

* feat(ui-react-storage): allow custom error boundary

* feat: allow functional error boundary and null to disable

---------

Co-authored-by: Danny Banks <djb@amazon.com>

* chore: update license allowlist (#6411)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Caleb Pollman <cpollman@amazon.com>
Co-authored-by: Tiffany Yeung <tnwyeung@amazon.com>
Co-authored-by: Jordan Van Ness <jordvn@amazon.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: BeforeSunset16 <145817984+BeforeSunset16@users.noreply.github.com>
Co-authored-by: Caleb Pollman <cpollman1@gmail.com>
Co-authored-by: Ashwin Kumar <ashwinkumar2468@gmail.com>
Co-authored-by: Danny Banks <djb@amazon.com>
Co-authored-by: berg-dee <berg_deejay0d@icloud.com>
Co-authored-by: Vincent Tran <freedom1378@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AllanZhengYP <zheallan@amazon.com>
Co-authored-by: ashika112 <155593080+ashika112@users.noreply.github.com>
Co-authored-by: Quentin <QuentinFchx@users.noreply.github.com>
Co-authored-by: cp <cp@deh.li>
Co-authored-by: Kevin Campbell <11986186+kevin860@users.noreply.github.com>
Co-authored-by: Kihara, Takuya <gray@tacck.net>

* fix: remove select-mfa-type from form fields union (#6456)

* docs(email-mfa): add email mfa documentation updates (#6457)

* chore: add rn component overrides / examples email mfa

* chore: add rn component overrides docs email mfa

* chore: fix double border on overrides table

* chore: add email mfa documentation

* chore: update rn exports snap

* chore: revert tagged release / pr tests (#6467)

Co-authored-by: Caleb Pollman <cpollman@amazon.com>

* chore(email-mfa): add changeset / cleanup (#6471)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Parker Scanlon <69879391+scanlonp@users.noreply.github.com>
Co-authored-by: Caleb Pollman <cpollman@amazon.com>
Co-authored-by: Tiffany Yeung <tnwyeung@amazon.com>
Co-authored-by: Jordan Van Ness <jordvn@amazon.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: BeforeSunset16 <145817984+BeforeSunset16@users.noreply.github.com>
Co-authored-by: Caleb Pollman <cpollman1@gmail.com>
Co-authored-by: Ashwin Kumar <ashwinkumar2468@gmail.com>
Co-authored-by: Danny Banks <djb@amazon.com>
Co-authored-by: berg-dee <berg_deejay0d@icloud.com>
Co-authored-by: Vincent Tran <freedom1378@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: AllanZhengYP <zheallan@amazon.com>
Co-authored-by: ashika112 <155593080+ashika112@users.noreply.github.com>
Co-authored-by: Quentin <QuentinFchx@users.noreply.github.com>
Co-authored-by: cp <cp@deh.li>
Co-authored-by: Kevin Campbell <11986186+kevin860@users.noreply.github.com>
Co-authored-by: Kihara, Takuya <gray@tacck.net>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

react 19 support
6 participants