diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index a24f7b2ebbb..b6574c0fc16 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -15,24 +15,24 @@ # The following paths involve server-side use cases, token/user session management. # Changes made to these paths requires additional reviews and approvals. -/packages/auth @haverchuck @cshfang @HuiSF @pranavosu -/packages/aws-amplify/src/adapter-core @haverchuck @cshfang @HuiSF @pranavosu -/packages/core/src/adapterCore @haverchuck @cshfang @HuiSF @pranavosu -/packages/core/src/singleton @haverchuck @cshfang @HuiSF @pranavosu -/packages/core/src/utils/convert @haverchuck @cshfang @HuiSF @pranavosu -/packages/core/src/utils/WordArray.ts @haverchuck @cshfang @HuiSF @pranavosu -/packages/core/src/storage @haverchuck @cshfang @HuiSF @pranavosu -/packages/core/src/utils/generateRandomString.ts @haverchuck @cshfang @HuiSF @pranavosu -/packages/core/src/utils/globalHelpers @haverchuck @cshfang @HuiSF @pranavosu -/packages/core/src/utils/urlSafeDecode.ts @haverchuck @cshfang @HuiSF @pranavosu -/packages/core/src/awsClients/cognitoIdentity @haverchuck @cshfang @HuiSF @pranavosu -/packages/core/src/clients/internal @haverchuck @cshfang @HuiSF @pranavosu -/packages/core/src/Hub @haverchuck @cshfang @HuiSF @pranavosu -/packages/adapter-nextjs @haverchuck @cshfang @HuiSF @pranavosu -/packages/rtn-web-browser @haverchuck @cshfang @HuiSF @pranavosu -/packages/storage/src/providers/s3/apis/internal @haverchuck @cshfang @HuiSF @pranavosu -/packages/storage/src/providers/s3/apis/server @haverchuck @cshfang @HuiSF @pranavosu -/packages/api-rest/src/apis/server.ts @haverchuck @cshfang @HuiSF @pranavosu -/packages/api-rest/src/apis/common/internalPost.ts @haverchuck @cshfang @HuiSF @pranavosu -/packages/api-graphql/src/server @haverchuck @cshfang @HuiSF @pranavosu -/packages/api-graphql/src/internals/server @haverchuck @cshfang @HuiSF @pranavosu +/packages/auth @sktimalsina @cshfang @HuiSF @pranavosu +/packages/aws-amplify/src/adapter-core @sktimalsina @cshfang @HuiSF @pranavosu +/packages/core/src/adapterCore @sktimalsina @cshfang @HuiSF @pranavosu +/packages/core/src/singleton @sktimalsina @cshfang @HuiSF @pranavosu +/packages/core/src/utils/convert @sktimalsina @cshfang @HuiSF @pranavosu +/packages/core/src/utils/WordArray.ts @sktimalsina @cshfang @HuiSF @pranavosu +/packages/core/src/storage @sktimalsina @cshfang @HuiSF @pranavosu +/packages/core/src/utils/generateRandomString.ts @sktimalsina @cshfang @HuiSF @pranavosu +/packages/core/src/utils/globalHelpers @sktimalsina @cshfang @HuiSF @pranavosu +/packages/core/src/utils/urlSafeDecode.ts @sktimalsina @cshfang @HuiSF @pranavosu +/packages/core/src/awsClients/cognitoIdentity @sktimalsina @cshfang @HuiSF @pranavosu +/packages/core/src/clients/internal @sktimalsina @cshfang @HuiSF @pranavosu +/packages/core/src/Hub @sktimalsina @cshfang @HuiSF @pranavosu +/packages/adapter-nextjs @sktimalsina @cshfang @HuiSF @pranavosu +/packages/rtn-web-browser @sktimalsina @cshfang @HuiSF @pranavosu +/packages/storage/src/providers/s3/apis/internal @sktimalsina @cshfang @HuiSF @pranavosu +/packages/storage/src/providers/s3/apis/server @sktimalsina @cshfang @HuiSF @pranavosu +/packages/api-rest/src/apis/server.ts @sktimalsina @cshfang @HuiSF @pranavosu +/packages/api-rest/src/apis/common/internalPost.ts @sktimalsina @cshfang @HuiSF @pranavosu +/packages/api-graphql/src/server @sktimalsina @cshfang @HuiSF @pranavosu +/packages/api-graphql/src/internals/server @sktimalsina @cshfang @HuiSF @pranavosu diff --git a/docs/api/interfaces/_aws_amplify_adapter_nextjs.index._Reference_Types_.AmplifyOutputsAuthProperties.html b/docs/api/interfaces/_aws_amplify_adapter_nextjs.index._Reference_Types_.AmplifyOutputsAuthProperties.html index 13a2463e805..98b4e0a9869 100644 --- a/docs/api/interfaces/_aws_amplify_adapter_nextjs.index._Reference_Types_.AmplifyOutputsAuthProperties.html +++ b/docs/api/interfaces/_aws_amplify_adapter_nextjs.index._Reference_Types_.AmplifyOutputsAuthProperties.html @@ -1,5 +1,5 @@ AmplifyOutputsAuthProperties | Amplify JS API Documentation -
interface AmplifyOutputsAuthProperties {
    authentication_flow_type?: "USER_SRP_AUTH" | "CUSTOM_AUTH";
    aws_region: string;
    groups?: Record<string, UserGroupPrecedence>[];
    identity_pool_id?: string;
    mfa_configuration?: string;
    mfa_methods?: string[];
    oauth?: {
        domain: string;
        identity_providers: string[];
        redirect_sign_in_uri: string[];
        redirect_sign_out_uri: string[];
        response_type: string;
        scopes: string[];
    };
    password_policy?: {
        min_length: number;
        require_lowercase: boolean;
        require_numbers: boolean;
        require_symbols: boolean;
        require_uppercase: boolean;
    };
    standard_required_attributes?: string[];
    unauthenticated_identities_enabled?: boolean;
    user_pool_client_id: string;
    user_pool_id: string;
    user_verification_types?: string[];
    username_attributes?: string[];
}

