Version Packages (main) - #7017
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
June 15, 2026 15:15
f4cf366 to
fd80a85
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
5 times, most recently
from
June 22, 2026 11:33
cffbb0c to
8f574a3
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
7 times, most recently
from
July 6, 2026 15:21
81832b4 to
26b4e93
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 9, 2026 14:12
26b4e93 to
64acf87
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 10, 2026 12:38
64acf87 to
e9303f9
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
5 times, most recently
from
July 21, 2026 14:51
475fdd2 to
7a8ace4
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
20 times, most recently
from
July 27, 2026 16:10
64fc2a3 to
c372f4f
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 28, 2026 09:30
c372f4f to
e4a99da
Compare
soberm
approved these changes
Jul 28, 2026
bobbor
approved these changes
Jul 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@aws-amplify/ui-angular@6.0.0
Major Changes
aa5e7192561a029307780ccf71823699021032daThanks @bobbor! - Upgrade to Angular 20. The minimum supported Angular version is now 20.0.0; Angular 19 and below are no longer supported. The library is compiled with the Angular 20 compiler (partial-Ivy output is forward-compatible only).Patch Changes
21fa602576b12fa59c0101b52eff8551d778352e]:@aws-amplify/ui-react-storage@3.18.0
Minor Changes
#7046
25e8d96a4c8bee19409cf44f2df7856b52e56260Thanks @bobbor! - feat(storage): folder download support in StorageBrowserEnable downloading folders (and mixed file/folder selections) from the
StorageBrowserdownload action. Previously the download button was disabledwhenever the selection contained a folder.
Folders are expanded to their files at the view level before the download
runs: the
DownloadViewlists folder contents on open (with a "listingfolder contents" state), so the resolved files render as rows and the archive
is only dispatched once every selected folder is fully enumerated. Each file
preserves its folder-relative path inside the zip. A single-folder selection
names the archive after that folder; other selections use the longest common
ancestor directory of the downloaded files. Building on the service worker
streaming download, the zip transfer itself uses constant memory; folder
enumeration holds the file listing in memory and is capped at 5000 files per
download, above which the download is blocked with a message instead of
producing a truncated archive.
Also: individual expanded files can be removed from the pending download,
enumeration can be cancelled or retried, and empty/errored enumerations are
surfaced without starting a partial download.
#7044
51bb14dfdc4209938dd17480a967218585f8c8d4Thanks @bobbor! - feat(storage): service worker streaming zip downloadReplace the in-memory blob-based zip download with a service worker streaming
architecture for
StorageBrowsermulti-file downloads. Files are streamedsequentially into a zip archive delivered via a service worker, removing the
memory ceiling of the previous blob approach. Falls back to blob collection
when the service worker is unavailable (unsupported browser, missing file, or
insecure context).
Note: per-file progress is now reported download-only by design — it reflects
bytes read from S3, not zip finalization. Because entries are stored without
compression (
level: 0), the write/finalization phase is near-instant, soprogress transitions directly from downloading to complete without a separate
"zipping"/finishing phase.
Patch Changes
21fa602576b12fa59c0101b52eff8551d778352e,379f6c05bf36d0341de36441097ddb7984151e9c]:@aws-amplify/ui-react@6.15.5
Patch Changes
#6962
379f6c05bf36d0341de36441097ddb7984151e9cThanks @ashuvssut! - Fix Metro warnings by explicitly exporting dist CSS entrypoints in package.json. Added./dist/styles.cssexport aliases to prevent Metro from implicitly falling back to file-based resolution.Updated dependencies [
21fa602576b12fa59c0101b52eff8551d778352e]:@aws-amplify/ui-react-core@3.6.5
Patch Changes
21fa602576b12fa59c0101b52eff8551d778352e]:@aws-amplify/ui-react-core-notifications@2.3.5
Patch Changes
21fa602576b12fa59c0101b52eff8551d778352e]:@aws-amplify/ui-react-geo@2.3.5
Patch Changes
@aws-amplify/ui-react-liveness@3.6.8
Patch Changes
#7069
daa76aec4ffe2c0ed8cd381c54e4e95feff8097cThanks @pranavosu! - Widen@aws-sdk/client-rekognitionstreamingto^3.974.0and@aws-sdk/util-format-urlto^3.972.37. The previous exact pin on3.967.0transitively pinned@aws-sdk/core@3.967.0->@aws-sdk/xml-builder@3.965.0->fast-xml-parser@5.2.5, which consumers could not override without a forced resolution and which triggers scanner findings for CVE-2026-26278 and CVE-2026-25896. From3.974.0onward the SDK ranges its own@aws-sdk/coredependency, which resolves to a@aws-sdk/xml-builderthat no longer depends onfast-xml-parserat all, and future SDK patches now flow through without another pin bump.#6962
379f6c05bf36d0341de36441097ddb7984151e9cThanks @ashuvssut! - Fix Metro warnings by explicitly exporting dist CSS entrypoints in package.json. Added./dist/styles.cssexport aliases to prevent Metro from implicitly falling back to file-based resolution.Updated dependencies [
21fa602576b12fa59c0101b52eff8551d778352e,379f6c05bf36d0341de36441097ddb7984151e9c]:@aws-amplify/ui-react-native@2.7.5
Patch Changes
21fa602576b12fa59c0101b52eff8551d778352e]:@aws-amplify/ui-react-notifications@2.3.5
Patch Changes
21fa602576b12fa59c0101b52eff8551d778352e,379f6c05bf36d0341de36441097ddb7984151e9c]:@aws-amplify/ui-svelte@1.1.5
Patch Changes
21fa602576b12fa59c0101b52eff8551d778352e]:@aws-amplify/ui@6.15.5
Patch Changes
#7055
21fa602576b12fa59c0101b52eff8551d778352eThanks @ahmedhamouda78! - fix(ui): render locale-correct punctuation in Authenticator delivery messages (i18n)getDeliveryMessageTextjoined the translated delivery-message fragments with ahardcoded ASCII period, producing incorrect punctuation for locales whose
sentence terminator differs — e.g. Japanese and Chinese (which use the
ideographic full stop
。) and Thai (which uses none). The terminator is nowderived from the script of the surrounding translated copy, so each locale
renders its own punctuation.
This is an internal change with no public API impact: no translation keys are
added or changed, the
translate()signature is unchanged, existing customervocabulary overrides on the documented keys keep working, and English output is
byte-identical. Fixes Wrong, hardcoded punctuation in Japanese #6966.
@aws-amplify/ui-vue@4.4.5
Patch Changes
21fa602576b12fa59c0101b52eff8551d778352e]:@aws-amplify/ui-test-utils@0.1.5
Patch Changes
25e8d96a4c8bee19409cf44f2df7856b52e56260,51bb14dfdc4209938dd17480a967218585f8c8d4]: