adapter- core
analytics
diff --git a/packages/adapter-nextjs/CHANGELOG.md b/packages/adapter-nextjs/CHANGELOG.md
index 3497dfec206..bfa0c6f600a 100644
--- a/packages/adapter-nextjs/CHANGELOG.md
+++ b/packages/adapter-nextjs/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.2.16](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/adapter-nextjs@1.2.15...@aws-amplify/adapter-nextjs@1.2.16) (2024-09-03)
+
+### Bug Fixes
+
+- **adapter-nextjs:** duplicate response Set-Cookie headers in pages router ([#13765](https://github.com/aws-amplify/amplify-js/issues/13765)) ([3fedf63](https://github.com/aws-amplify/amplify-js/commit/3fedf6347823611ef5e28554911cf65c1419fce5))
+
## [1.2.15](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/adapter-nextjs@1.2.14...@aws-amplify/adapter-nextjs@1.2.15) (2024-08-26)
**Note:** Version bump only for package @aws-amplify/adapter-nextjs
diff --git a/packages/adapter-nextjs/__tests__/utils/createCookieStorageAdapterFromNextServerContext.test.ts b/packages/adapter-nextjs/__tests__/utils/createCookieStorageAdapterFromNextServerContext.test.ts
index e27b4243511..a42ec085e9c 100644
--- a/packages/adapter-nextjs/__tests__/utils/createCookieStorageAdapterFromNextServerContext.test.ts
+++ b/packages/adapter-nextjs/__tests__/utils/createCookieStorageAdapterFromNextServerContext.test.ts
@@ -412,6 +412,41 @@ describe('createCookieStorageAdapterFromNextServerContext', () => {
'key3=;Expires=Thu, 01 Jan 1970 00:00:00 GMT',
]);
});
+
+ it('does not add duplicate cookies when the cookies are defined in the response Set-Cookie headers', () => {
+ const mockExistingSetCookieValues = [
+ 'CognitoIdentityServiceProvider.1234.accessToken=1234;Path=/',
+ 'CognitoIdentityServiceProvider.1234.refreshToken=1234;Path=/',
+ 'CognitoIdentityServiceProvider.1234.identityId=;Expires=Thu, 01 Jan 1970 00:00:00 GMT',
+ ];
+
+ const request = new IncomingMessage(new Socket());
+ const response = new ServerResponse(request);
+ const appendHeaderSpy = jest.spyOn(response, 'appendHeader');
+ const getHeaderSpy = jest.spyOn(response, 'getHeader');
+
+ Object.defineProperty(request, 'cookies', {
+ get() {
+ return {};
+ },
+ });
+
+ getHeaderSpy.mockReturnValue(mockExistingSetCookieValues);
+
+ const result = createCookieStorageAdapterFromNextServerContext({
+ request: request as any,
+ response,
+ });
+
+ result.set('CognitoIdentityServiceProvider.1234.accessToken', '5678');
+ expect(appendHeaderSpy).not.toHaveBeenCalled();
+
+ result.set('CognitoIdentityServiceProvider.1234.refreshToken', '5678');
+ expect(appendHeaderSpy).not.toHaveBeenCalled();
+
+ result.delete('CognitoIdentityServiceProvider.1234.identityId');
+ expect(appendHeaderSpy).not.toHaveBeenCalled();
+ });
});
it('should throw error when no cookie storage adapter is created from the context', () => {
diff --git a/packages/adapter-nextjs/package.json b/packages/adapter-nextjs/package.json
index 6ba476b4989..da249883ca6 100644
--- a/packages/adapter-nextjs/package.json
+++ b/packages/adapter-nextjs/package.json
@@ -1,7 +1,7 @@
{
"author": "Amazon Web Services",
"name": "@aws-amplify/adapter-nextjs",
- "version": "1.2.15",
+ "version": "1.2.16",
"description": "The adapter for the supporting of using Amplify APIs in Next.js.",
"peerDependencies": {
"aws-amplify": "^6.0.7",
@@ -16,7 +16,7 @@
"@types/node": "^20.3.1",
"@types/react": "^18.2.13",
"@types/react-dom": "^18.2.6",
- "aws-amplify": "6.5.3",
+ "aws-amplify": "6.5.4",
"jest-fetch-mock": "3.0.3",
"next": ">= 13.5.0 < 15.0.0",
"typescript": "5.0.2"
diff --git a/packages/adapter-nextjs/src/utils/createCookieStorageAdapterFromNextServerContext.ts b/packages/adapter-nextjs/src/utils/createCookieStorageAdapterFromNextServerContext.ts
index 843235b7288..e3f99cbf96c 100644
--- a/packages/adapter-nextjs/src/utils/createCookieStorageAdapterFromNextServerContext.ts
+++ b/packages/adapter-nextjs/src/utils/createCookieStorageAdapterFromNextServerContext.ts
@@ -171,20 +171,44 @@ const createCookieStorageAdapterFromGetServerSidePropsContext = (
return allCookies;
},
set(name, value, options) {
+ const encodedName = ensureEncodedForJSCookie(name);
+
+ const existingValues = getExistingSetCookieValues(
+ response.getHeader('Set-Cookie'),
+ );
+
+ // if the cookies have already been set, we don't need to set them again.
+ if (
+ existingValues.findIndex(
+ cookieValue =>
+ cookieValue.startsWith(`${encodedName}=`) &&
+ !cookieValue.startsWith(`${encodedName}=;`),
+ ) > -1
+ ) {
+ return;
+ }
+
response.appendHeader(
'Set-Cookie',
- `${ensureEncodedForJSCookie(name)}=${value};${
+ `${encodedName}=${value};${
options ? serializeSetCookieOptions(options) : ''
}`,
);
},
delete(name) {
- response.appendHeader(
- 'Set-Cookie',
- `${ensureEncodedForJSCookie(
- name,
- )}=;Expires=${DATE_IN_THE_PAST.toUTCString()}`,
+ const encodedName = ensureEncodedForJSCookie(name);
+ const setCookieValue = `${encodedName}=;Expires=${DATE_IN_THE_PAST.toUTCString()}`;
+ const existingValues = getExistingSetCookieValues(
+ response.getHeader('Set-Cookie'),
);
+
+ // if the value for cookie deletion is already in the Set-Cookie header, we
+ // don't need to add the deletion value again.
+ if (existingValues.includes(setCookieValue)) {
+ return;
+ }
+
+ response.appendHeader('Set-Cookie', setCookieValue);
},
};
};
@@ -250,3 +274,8 @@ const serializeSetCookieOptions = (
// we are not using those chars in the auth keys.
const ensureEncodedForJSCookie = (name: string): string =>
encodeURIComponent(name).replace(/%(2[346B]|5E|60|7C)/g, decodeURIComponent);
+
+const getExistingSetCookieValues = (
+ values: number | string | string[] | undefined,
+): string[] =>
+ values === undefined ? [] : Array.isArray(values) ? values : [String(values)];
diff --git a/packages/analytics/CHANGELOG.md b/packages/analytics/CHANGELOG.md
index bac9f6f3afd..7b43dc3d4c2 100644
--- a/packages/analytics/CHANGELOG.md
+++ b/packages/analytics/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [7.0.46](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/analytics@7.0.45...@aws-amplify/analytics@7.0.46) (2024-09-03)
+
+**Note:** Version bump only for package @aws-amplify/analytics
+
## [7.0.45](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/analytics@7.0.44...@aws-amplify/analytics@7.0.45) (2024-08-26)
**Note:** Version bump only for package @aws-amplify/analytics
diff --git a/packages/analytics/package.json b/packages/analytics/package.json
index e4ca091e490..cccfb008b3e 100644
--- a/packages/analytics/package.json
+++ b/packages/analytics/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/analytics",
- "version": "7.0.45",
+ "version": "7.0.46",
"description": "Analytics category of aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
@@ -103,7 +103,7 @@
"@aws-amplify/core": "^6.1.0"
},
"devDependencies": {
- "@aws-amplify/core": "6.3.12",
+ "@aws-amplify/core": "6.3.13",
"@aws-amplify/react-native": "1.1.4",
"@aws-sdk/types": "3.398.0",
"typescript": "5.0.2"
diff --git a/packages/api-graphql/CHANGELOG.md b/packages/api-graphql/CHANGELOG.md
index 3d8d2889767..7e0bb6a244b 100644
--- a/packages/api-graphql/CHANGELOG.md
+++ b/packages/api-graphql/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.2.1](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-graphql@4.2.0...@aws-amplify/api-graphql@4.2.1) (2024-09-03)
+
+**Note:** Version bump only for package @aws-amplify/api-graphql
+
# [4.2.0](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-graphql@4.1.15...@aws-amplify/api-graphql@4.2.0) (2024-08-26)
### Features
diff --git a/packages/api-graphql/package.json b/packages/api-graphql/package.json
index 3ec73b8eff9..076ba2dc6ae 100644
--- a/packages/api-graphql/package.json
+++ b/packages/api-graphql/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/api-graphql",
- "version": "4.2.0",
+ "version": "4.2.1",
"description": "Api-graphql category of aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
@@ -84,8 +84,8 @@
"server"
],
"dependencies": {
- "@aws-amplify/api-rest": "4.0.45",
- "@aws-amplify/core": "6.3.12",
+ "@aws-amplify/api-rest": "4.0.46",
+ "@aws-amplify/core": "6.3.13",
"@aws-amplify/data-schema": "^1.0.0",
"@aws-sdk/types": "3.387.0",
"graphql": "15.8.0",
diff --git a/packages/api-rest/CHANGELOG.md b/packages/api-rest/CHANGELOG.md
index 8eeebc0574c..73b62a515fe 100644
--- a/packages/api-rest/CHANGELOG.md
+++ b/packages/api-rest/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.0.46](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-rest@4.0.45...@aws-amplify/api-rest@4.0.46) (2024-09-03)
+
+**Note:** Version bump only for package @aws-amplify/api-rest
+
## [4.0.45](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-rest@4.0.44...@aws-amplify/api-rest@4.0.45) (2024-08-26)
**Note:** Version bump only for package @aws-amplify/api-rest
diff --git a/packages/api-rest/package.json b/packages/api-rest/package.json
index f7a437275f8..916cd6df527 100644
--- a/packages/api-rest/package.json
+++ b/packages/api-rest/package.json
@@ -1,7 +1,7 @@
{
"name": "@aws-amplify/api-rest",
"private": false,
- "version": "4.0.45",
+ "version": "4.0.46",
"description": "Api-rest category of aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
@@ -87,7 +87,7 @@
"@aws-amplify/core": "^6.1.0"
},
"devDependencies": {
- "@aws-amplify/core": "6.3.12",
+ "@aws-amplify/core": "6.3.13",
"@aws-amplify/react-native": "1.1.4",
"typescript": "5.0.2"
},
diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md
index b139c245189..a405d39e4b7 100644
--- a/packages/api/CHANGELOG.md
+++ b/packages/api/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.0.48](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api@6.0.47...@aws-amplify/api@6.0.48) (2024-09-03)
+
+**Note:** Version bump only for package @aws-amplify/api
+
## [6.0.47](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api@6.0.46...@aws-amplify/api@6.0.47) (2024-08-26)
**Note:** Version bump only for package @aws-amplify/api
diff --git a/packages/api/package.json b/packages/api/package.json
index 3138bfe21d9..649dad7c19a 100644
--- a/packages/api/package.json
+++ b/packages/api/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/api",
- "version": "6.0.47",
+ "version": "6.0.48",
"description": "Api category of aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
@@ -79,8 +79,8 @@
"server"
],
"dependencies": {
- "@aws-amplify/api-graphql": "4.2.0",
- "@aws-amplify/api-rest": "4.0.45",
+ "@aws-amplify/api-graphql": "4.2.1",
+ "@aws-amplify/api-rest": "4.0.46",
"tslib": "^2.5.0"
}
}
diff --git a/packages/auth/CHANGELOG.md b/packages/auth/CHANGELOG.md
index 71d9453b04c..69b5c0b3b1a 100644
--- a/packages/auth/CHANGELOG.md
+++ b/packages/auth/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.3.17](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/auth@6.3.16...@aws-amplify/auth@6.3.17) (2024-09-03)
+
+**Note:** Version bump only for package @aws-amplify/auth
+
## [6.3.16](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/auth@6.3.15...@aws-amplify/auth@6.3.16) (2024-08-26)
**Note:** Version bump only for package @aws-amplify/auth
diff --git a/packages/auth/package.json b/packages/auth/package.json
index 98def77b18a..7963232d851 100644
--- a/packages/auth/package.json
+++ b/packages/auth/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/auth",
- "version": "6.3.16",
+ "version": "6.3.17",
"description": "Auth category of aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
@@ -97,7 +97,7 @@
"@aws-amplify/core": "^6.1.0"
},
"devDependencies": {
- "@aws-amplify/core": "6.3.12",
+ "@aws-amplify/core": "6.3.13",
"@aws-amplify/react-native": "1.1.4",
"@jest/test-sequencer": "^29.7.0",
"typescript": "5.0.2"
diff --git a/packages/aws-amplify/CHANGELOG.md b/packages/aws-amplify/CHANGELOG.md
index 80fe546ca84..b9302cbdc77 100644
--- a/packages/aws-amplify/CHANGELOG.md
+++ b/packages/aws-amplify/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.5.4](https://github.com/aws-amplify/amplify-js/compare/aws-amplify@6.5.3...aws-amplify@6.5.4) (2024-09-03)
+
+**Note:** Version bump only for package aws-amplify
+
## [6.5.3](https://github.com/aws-amplify/amplify-js/compare/aws-amplify@6.5.2...aws-amplify@6.5.3) (2024-08-26)
**Note:** Version bump only for package aws-amplify
diff --git a/packages/aws-amplify/package.json b/packages/aws-amplify/package.json
index c060dbbad92..b79b7c15eaa 100644
--- a/packages/aws-amplify/package.json
+++ b/packages/aws-amplify/package.json
@@ -1,6 +1,6 @@
{
"name": "aws-amplify",
- "version": "6.5.3",
+ "version": "6.5.4",
"description": "AWS Amplify is a JavaScript library for Frontend and mobile developers building cloud-enabled applications.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
@@ -276,13 +276,13 @@
"utils"
],
"dependencies": {
- "@aws-amplify/analytics": "7.0.45",
- "@aws-amplify/api": "6.0.47",
- "@aws-amplify/auth": "6.3.16",
- "@aws-amplify/core": "6.3.12",
- "@aws-amplify/datastore": "5.0.47",
- "@aws-amplify/notifications": "2.0.45",
- "@aws-amplify/storage": "6.6.3",
+ "@aws-amplify/analytics": "7.0.46",
+ "@aws-amplify/api": "6.0.48",
+ "@aws-amplify/auth": "6.3.17",
+ "@aws-amplify/core": "6.3.13",
+ "@aws-amplify/datastore": "5.0.48",
+ "@aws-amplify/notifications": "2.0.46",
+ "@aws-amplify/storage": "6.6.4",
"tslib": "^2.5.0"
},
"devDependencies": {
diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md
index f2b792d3443..5dde8f051aa 100644
--- a/packages/core/CHANGELOG.md
+++ b/packages/core/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.3.13](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/core@6.3.12...@aws-amplify/core@6.3.13) (2024-09-03)
+
+**Note:** Version bump only for package @aws-amplify/core
+
## [6.3.12](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/core@6.3.11...@aws-amplify/core@6.3.12) (2024-08-26)
**Note:** Version bump only for package @aws-amplify/core
diff --git a/packages/core/metadata b/packages/core/metadata
index 59b08aa26c5..8671bb0c082 100644
--- a/packages/core/metadata
+++ b/packages/core/metadata
@@ -1 +1 @@
-f44227795
+1b30108ce
diff --git a/packages/core/package.json b/packages/core/package.json
index ab70f553ce6..3c4d69e7382 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/core",
- "version": "6.3.12",
+ "version": "6.3.13",
"description": "Core category of aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
diff --git a/packages/datastore-storage-adapter/CHANGELOG.md b/packages/datastore-storage-adapter/CHANGELOG.md
index 244bbd8d7f8..d29a6863038 100644
--- a/packages/datastore-storage-adapter/CHANGELOG.md
+++ b/packages/datastore-storage-adapter/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.1.48](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore-storage-adapter@2.1.47...@aws-amplify/datastore-storage-adapter@2.1.48) (2024-09-03)
+
+**Note:** Version bump only for package @aws-amplify/datastore-storage-adapter
+
## [2.1.47](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore-storage-adapter@2.1.46...@aws-amplify/datastore-storage-adapter@2.1.47) (2024-08-26)
**Note:** Version bump only for package @aws-amplify/datastore-storage-adapter
diff --git a/packages/datastore-storage-adapter/package.json b/packages/datastore-storage-adapter/package.json
index f0b2caa1671..ec6dff8e576 100644
--- a/packages/datastore-storage-adapter/package.json
+++ b/packages/datastore-storage-adapter/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/datastore-storage-adapter",
- "version": "2.1.47",
+ "version": "2.1.48",
"description": "SQLite storage adapter for Amplify DataStore ",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
@@ -36,8 +36,8 @@
"@aws-amplify/core": "^6.1.0"
},
"devDependencies": {
- "@aws-amplify/core": "6.3.12",
- "@aws-amplify/datastore": "5.0.47",
+ "@aws-amplify/core": "6.3.13",
+ "@aws-amplify/datastore": "5.0.48",
"@types/react-native-sqlite-storage": "5.0.1",
"expo-file-system": "13.1.4",
"expo-sqlite": "10.1.0",
diff --git a/packages/datastore/CHANGELOG.md b/packages/datastore/CHANGELOG.md
index e46aa207480..c3caab6feea 100644
--- a/packages/datastore/CHANGELOG.md
+++ b/packages/datastore/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.0.48](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@5.0.47...@aws-amplify/datastore@5.0.48) (2024-09-03)
+
+**Note:** Version bump only for package @aws-amplify/datastore
+
## [5.0.47](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@5.0.46...@aws-amplify/datastore@5.0.47) (2024-08-26)
**Note:** Version bump only for package @aws-amplify/datastore
diff --git a/packages/datastore/package.json b/packages/datastore/package.json
index 746b1ea01d1..3e489040e51 100644
--- a/packages/datastore/package.json
+++ b/packages/datastore/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/datastore",
- "version": "5.0.47",
+ "version": "5.0.48",
"description": "AppSyncLocal support for aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
@@ -44,7 +44,7 @@
"src"
],
"dependencies": {
- "@aws-amplify/api": "6.0.47",
+ "@aws-amplify/api": "6.0.48",
"buffer": "4.9.2",
"idb": "5.0.6",
"immer": "9.0.6",
@@ -55,7 +55,7 @@
"@aws-amplify/core": "^6.1.0"
},
"devDependencies": {
- "@aws-amplify/core": "6.3.12",
+ "@aws-amplify/core": "6.3.13",
"@aws-amplify/react-native": "1.1.4",
"@types/uuid-validate": "^0.0.1",
"dexie": "3.2.2",
diff --git a/packages/geo/CHANGELOG.md b/packages/geo/CHANGELOG.md
index 3048aa0318b..0dcb421354e 100644
--- a/packages/geo/CHANGELOG.md
+++ b/packages/geo/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.0.46](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/geo@3.0.45...@aws-amplify/geo@3.0.46) (2024-09-03)
+
+**Note:** Version bump only for package @aws-amplify/geo
+
## [3.0.45](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/geo@3.0.44...@aws-amplify/geo@3.0.45) (2024-08-26)
**Note:** Version bump only for package @aws-amplify/geo
diff --git a/packages/geo/package.json b/packages/geo/package.json
index af194997ed8..3568904aa72 100644
--- a/packages/geo/package.json
+++ b/packages/geo/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/geo",
- "version": "3.0.45",
+ "version": "3.0.46",
"description": "Geo category for aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
@@ -76,7 +76,7 @@
"@aws-amplify/core": "^6.1.0"
},
"devDependencies": {
- "@aws-amplify/core": "6.3.12",
+ "@aws-amplify/core": "6.3.13",
"typescript": "5.0.2"
},
"size-limit": [
diff --git a/packages/interactions/CHANGELOG.md b/packages/interactions/CHANGELOG.md
index 2d685d3e796..f3546e0a581 100644
--- a/packages/interactions/CHANGELOG.md
+++ b/packages/interactions/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.0.45](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/interactions@6.0.44...@aws-amplify/interactions@6.0.45) (2024-09-03)
+
+**Note:** Version bump only for package @aws-amplify/interactions
+
## [6.0.44](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/interactions@6.0.43...@aws-amplify/interactions@6.0.44) (2024-08-26)
**Note:** Version bump only for package @aws-amplify/interactions
diff --git a/packages/interactions/package.json b/packages/interactions/package.json
index ac7e818c4d9..45f1eaf28ba 100644
--- a/packages/interactions/package.json
+++ b/packages/interactions/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/interactions",
- "version": "6.0.44",
+ "version": "6.0.45",
"description": "Interactions category of aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
@@ -81,7 +81,7 @@
"uuid": "^9.0.0"
},
"devDependencies": {
- "@aws-amplify/core": "6.3.12",
+ "@aws-amplify/core": "6.3.13",
"typescript": "^5.0.2"
},
"size-limit": [
diff --git a/packages/notifications/CHANGELOG.md b/packages/notifications/CHANGELOG.md
index 7dce35dbf64..d02f09ba4f7 100644
--- a/packages/notifications/CHANGELOG.md
+++ b/packages/notifications/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.0.46](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/notifications@2.0.45...@aws-amplify/notifications@2.0.46) (2024-09-03)
+
+**Note:** Version bump only for package @aws-amplify/notifications
+
## [2.0.45](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/notifications@2.0.44...@aws-amplify/notifications@2.0.45) (2024-08-26)
**Note:** Version bump only for package @aws-amplify/notifications
diff --git a/packages/notifications/package.json b/packages/notifications/package.json
index 02886fc8ad6..b8d5f42ffba 100644
--- a/packages/notifications/package.json
+++ b/packages/notifications/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/notifications",
- "version": "2.0.45",
+ "version": "2.0.46",
"description": "Notifications category of aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
@@ -98,7 +98,7 @@
"@aws-amplify/core": "^6.1.0"
},
"devDependencies": {
- "@aws-amplify/core": "6.3.12",
+ "@aws-amplify/core": "6.3.13",
"@aws-amplify/react-native": "1.1.4",
"typescript": "5.0.2"
}
diff --git a/packages/predictions/CHANGELOG.md b/packages/predictions/CHANGELOG.md
index 584b8adb6d5..344aafe94bf 100644
--- a/packages/predictions/CHANGELOG.md
+++ b/packages/predictions/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.1.21](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/predictions@6.1.20...@aws-amplify/predictions@6.1.21) (2024-09-03)
+
+**Note:** Version bump only for package @aws-amplify/predictions
+
## [6.1.20](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/predictions@6.1.19...@aws-amplify/predictions@6.1.20) (2024-08-26)
**Note:** Version bump only for package @aws-amplify/predictions
diff --git a/packages/predictions/package.json b/packages/predictions/package.json
index 6f0a494acf1..21d5fbb8c87 100644
--- a/packages/predictions/package.json
+++ b/packages/predictions/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/predictions",
- "version": "6.1.20",
+ "version": "6.1.21",
"description": "Machine learning category of aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
@@ -43,7 +43,7 @@
"src"
],
"dependencies": {
- "@aws-amplify/storage": "6.6.3",
+ "@aws-amplify/storage": "6.6.4",
"@aws-sdk/client-comprehend": "3.621.0",
"@aws-sdk/client-polly": "3.621.0",
"@aws-sdk/client-rekognition": "3.621.0",
@@ -59,7 +59,7 @@
"@aws-amplify/core": "^6.1.0"
},
"devDependencies": {
- "@aws-amplify/core": "6.3.12",
+ "@aws-amplify/core": "6.3.13",
"typescript": "5.0.2"
},
"size-limit": [
diff --git a/packages/pubsub/CHANGELOG.md b/packages/pubsub/CHANGELOG.md
index 38fc679ea27..44ceecbb0d3 100644
--- a/packages/pubsub/CHANGELOG.md
+++ b/packages/pubsub/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.1.21](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/pubsub@6.1.20...@aws-amplify/pubsub@6.1.21) (2024-09-03)
+
+**Note:** Version bump only for package @aws-amplify/pubsub
+
## [6.1.20](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/pubsub@6.1.19...@aws-amplify/pubsub@6.1.20) (2024-08-26)
**Note:** Version bump only for package @aws-amplify/pubsub
diff --git a/packages/pubsub/package.json b/packages/pubsub/package.json
index 72d767c182d..2a2479e34fd 100644
--- a/packages/pubsub/package.json
+++ b/packages/pubsub/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/pubsub",
- "version": "6.1.20",
+ "version": "6.1.21",
"description": "Pubsub category of aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
@@ -73,7 +73,7 @@
"mqtt"
],
"dependencies": {
- "@aws-amplify/auth": "6.3.16",
+ "@aws-amplify/auth": "6.3.17",
"buffer": "4.9.2",
"graphql": "15.8.0",
"rxjs": "^7.8.1",
@@ -84,7 +84,7 @@
"@aws-amplify/core": "^6.1.0"
},
"devDependencies": {
- "@aws-amplify/core": "6.3.12",
+ "@aws-amplify/core": "6.3.13",
"typescript": "5.0.2"
},
"size-limit": [
diff --git a/packages/storage/CHANGELOG.md b/packages/storage/CHANGELOG.md
index e8d1188a265..6e447c89979 100644
--- a/packages/storage/CHANGELOG.md
+++ b/packages/storage/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.6.4](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/storage@6.6.3...@aws-amplify/storage@6.6.4) (2024-09-03)
+
+**Note:** Version bump only for package @aws-amplify/storage
+
## [6.6.3](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/storage@6.6.2...@aws-amplify/storage@6.6.3) (2024-08-26)
**Note:** Version bump only for package @aws-amplify/storage
diff --git a/packages/storage/package.json b/packages/storage/package.json
index 700f467486e..f9c4d56098b 100644
--- a/packages/storage/package.json
+++ b/packages/storage/package.json
@@ -1,6 +1,6 @@
{
"name": "@aws-amplify/storage",
- "version": "6.6.3",
+ "version": "6.6.4",
"description": "Storage category of aws-amplify",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
@@ -101,7 +101,7 @@
"@aws-amplify/core": "^6.1.0"
},
"devDependencies": {
- "@aws-amplify/core": "6.3.12",
+ "@aws-amplify/core": "6.3.13",
"@aws-amplify/react-native": "1.1.4",
"typescript": "5.0.2"
}
diff --git a/scripts/tsc-compliance-test/CHANGELOG.md b/scripts/tsc-compliance-test/CHANGELOG.md
index d1eb6394211..b91050c6566 100644
--- a/scripts/tsc-compliance-test/CHANGELOG.md
+++ b/scripts/tsc-compliance-test/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.1.51](https://github.com/aws-amplify/amplify-js/compare/tsc-compliance-test@0.1.50...tsc-compliance-test@0.1.51) (2024-09-03)
+
+**Note:** Version bump only for package tsc-compliance-test
+
## [0.1.50](https://github.com/aws-amplify/amplify-js/compare/tsc-compliance-test@0.1.49...tsc-compliance-test@0.1.50) (2024-08-26)
**Note:** Version bump only for package tsc-compliance-test
diff --git a/scripts/tsc-compliance-test/package.json b/scripts/tsc-compliance-test/package.json
index a3ac1b25c80..8025b0abd31 100644
--- a/scripts/tsc-compliance-test/package.json
+++ b/scripts/tsc-compliance-test/package.json
@@ -1,11 +1,11 @@
{
"name": "tsc-compliance-test",
- "version": "0.1.50",
+ "version": "0.1.51",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/node": "16.18.82",
- "aws-amplify": "6.5.3",
+ "aws-amplify": "6.5.4",
"typescript": "4.2.x"
},
"scripts": {