Properties

authentication_flow_type? +
interface AmplifyOutputsAuthProperties {
    authentication_flow_type?: "USER_SRP_AUTH" | "CUSTOM_AUTH";
    aws_region: string;
    groups?: Partial<Record<string, UserGroupPrecedence>>[];
    identity_pool_id?: string;
    mfa_configuration?: string;
    mfa_methods?: string[];
    oauth?: {
        domain: string;
        identity_providers: string[];
        redirect_sign_in_uri: string[];
        redirect_sign_out_uri: string[];
        response_type: string;
        scopes: string[];
    };
    password_policy?: {
        min_length: number;
        require_lowercase: boolean;
        require_numbers: boolean;
        require_symbols: boolean;
        require_uppercase: boolean;
    };
    standard_required_attributes?: string[];
    unauthenticated_identities_enabled?: boolean;
    user_pool_client_id: string;
    user_pool_id: string;
    user_verification_types?: string[];
    username_attributes?: string[];
}

Properties

authentication_flow_type?: "USER_SRP_AUTH" | "CUSTOM_AUTH"
aws_region: string
groups?: Record<string, UserGroupPrecedence>[]
identity_pool_id?: string
mfa_configuration?: string
mfa_methods?: string[]
oauth?: {
    domain: string;
    identity_providers: string[];
    redirect_sign_in_uri: string[];
    redirect_sign_out_uri: string[];
    response_type: string;
    scopes: string[];
}

Type declaration

  • domain: string
  • identity_providers: string[]
  • redirect_sign_in_uri: string[]
  • redirect_sign_out_uri: string[]
  • response_type: string
  • scopes: string[]
password_policy?: {
    min_length: number;
    require_lowercase: boolean;
    require_numbers: boolean;
    require_symbols: boolean;
    require_uppercase: boolean;
}

Type declaration

  • min_length: number
  • require_lowercase: boolean
  • require_numbers: boolean
  • require_symbols: boolean
  • require_uppercase: boolean
standard_required_attributes?: string[]
unauthenticated_identities_enabled?: boolean
user_pool_client_id: string
user_pool_id: string
user_verification_types?: string[]
username_attributes?: string[]
\ No newline at end of file +

Properties

authentication_flow_type?: "USER_SRP_AUTH" | "CUSTOM_AUTH"
aws_region: string
groups?: Partial<Record<string, UserGroupPrecedence>>[]
identity_pool_id?: string
mfa_configuration?: string
mfa_methods?: string[]
oauth?: {
    domain: string;
    identity_providers: string[];
    redirect_sign_in_uri: string[];
    redirect_sign_out_uri: string[];
    response_type: string;
    scopes: string[];
}

Type declaration

  • domain: string
  • identity_providers: string[]
  • redirect_sign_in_uri: string[]
  • redirect_sign_out_uri: string[]
  • response_type: string
  • scopes: string[]
password_policy?: {
    min_length: number;
    require_lowercase: boolean;
    require_numbers: boolean;
    require_symbols: boolean;
    require_uppercase: boolean;
}

Type declaration

  • min_length: number
  • require_lowercase: boolean
  • require_numbers: boolean
  • require_symbols: boolean
  • require_uppercase: boolean
standard_required_attributes?: string[]
unauthenticated_identities_enabled?: boolean
user_pool_client_id: string
user_pool_id: string
user_verification_types?: string[]
username_attributes?: string[]
\ No newline at end of file diff --git a/docs/api/interfaces/aws_amplify.adapter_core._Reference_Types_.AmplifyOutputsAuthProperties.html b/docs/api/interfaces/aws_amplify.adapter_core._Reference_Types_.AmplifyOutputsAuthProperties.html index e14cc2e901f..a393f563bf1 100644 --- a/docs/api/interfaces/aws_amplify.adapter_core._Reference_Types_.AmplifyOutputsAuthProperties.html +++ b/docs/api/interfaces/aws_amplify.adapter_core._Reference_Types_.AmplifyOutputsAuthProperties.html @@ -1,5 +1,5 @@ AmplifyOutputsAuthProperties | Amplify JS API Documentation -
interface AmplifyOutputsAuthProperties {
    authentication_flow_type?: "USER_SRP_AUTH" | "CUSTOM_AUTH";
    aws_region: string;
    groups?: Record<string, UserGroupPrecedence>[];
    identity_pool_id?: string;
    mfa_configuration?: string;
    mfa_methods?: string[];
    oauth?: {
        domain: string;
        identity_providers: string[];
        redirect_sign_in_uri: string[];
        redirect_sign_out_uri: string[];
        response_type: string;
        scopes: string[];
    };
    password_policy?: {
        min_length: number;
        require_lowercase: boolean;
        require_numbers: boolean;
        require_symbols: boolean;
        require_uppercase: boolean;
    };
    standard_required_attributes?: string[];
    unauthenticated_identities_enabled?: boolean;
    user_pool_client_id: string;
    user_pool_id: string;
    user_verification_types?: string[];
    username_attributes?: string[];
}

Properties

