Skip to content

Commit cedd9b7

Browse files
fix(storage-browser): hotfix move useProcessTasks concurrency option to dispatch handler (#6529)
* fix(storage-browser): move useProcessTasks concurrency option to dispatch handler (#6528) * fix(storage-browser): move useProcessTasks concurrency option to dispatch handler (#6525) * chore: fix publish-hotfix actions (#6527) * Version Packages * chore: bump size limit --------- Co-authored-by: Caleb Pollman <[email protected]> * chore: remove changeset for hotfixed commit --------- Co-authored-by: Caleb Pollman <[email protected]>
1 parent b77cbba commit cedd9b7

File tree

10 files changed

+22
-14
lines changed

10 files changed

+22
-14
lines changed

.changeset/nasty-months-teach.md

-5
This file was deleted.

docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
},
2626
"dependencies": {
2727
"@aws-amplify/ui-react": "6.11.1",
28-
"@aws-amplify/ui-react-storage": "3.10.1",
28+
"@aws-amplify/ui-react-storage": "3.10.2",
2929
"@docsearch/react": "3",
3030
"@mdx-js/loader": "^2.1.0",
3131
"@mdx-js/mdx": "^2.1.0",

examples/next-app-router/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"@aws-amplify/ui-react": "6.11.1",
13-
"@aws-amplify/ui-react-storage": "3.10.1",
13+
"@aws-amplify/ui-react-storage": "3.10.2",
1414
"react": "^18.3.0",
1515
"next": "^14.2.25",
1616
"react-dom": "^18",

examples/next/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@aws-amplify/ui-react-geo": "^2.2.8",
1616
"@aws-amplify/ui-react-liveness": "^3.3.8",
1717
"@aws-amplify/ui-react-notifications": "^2.2.8",
18-
"@aws-amplify/ui-react-storage": "^3.10.1",
18+
"@aws-amplify/ui-react-storage": "^3.10.2",
1919
"@aws-sdk/credential-providers": "^3.370.0",
2020
"next": "^14.2.25",
2121
"next-global-css": "^1.1.1",

examples/react-router/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"@aws-amplify/ui-react": "6.11.1",
14-
"@aws-amplify/ui-react-storage": "3.10.1",
14+
"@aws-amplify/ui-react-storage": "3.10.2",
1515
"react": "^18.3.1",
1616
"react-dom": "^18.3.1",
1717
"react-router-dom": "^7.1.3"

packages/react-storage/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @aws-amplify/ui-react-storage
22

3+
## 3.10.2
4+
5+
### Patch Changes
6+
7+
- [`cf63046c171b5dd349121d0d8bbf2282fb71aae4`](https://github.com/aws-amplify/amplify-ui/commit/cf63046c171b5dd349121d0d8bbf2282fb71aae4) Thanks [@calebpollman](https://github.com/calebpollman)! - fix(storage-browser): move useProcessTasks concurrency option to dispatch handler
8+
39
## 3.10.1
410

511
### Patch Changes

packages/react-storage/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-amplify/ui-react-storage",
3-
"version": "3.10.1",
3+
"version": "3.10.2",
44
"main": "dist/index.js",
55
"module": "dist/esm/index.mjs",
66
"exports": {
@@ -66,7 +66,7 @@
6666
"name": "createStorageBrowser",
6767
"path": "dist/esm/browser.mjs",
6868
"import": "{ createStorageBrowser }",
69-
"limit": "64.13 kB",
69+
"limit": "64.19 kB",
7070
"ignore": [
7171
"@aws-amplify/storage"
7272
]

packages/react-storage/src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '3.10.1';
1+
export const VERSION = '3.10.2';

packages/test-utils/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @aws-amplify/ui-test-utils
22

3+
## 0.0.4
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`cf63046c171b5dd349121d0d8bbf2282fb71aae4`](https://github.com/aws-amplify/amplify-ui/commit/cf63046c171b5dd349121d0d8bbf2282fb71aae4)]:
8+
- @aws-amplify/ui-react-storage@3.10.2
9+
310
## 0.0.3
411

512
### Patch Changes

packages/test-utils/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@aws-amplify/ui-test-utils",
33
"private": true,
4-
"version": "0.0.3",
4+
"version": "0.0.4",
55
"description": "Test utils for Amplify Connected Component e2e tests",
66
"exports": {
77
"./*": {
@@ -26,7 +26,7 @@
2626
"typecheck": "tsc --noEmit"
2727
},
2828
"dependencies": {
29-
"@aws-amplify/ui-react-storage": "3.10.1",
29+
"@aws-amplify/ui-react-storage": "3.10.2",
3030
"tslib": "^2.5.2"
3131
}
3232
}

0 commit comments

Comments
 (0)