authentication_flow_type? +
interface AmplifyOutputsAuthProperties {
    authentication_flow_type?: "USER_SRP_AUTH" | "CUSTOM_AUTH";
    aws_region: string;
    groups?: Partial<Record<string, UserGroupPrecedence>>[];
    identity_pool_id?: string;
    mfa_configuration?: string;
    mfa_methods?: string[];
    oauth?: {
        domain: string;
        identity_providers: string[];
        redirect_sign_in_uri: string[];
        redirect_sign_out_uri: string[];
        response_type: string;
        scopes: string[];
    };
    password_policy?: {
        min_length: number;
        require_lowercase: boolean;
        require_numbers: boolean;
        require_symbols: boolean;
        require_uppercase: boolean;
    };
    standard_required_attributes?: string[];
    unauthenticated_identities_enabled?: boolean;
    user_pool_client_id: string;
    user_pool_id: string;
    user_verification_types?: string[];
    username_attributes?: string[];
}

Properties

authentication_flow_type?: "USER_SRP_AUTH" | "CUSTOM_AUTH"
aws_region: string
groups?: Record<string, UserGroupPrecedence>[]
identity_pool_id?: string
mfa_configuration?: string
mfa_methods?: string[]
oauth?: {
    domain: string;
    identity_providers: string[];
    redirect_sign_in_uri: string[];
    redirect_sign_out_uri: string[];
    response_type: string;
    scopes: string[];
}

Type declaration

  • domain: string
  • identity_providers: string[]
  • redirect_sign_in_uri: string[]
  • redirect_sign_out_uri: string[]
  • response_type: string
  • scopes: string[]
password_policy?: {
    min_length: number;
    require_lowercase: boolean;
    require_numbers: boolean;
    require_symbols: boolean;
    require_uppercase: boolean;
}

Type declaration

  • min_length: number
  • require_lowercase: boolean
  • require_numbers: boolean
  • require_symbols: boolean
  • require_uppercase: boolean
standard_required_attributes?: string[]
unauthenticated_identities_enabled?: boolean
user_pool_client_id: string
user_pool_id: string
user_verification_types?: string[]
username_attributes?: string[]
\ No newline at end of file +

Properties

authentication_flow_type?: "USER_SRP_AUTH" | "CUSTOM_AUTH"
aws_region: string
groups?: Partial<Record<string, UserGroupPrecedence>>[]
identity_pool_id?: string
mfa_configuration?: string
mfa_methods?: string[]
oauth?: {
    domain: string;
    identity_providers: string[];
    redirect_sign_in_uri: string[];
    redirect_sign_out_uri: string[];
    response_type: string;
    scopes: string[];
}

Type declaration

  • domain: string
  • identity_providers: string[]
  • redirect_sign_in_uri: string[]
  • redirect_sign_out_uri: string[]
  • response_type: string
  • scopes: string[]
password_policy?: {
    min_length: number;
    require_lowercase: boolean;
    require_numbers: boolean;
    require_symbols: boolean;
    require_uppercase: boolean;
}

Type declaration

  • min_length: number
  • require_lowercase: boolean
  • require_numbers: boolean
  • require_symbols: boolean
  • require_uppercase: boolean
standard_required_attributes?: string[]
unauthenticated_identities_enabled?: boolean
user_pool_client_id: string
user_pool_id: string
user_verification_types?: string[]
username_attributes?: string[]
\ No newline at end of file diff --git a/docs/api/modules/_aws_amplify_adapter_nextjs.html b/docs/api/modules/_aws_amplify_adapter_nextjs.html index b9558791e44..e5e9c6ac934 100644 --- a/docs/api/modules/_aws_amplify_adapter_nextjs.html +++ b/docs/api/modules/_aws_amplify_adapter_nextjs.html @@ -1,5 +1,5 @@ -@aws-amplify/adapter-nextjs - v1.2.30 | Amplify JS API Documentation -

Module @aws-amplify/adapter-nextjs - v1.2.30

This package contains the AWS Amplify Next.js Adapter. For more information on using Next.js in your application please reference the Amplify Dev Center.

+@aws-amplify/adapter-nextjs - v1.2.32 | Amplify JS API Documentation +

Module @aws-amplify/adapter-nextjs - v1.2.32

This package contains the AWS Amplify Next.js Adapter. For more information on using Next.js in your application please reference the Amplify Dev Center.

Index

Modules

api index utils diff --git a/docs/api/modules/_aws_amplify_datastore_storage_adapter.html b/docs/api/modules/_aws_amplify_datastore_storage_adapter.html index b6611505bb0..87a9380a1f9 100644 --- a/docs/api/modules/_aws_amplify_datastore_storage_adapter.html +++ b/docs/api/modules/_aws_amplify_datastore_storage_adapter.html @@ -1,5 +1,5 @@ -@aws-amplify/datastore-storage-adapter - v2.1.62 | Amplify JS API Documentation -

Module @aws-amplify/datastore-storage-adapter - v2.1.62

This package contains the AWS Amplify DataStore storage adapter. For more information on using the DataStore storage adapter in your application please reference the Amplify Dev Center.

+@aws-amplify/datastore-storage-adapter - v2.1.64 | Amplify JS API Documentation +

Module @aws-amplify/datastore-storage-adapter - v2.1.64

This package contains the AWS Amplify DataStore storage adapter. For more information on using the DataStore storage adapter in your application please reference the Amplify Dev Center.

Index

Modules

ExpoSQLiteAdapter/ExpoSQLiteAdapter SQLiteAdapter/SQLiteAdapter index diff --git a/docs/api/modules/_aws_amplify_geo.html b/docs/api/modules/_aws_amplify_geo.html index 51a7310a873..8503c52a340 100644 --- a/docs/api/modules/_aws_amplify_geo.html +++ b/docs/api/modules/_aws_amplify_geo.html @@ -1,5 +1,5 @@ -@aws-amplify/geo - v3.0.60 | Amplify JS API Documentation -

Module @aws-amplify/geo - v3.0.60

This package contains the AWS Amplify Geo category. For more information on using Geo in your application please reference the Amplify Dev Center.

+@aws-amplify/geo - v3.0.62 | Amplify JS API Documentation +

Module @aws-amplify/geo - v3.0.62

This package contains the AWS Amplify Geo category. For more information on using Geo in your application please reference the Amplify Dev Center.

Index

Modules

\ No newline at end of file diff --git a/docs/api/modules/_aws_amplify_interactions.html b/docs/api/modules/_aws_amplify_interactions.html index 7667cf6fdac..456e5ce2c0e 100644 --- a/docs/api/modules/_aws_amplify_interactions.html +++ b/docs/api/modules/_aws_amplify_interactions.html @@ -1,5 +1,5 @@ -@aws-amplify/interactions - v6.1.1 | Amplify JS API Documentation -

Module @aws-amplify/interactions - v6.1.1

This package contains the AWS Amplify Interactions category. For more information on using Interactions in your application please reference the Amplify Dev Center.

+@aws-amplify/interactions - v6.1.3 | Amplify JS API Documentation +

Module @aws-amplify/interactions - v6.1.3

This package contains the AWS Amplify Interactions category. For more information on using Interactions in your application please reference the Amplify Dev Center.

Index

Modules

index lex-v1 lex-v2 diff --git a/docs/api/modules/_aws_amplify_predictions.html b/docs/api/modules/_aws_amplify_predictions.html index 8b557ee5ee2..c8a0b7067b9 100644 --- a/docs/api/modules/_aws_amplify_predictions.html +++ b/docs/api/modules/_aws_amplify_predictions.html @@ -1,5 +1,5 @@ -@aws-amplify/predictions - v6.1.35 | Amplify JS API Documentation -

Module @aws-amplify/predictions - v6.1.35

This package contains the AWS Amplify Predictions category. For more information on using Predictions in your application please reference the Amplify Dev Center.

+@aws-amplify/predictions - v6.1.37 | Amplify JS API Documentation +

Module @aws-amplify/predictions - v6.1.37

This package contains the AWS Amplify Predictions category. For more information on using Predictions in your application please reference the Amplify Dev Center.

Index

Modules

Interfaces

IdentifyEntitiesInput IdentifyEntitiesOutput diff --git a/docs/api/modules/_aws_amplify_pubsub.html b/docs/api/modules/_aws_amplify_pubsub.html index 75a746b2269..c773833f02b 100644 --- a/docs/api/modules/_aws_amplify_pubsub.html +++ b/docs/api/modules/_aws_amplify_pubsub.html @@ -1,5 +1,5 @@ -@aws-amplify/pubsub - v6.1.35 | Amplify JS API Documentation -

Module @aws-amplify/pubsub - v6.1.35

This package contains the AWS Amplify PubSub category. For more information on using PubSub in your application please reference the Amplify Dev Center.

+@aws-amplify/pubsub - v6.1.37 | Amplify JS API Documentation +

Module @aws-amplify/pubsub - v6.1.37

This package contains the AWS Amplify PubSub category. For more information on using PubSub in your application please reference the Amplify Dev Center.

Index

Modules

clients/iot clients/mqtt index diff --git a/docs/api/modules/aws_amplify.html b/docs/api/modules/aws_amplify.html index 3f70a29360b..80001040c3d 100644 --- a/docs/api/modules/aws_amplify.html +++ b/docs/api/modules/aws_amplify.html @@ -1,5 +1,5 @@ -aws-amplify - v6.10.0 | Amplify JS API Documentation -

Module aws-amplify - v6.10.0

AWS Amplify Package - aws-amplify

AWS Amplify is a JavaScript library for frontend and mobile developers building cloud-enabled applications. The library is a declarative interface across different categories of operations in order to make common tasks easier to add into your application. The default implementation works with Amazon Web Services (AWS) resources but is designed to be open and pluggable for usage with other cloud services that wish to provide an implementation or custom backends.

+aws-amplify - v6.10.2 | Amplify JS API Documentation +

Module aws-amplify - v6.10.2

AWS Amplify Package - aws-amplify

AWS Amplify is a JavaScript library for frontend and mobile developers building cloud-enabled applications. The library is a declarative interface across different categories of operations in order to make common tasks easier to add into your application. The default implementation works with Amazon Web Services (AWS) resources but is designed to be open and pluggable for usage with other cloud services that wish to provide an implementation or custom backends.

Documentation is available here.

Index

Modules

adapter-core analytics diff --git a/packages/adapter-nextjs/CHANGELOG.md b/packages/adapter-nextjs/CHANGELOG.md index 7de41d4c49b..98f1d2839a2 100644 --- a/packages/adapter-nextjs/CHANGELOG.md +++ b/packages/adapter-nextjs/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.32](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/adapter-nextjs@1.2.30...@aws-amplify/adapter-nextjs@1.2.32) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/adapter-nextjs + +## [1.2.31](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/adapter-nextjs@1.2.30...@aws-amplify/adapter-nextjs@1.2.31) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/adapter-nextjs + ## [1.2.30](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/adapter-nextjs@1.2.29...@aws-amplify/adapter-nextjs@1.2.30) (2024-11-25) **Note:** Version bump only for package @aws-amplify/adapter-nextjs diff --git a/packages/adapter-nextjs/package.json b/packages/adapter-nextjs/package.json index 6ed2e63cd6e..e56ca3d05c0 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.30", + "version": "1.2.32", "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.10.0", + "aws-amplify": "6.10.2", "jest-fetch-mock": "3.0.3", "next": ">= 13.5.0 < 15.0.0", "typescript": "5.0.2" diff --git a/packages/analytics/CHANGELOG.md b/packages/analytics/CHANGELOG.md index bfb0cf16198..b9207b865d8 100644 --- a/packages/analytics/CHANGELOG.md +++ b/packages/analytics/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.0.62](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/analytics@7.0.61...@aws-amplify/analytics@7.0.62) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/analytics + +## [7.0.61](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/analytics@7.0.60...@aws-amplify/analytics@7.0.61) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/analytics + ## [7.0.60](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/analytics@7.0.59...@aws-amplify/analytics@7.0.60) (2024-11-25) **Note:** Version bump only for package @aws-amplify/analytics diff --git a/packages/analytics/package.json b/packages/analytics/package.json index c02d5982cd5..12c79f326e6 100644 --- a/packages/analytics/package.json +++ b/packages/analytics/package.json @@ -1,6 +1,6 @@ { "name": "@aws-amplify/analytics", - "version": "7.0.60", + "version": "7.0.62", "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.7.0", + "@aws-amplify/core": "6.7.2", "@aws-amplify/react-native": "1.1.6", "@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 67be517962f..4d4a3ae5cf6 100644 --- a/packages/api-graphql/CHANGELOG.md +++ b/packages/api-graphql/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.6.5](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-graphql@4.6.4...@aws-amplify/api-graphql@4.6.5) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/api-graphql + +## [4.6.4](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-graphql@4.6.3...@aws-amplify/api-graphql@4.6.4) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/api-graphql + ## [4.6.3](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-graphql@4.6.2...@aws-amplify/api-graphql@4.6.3) (2024-11-25) **Note:** Version bump only for package @aws-amplify/api-graphql diff --git a/packages/api-graphql/package.json b/packages/api-graphql/package.json index d9dc18d94d1..296cb398755 100644 --- a/packages/api-graphql/package.json +++ b/packages/api-graphql/package.json @@ -1,6 +1,6 @@ { "name": "@aws-amplify/api-graphql", - "version": "4.6.3", + "version": "4.6.5", "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.60", - "@aws-amplify/core": "6.7.0", + "@aws-amplify/api-rest": "4.0.62", + "@aws-amplify/core": "6.7.2", "@aws-amplify/data-schema": "^1.7.0", "@aws-sdk/types": "3.387.0", "graphql": "15.8.0", diff --git a/packages/api-graphql/src/internals/v6.ts b/packages/api-graphql/src/internals/v6.ts index c5d362908c8..553707be092 100644 --- a/packages/api-graphql/src/internals/v6.ts +++ b/packages/api-graphql/src/internals/v6.ts @@ -4,6 +4,7 @@ import { CustomHeaders } from '@aws-amplify/data-schema/runtime'; import { GraphQLAPI } from '../GraphQLAPI'; import { + GraphQLOptions, GraphQLOptionsV6, GraphQLResponseV6, V6Client, @@ -113,10 +114,11 @@ export function graphql< * Neither of these can actually be validated at runtime. Hence, we don't perform * any validation or type-guarding here. */ + const result = GraphQLAPI.graphql( // TODO: move V6Client back into this package? internals.amplify as any, - options, + options as GraphQLOptions, headers, ); diff --git a/packages/api-graphql/src/types/index.ts b/packages/api-graphql/src/types/index.ts index 0ecac34369a..d642fff3bd1 100644 --- a/packages/api-graphql/src/types/index.ts +++ b/packages/api-graphql/src/types/index.ts @@ -212,7 +212,7 @@ export type GraphQLOperation = Source | string; export interface GraphQLOptionsV6< FALLBACK_TYPES = unknown, TYPED_GQL_STRING extends string = string, -> { +> extends Record { query: TYPED_GQL_STRING | DocumentNode; variables?: GraphQLVariablesV6; authMode?: GraphQLAuthMode; diff --git a/packages/api-rest/CHANGELOG.md b/packages/api-rest/CHANGELOG.md index 91e042c6824..38dee21f69d 100644 --- a/packages/api-rest/CHANGELOG.md +++ b/packages/api-rest/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.0.62](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-rest@4.0.61...@aws-amplify/api-rest@4.0.62) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/api-rest + +## [4.0.61](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-rest@4.0.60...@aws-amplify/api-rest@4.0.61) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/api-rest + ## [4.0.60](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api-rest@4.0.59...@aws-amplify/api-rest@4.0.60) (2024-11-25) **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 ddda5645b2d..6ba1ec4a592 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.60", + "version": "4.0.62", "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.7.0", + "@aws-amplify/core": "6.7.2", "@aws-amplify/react-native": "1.1.6", "typescript": "5.0.2" }, diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md index 97f7ba6b2d4..7a31e9b950e 100644 --- a/packages/api/CHANGELOG.md +++ b/packages/api/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.1.7](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api@6.1.6...@aws-amplify/api@6.1.7) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/api + +## [6.1.6](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api@6.1.5...@aws-amplify/api@6.1.6) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/api + ## [6.1.5](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/api@6.1.4...@aws-amplify/api@6.1.5) (2024-11-25) **Note:** Version bump only for package @aws-amplify/api diff --git a/packages/api/package.json b/packages/api/package.json index 68cd3762dd8..c80f44f5548 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@aws-amplify/api", - "version": "6.1.5", + "version": "6.1.7", "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.6.3", - "@aws-amplify/api-rest": "4.0.60", + "@aws-amplify/api-graphql": "4.6.5", + "@aws-amplify/api-rest": "4.0.62", "tslib": "^2.5.0" } } diff --git a/packages/auth/CHANGELOG.md b/packages/auth/CHANGELOG.md index 85df22b1e5b..abb48b5dfdb 100644 --- a/packages/auth/CHANGELOG.md +++ b/packages/auth/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.8.2](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/auth@6.8.1...@aws-amplify/auth@6.8.2) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/auth + +## [6.8.1](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/auth@6.8.0...@aws-amplify/auth@6.8.1) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/auth + # [6.8.0](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/auth@6.7.0...@aws-amplify/auth@6.8.0) (2024-11-25) ### Features diff --git a/packages/auth/package.json b/packages/auth/package.json index d7551e9cbe2..9da3cd8c880 100644 --- a/packages/auth/package.json +++ b/packages/auth/package.json @@ -1,6 +1,6 @@ { "name": "@aws-amplify/auth", - "version": "6.8.0", + "version": "6.8.2", "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.7.0", + "@aws-amplify/core": "6.7.2", "@aws-amplify/react-native": "1.1.6", "@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 6dd11203d9b..f7b4be754bb 100644 --- a/packages/aws-amplify/CHANGELOG.md +++ b/packages/aws-amplify/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.10.2](https://github.com/aws-amplify/amplify-js/compare/aws-amplify@6.10.0...aws-amplify@6.10.2) (2024-12-03) + +**Note:** Version bump only for package aws-amplify + +## [6.10.1](https://github.com/aws-amplify/amplify-js/compare/aws-amplify@6.10.0...aws-amplify@6.10.1) (2024-12-03) + +**Note:** Version bump only for package aws-amplify + # [6.10.0](https://github.com/aws-amplify/amplify-js/compare/aws-amplify@6.9.0...aws-amplify@6.10.0) (2024-11-25) ### Features diff --git a/packages/aws-amplify/package.json b/packages/aws-amplify/package.json index 57300e32067..d37e20ef483 100644 --- a/packages/aws-amplify/package.json +++ b/packages/aws-amplify/package.json @@ -1,6 +1,6 @@ { "name": "aws-amplify", - "version": "6.10.0", + "version": "6.10.2", "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.60", - "@aws-amplify/api": "6.1.5", - "@aws-amplify/auth": "6.8.0", - "@aws-amplify/core": "6.7.0", - "@aws-amplify/datastore": "5.0.62", - "@aws-amplify/notifications": "2.0.60", - "@aws-amplify/storage": "6.7.1", + "@aws-amplify/analytics": "7.0.62", + "@aws-amplify/api": "6.1.7", + "@aws-amplify/auth": "6.8.2", + "@aws-amplify/core": "6.7.2", + "@aws-amplify/datastore": "5.0.64", + "@aws-amplify/notifications": "2.0.62", + "@aws-amplify/storage": "6.7.3", "tslib": "^2.5.0" }, "devDependencies": { diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index fb13764c47e..81b67e4ec2b 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.7.2](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/core@6.7.1...@aws-amplify/core@6.7.2) (2024-12-03) + +### Bug Fixes + +- bump package version ([c5ab404](https://github.com/aws-amplify/amplify-js/commit/c5ab40454c22b91fd54a293831e88c4bb9ae45ee)) + +## [6.7.1](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/core@6.7.0...@aws-amplify/core@6.7.1) (2024-12-03) + +### Bug Fixes + +- amplify configure with auth userGroups ([#14046](https://github.com/aws-amplify/amplify-js/issues/14046)) ([4278be2](https://github.com/aws-amplify/amplify-js/commit/4278be2b07374a98724e4d787891a36a2bf55c05)) + # [6.7.0](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/core@6.6.0...@aws-amplify/core@6.7.0) (2024-11-25) ### Features diff --git a/packages/core/README.md b/packages/core/README.md index 338ac2460e6..477b22ea46c 100644 --- a/packages/core/README.md +++ b/packages/core/README.md @@ -1,3 +1,3 @@ > INTERNAL USE ONLY -This package contains the AWS Amplify core utilities and is intended for internal use only. To integrate Amplify into your app, please use [aws-amplify](https://www.npmjs.com/package/aws-amplify). +This package contains the AWS Amplify core utilities and is intended for internal use only. To integrate Amplify into your app. Please use [aws-amplify](https://www.npmjs.com/package/aws-amplify). diff --git a/packages/core/metadata b/packages/core/metadata index 143dd93133c..cd89abb9915 100644 --- a/packages/core/metadata +++ b/packages/core/metadata @@ -1 +1 @@ -87666a9ba +faf0cf99b diff --git a/packages/core/package.json b/packages/core/package.json index 67228dd650d..6a9a5f9546b 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@aws-amplify/core", - "version": "6.7.0", + "version": "6.7.2", "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 59372de3a11..7da42e2517b 100644 --- a/packages/datastore-storage-adapter/CHANGELOG.md +++ b/packages/datastore-storage-adapter/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.64](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore-storage-adapter@2.1.62...@aws-amplify/datastore-storage-adapter@2.1.64) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/datastore-storage-adapter + +## [2.1.63](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore-storage-adapter@2.1.62...@aws-amplify/datastore-storage-adapter@2.1.63) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/datastore-storage-adapter + ## [2.1.62](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore-storage-adapter@2.1.61...@aws-amplify/datastore-storage-adapter@2.1.62) (2024-11-25) **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 e411ad3e786..47209cc4c77 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.62", + "version": "2.1.64", "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.7.0", - "@aws-amplify/datastore": "5.0.62", + "@aws-amplify/core": "6.7.2", + "@aws-amplify/datastore": "5.0.64", "@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 be55b27c971..3e8235caeb6 100644 --- a/packages/datastore/CHANGELOG.md +++ b/packages/datastore/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.64](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@5.0.63...@aws-amplify/datastore@5.0.64) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/datastore + +## [5.0.63](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@5.0.62...@aws-amplify/datastore@5.0.63) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/datastore + ## [5.0.62](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@5.0.61...@aws-amplify/datastore@5.0.62) (2024-11-25) **Note:** Version bump only for package @aws-amplify/datastore diff --git a/packages/datastore/package.json b/packages/datastore/package.json index cd8e398828a..d903142404e 100644 --- a/packages/datastore/package.json +++ b/packages/datastore/package.json @@ -1,6 +1,6 @@ { "name": "@aws-amplify/datastore", - "version": "5.0.62", + "version": "5.0.64", "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.1.5", + "@aws-amplify/api": "6.1.7", "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.7.0", + "@aws-amplify/core": "6.7.2", "@aws-amplify/react-native": "1.1.6", "@types/uuid-validate": "^0.0.1", "dexie": "3.2.2", diff --git a/packages/datastore/src/types.ts b/packages/datastore/src/types.ts index abc92322cc7..a36cad59ca1 100644 --- a/packages/datastore/src/types.ts +++ b/packages/datastore/src/types.ts @@ -506,6 +506,10 @@ export type TypeConstructorMap = Record< export declare const __identifierBrand__: unique symbol; export type IdentifierBrand = T & { [__identifierBrand__]: K }; +interface GenericIdentifier { + field: any; +} + // datastore generates a uuid for you export type ManagedIdentifier = IdentifierBrand< { field: F extends string ? F : never; type: T }, @@ -548,7 +552,9 @@ export type IdentifierFields< infer B > ? B[number] // B[number] - : MetadataOrDefault['identifier']['field']) & + : MetadataOrDefault['identifier'] extends GenericIdentifier + ? MetadataOrDefault['identifier']['field'] + : unknown) & string; export type IdentifierFieldsForInit< @@ -710,7 +716,9 @@ export type IdentifierFieldValue< ? MetadataOrDefault['identifier']['fields'] extends [any] ? T[MetadataOrDefault['identifier']['fields'][0]] : never - : T[MetadataOrDefault['identifier']['field']]; + : MetadataOrDefault['identifier'] extends GenericIdentifier + ? T[MetadataOrDefault['identifier']['field']] + : unknown; export type IdentifierFieldOrIdentifierObject< T extends PersistentModel, diff --git a/packages/geo/CHANGELOG.md b/packages/geo/CHANGELOG.md index 5491dea8fd1..3dc9a3e0c80 100644 --- a/packages/geo/CHANGELOG.md +++ b/packages/geo/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.62](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/geo@3.0.61...@aws-amplify/geo@3.0.62) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/geo + +## [3.0.61](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/geo@3.0.60...@aws-amplify/geo@3.0.61) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/geo + ## [3.0.60](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/geo@3.0.59...@aws-amplify/geo@3.0.60) (2024-11-25) **Note:** Version bump only for package @aws-amplify/geo diff --git a/packages/geo/package.json b/packages/geo/package.json index 2382d1d64d6..60aea3e80b9 100644 --- a/packages/geo/package.json +++ b/packages/geo/package.json @@ -1,6 +1,6 @@ { "name": "@aws-amplify/geo", - "version": "3.0.60", + "version": "3.0.62", "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.7.0", + "@aws-amplify/core": "6.7.2", "typescript": "5.0.2" }, "size-limit": [ diff --git a/packages/interactions/CHANGELOG.md b/packages/interactions/CHANGELOG.md index 0948d7c87ca..7dd2593a80b 100644 --- a/packages/interactions/CHANGELOG.md +++ b/packages/interactions/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.1.3](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/interactions@6.1.2...@aws-amplify/interactions@6.1.3) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/interactions + +## [6.1.2](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/interactions@6.1.1...@aws-amplify/interactions@6.1.2) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/interactions + ## [6.1.1](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/interactions@6.1.0...@aws-amplify/interactions@6.1.1) (2024-11-25) **Note:** Version bump only for package @aws-amplify/interactions diff --git a/packages/interactions/package.json b/packages/interactions/package.json index dfe9f55f5f9..f56bb953bc6 100644 --- a/packages/interactions/package.json +++ b/packages/interactions/package.json @@ -1,6 +1,6 @@ { "name": "@aws-amplify/interactions", - "version": "6.1.1", + "version": "6.1.3", "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.7.0", + "@aws-amplify/core": "6.7.2", "typescript": "^5.0.2" }, "size-limit": [ diff --git a/packages/notifications/CHANGELOG.md b/packages/notifications/CHANGELOG.md index de6b53973fc..702a43c1a85 100644 --- a/packages/notifications/CHANGELOG.md +++ b/packages/notifications/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.62](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/notifications@2.0.61...@aws-amplify/notifications@2.0.62) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/notifications + +## [2.0.61](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/notifications@2.0.60...@aws-amplify/notifications@2.0.61) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/notifications + ## [2.0.60](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/notifications@2.0.59...@aws-amplify/notifications@2.0.60) (2024-11-25) **Note:** Version bump only for package @aws-amplify/notifications diff --git a/packages/notifications/package.json b/packages/notifications/package.json index 614310d8248..85aa5e6c6d7 100644 --- a/packages/notifications/package.json +++ b/packages/notifications/package.json @@ -1,6 +1,6 @@ { "name": "@aws-amplify/notifications", - "version": "2.0.60", + "version": "2.0.62", "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.7.0", + "@aws-amplify/core": "6.7.2", "@aws-amplify/react-native": "1.1.6", "typescript": "5.0.2" } diff --git a/packages/predictions/CHANGELOG.md b/packages/predictions/CHANGELOG.md index 9fb1d7451e5..022dede3049 100644 --- a/packages/predictions/CHANGELOG.md +++ b/packages/predictions/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.1.37](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/predictions@6.1.36...@aws-amplify/predictions@6.1.37) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/predictions + +## [6.1.36](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/predictions@6.1.35...@aws-amplify/predictions@6.1.36) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/predictions + ## [6.1.35](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/predictions@6.1.34...@aws-amplify/predictions@6.1.35) (2024-11-25) **Note:** Version bump only for package @aws-amplify/predictions diff --git a/packages/predictions/package.json b/packages/predictions/package.json index 3f37e8af3c5..f1a6ffafa83 100644 --- a/packages/predictions/package.json +++ b/packages/predictions/package.json @@ -1,6 +1,6 @@ { "name": "@aws-amplify/predictions", - "version": "6.1.35", + "version": "6.1.37", "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.7.1", + "@aws-amplify/storage": "6.7.3", "@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.7.0", + "@aws-amplify/core": "6.7.2", "typescript": "5.0.2" }, "size-limit": [ diff --git a/packages/pubsub/CHANGELOG.md b/packages/pubsub/CHANGELOG.md index af3cad43c4b..2d90cfeb7bb 100644 --- a/packages/pubsub/CHANGELOG.md +++ b/packages/pubsub/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.1.37](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/pubsub@6.1.36...@aws-amplify/pubsub@6.1.37) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/pubsub + +## [6.1.36](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/pubsub@6.1.35...@aws-amplify/pubsub@6.1.36) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/pubsub + ## [6.1.35](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/pubsub@6.1.34...@aws-amplify/pubsub@6.1.35) (2024-11-25) **Note:** Version bump only for package @aws-amplify/pubsub diff --git a/packages/pubsub/package.json b/packages/pubsub/package.json index aeaebacf3af..3707c4f24da 100644 --- a/packages/pubsub/package.json +++ b/packages/pubsub/package.json @@ -1,6 +1,6 @@ { "name": "@aws-amplify/pubsub", - "version": "6.1.35", + "version": "6.1.37", "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.8.0", + "@aws-amplify/auth": "6.8.2", "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.7.0", + "@aws-amplify/core": "6.7.2", "typescript": "5.0.2" }, "size-limit": [ diff --git a/packages/storage/CHANGELOG.md b/packages/storage/CHANGELOG.md index 315cdbfddd3..f6e01aeaba2 100644 --- a/packages/storage/CHANGELOG.md +++ b/packages/storage/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.7.3](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/storage@6.7.2...@aws-amplify/storage@6.7.3) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/storage + +## [6.7.2](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/storage@6.7.1...@aws-amplify/storage@6.7.2) (2024-12-03) + +**Note:** Version bump only for package @aws-amplify/storage + ## [6.7.1](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/storage@6.7.0...@aws-amplify/storage@6.7.1) (2024-11-25) **Note:** Version bump only for package @aws-amplify/storage diff --git a/packages/storage/package.json b/packages/storage/package.json index 9edd4ebb72b..1c349b53c84 100644 --- a/packages/storage/package.json +++ b/packages/storage/package.json @@ -1,6 +1,6 @@ { "name": "@aws-amplify/storage", - "version": "6.7.1", + "version": "6.7.3", "description": "Storage category of aws-amplify", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.mjs", @@ -111,7 +111,7 @@ "@aws-amplify/core": "^6.1.0" }, "devDependencies": { - "@aws-amplify/core": "6.7.0", + "@aws-amplify/core": "6.7.2", "@aws-amplify/react-native": "1.1.6", "@types/node": "20.14.12", "typescript": "5.0.2" diff --git a/scripts/tsc-compliance-test/CHANGELOG.md b/scripts/tsc-compliance-test/CHANGELOG.md index f08d67d9a96..3be19f566ff 100644 --- a/scripts/tsc-compliance-test/CHANGELOG.md +++ b/scripts/tsc-compliance-test/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.67](https://github.com/aws-amplify/amplify-js/compare/tsc-compliance-test@0.1.66...tsc-compliance-test@0.1.67) (2024-12-03) + +**Note:** Version bump only for package tsc-compliance-test + +## [0.1.66](https://github.com/aws-amplify/amplify-js/compare/tsc-compliance-test@0.1.65...tsc-compliance-test@0.1.66) (2024-12-03) + +**Note:** Version bump only for package tsc-compliance-test + ## [0.1.65](https://github.com/aws-amplify/amplify-js/compare/tsc-compliance-test@0.1.64...tsc-compliance-test@0.1.65) (2024-11-25) **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 aad99cfc6b9..4ad9ec9fc2c 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.65", + "version": "0.1.67", "license": "MIT", "private": true, "devDependencies": { "@types/node": "16.18.82", - "aws-amplify": "6.10.0", + "aws-amplify": "6.10.2", "typescript": "4.2.x" }, "scripts": {