Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

amazon-cognito-identity-js

aws-amplify2.9mApache-2.06.3.12TypeScript support: included

Amazon Cognito Identity Provider JavaScript SDK

amazon, aws, cognito, identity, react-native, reactnative

readme

AWS Amplify

Discord Chat Language grade: JavaScript build:started

Reporting Bugs / Feature Requests

Open Bugs Feature Requests Closed Issues

Note aws-amplify 5 has been released. If you are looking for upgrade guidance click here

AWS Amplify is a JavaScript library for frontend and mobile developers building cloud-enabled applications

AWS Amplify provides a declarative and easy-to-use interface across different categories of cloud operations. AWS Amplify goes well with any JavaScript based frontend workflow and React Native for mobile developers.

Our default implementation works with Amazon Web Services (AWS), but AWS Amplify is designed to be open and pluggable for any custom backend or service.

Visit our Documentation site to learn more about AWS Amplify. Please see our Amplify JavaScript page within our Documentation site for information around the full list of features we support.

Features

Category AWS Provider Description
Authentication Amazon Cognito APIs and Building blocks to create Authentication experiences.
Analytics Amazon Pinpoint Collect Analytics data for your application including tracking user sessions.
REST API Amazon API Gateway Sigv4 signing and AWS auth for API Gateway and other REST endpoints.
GraphQL API AWS AppSync Interact with your GraphQL or AWS AppSync endpoint(s).
DataStore AWS AppSync Programming model for shared and distributed data, with simple online/offline synchronization.
Storage Amazon S3 Manages content in public, protected, private storage buckets.
Geo (Developer preview) Amazon Location Service Provides APIs and UI components for maps and location search for JavaScript-based web apps.
Push Notifications Amazon Pinpoint Allows you to integrate push notifications in your app with Amazon Pinpoint targeting and campaign management support.
Interactions Amazon Lex Create conversational bots powered by deep learning technologies.
PubSub AWS IoT Provides connectivity with cloud-based message-oriented middleware.
Internationalization --- A lightweight internationalization solution.
Cache --- Provides a generic LRU cache for JavaScript developers to store data with priority and expiration settings.
Predictions Various* Connect your app with machine learning services like NLP, computer vision, TTS, and more.
  • Predictions utilizes a range of Amazon's Machine Learning services, including: Amazon Comprehend, Amazon Polly, Amazon Rekognition, Amazon Textract, and Amazon Translate.

Getting Started

AWS Amplify is available as aws-amplify on npm.

To get started pick your platform from our Getting Started home page

Notice:

Amplify 5.x.x has breaking changes. Please see the breaking changes below:

  • If you are using default exports from any Amplify package, then you will need to migrate to using named exports. For example:

    - import Amplify from 'aws-amplify';
    + import { Amplify } from 'aws-amplify'
    
    - import Analytics from '@aws-amplify/analytics';
    + import { Analytics } from '@aws-amplify/analytics';
    // or better
    + import { Analytics } from 'aws-amplify';
    
    - import Storage from '@aws-amplify/storage';
    + import { Storage } from '@aws-amplify/storage';
    // or better
    + import { Storage } from 'aws-amplify';
  • Datastore predicate syntax has changed, impacting the DataStore.query, DataStore.save, DataStore.delete, and DataStore.observe interfaces. For example:

    - await DataStore.delete(Post, (post) => post.status('eq', PostStatus.INACTIVE));
    + await DataStore.delete(Post, (post) => post.status.eq(PostStatus.INACTIVE));
    
    - await DataStore.query(Post, p => p.and( p => [p.title('eq', 'Amplify Getting Started Guide'), p.score('gt', 8)]));
    + await DataStore.query(Post, p => p.and( p => [p.title.eq('Amplify Getting Started Guide'), p.score.gt(8)]));
  • Storage.list has changed the name of the maxKeys parameter to pageSize and has a new return type that contains the results list. For example:

    - const photos = await Storage.list('photos/', { maxKeys: 100 });
    - const { key } = photos[0];
    
    + const photos = await Storage.list('photos/', { pageSize: 100 });
    + const { key } = photos.results[0];
  • Storage.put with resumable turned on has changed the key to no longer include the bucket name. For example:

    - let uploadedObjectKey;
    - Storage.put(file.name, file, {
    -   resumable: true,
    -   // Necessary to parse the bucket name out to work with the key
    -   completeCallback: (obj) => uploadedObjectKey = obj.key.substring( obj.key.indexOf("/") + 1 )
    - }
    
    + let uploadedObjectKey;
    + Storage.put(file.name, file, {
    +   resumable: true,
    +   completeCallback: (obj) => uploadedObjectKey = obj.key
    + }
  • Analytics.record no longer accepts string as input. For example:

    - Analytics.record('my example event');
    + Analytics.record({ name: 'my example event' });
  • The JS export has been removed from @aws-amplify/core in favor of exporting the functions it contained.

  • Any calls to Amplify.Auth, Amplify.Cache, and Amplify.ServiceWorker are no longer supported. Instead, your code should use the named exports. For example:

    - import { Amplify } from 'aws-amplify';
    - Amplify.configure(...);
    - // ...
    - Amplify.Auth.signIn(...);
    
    + import { Amplify, Auth } from 'aws-amplify';
    + Amplify.configure(...);
    + // ...
    + Auth.signIn(...);

Amplify 4.x.x has breaking changes for React Native. Please see the breaking changes below:

  • If you are using React Native (vanilla or Expo), you will need to add the following React Native community dependencies:
    • @react-native-community/netinfo
    • @react-native-async-storage/async-storage
// React Native
yarn add aws-amplify amazon-cognito-identity-js @react-native-community/netinfo @react-native-async-storage/async-storage
npx pod-install

// Expo
yarn add aws-amplify @react-native-community/netinfo @react-native-async-storage/async-storage

Amplify 3.x.x has breaking changes. Please see the breaking changes below:

  • AWS.credentials and AWS.config don’t exist anymore in Amplify JavaScript.
    • Both options will not be available to use in version 3. You will not be able to use and set your own credentials.
    • For more information on this change, please see the AWS SDK for JavaScript v3
  • `aws-sdk@2.xhas been removed fromAmplify@3.x.x` in favor of version 3 of aws-sdk-js. We recommend to migrate to aws-sdk-js-v3 if you rely on AWS services that are not supported by Amplify, since aws-sdk-js-v3 is imported modularly.

If you can't migrate to aws-sdk-js-v3 or rely on aws-sdk@2.x, you will need to import it separately.

  • If you are using exported paths within your Amplify JS application, (e.g. import from "@aws-amplify/analytics/lib/Analytics") this will now break and no longer will be supported. You will need to change to named imports:

    import { Analytics } from 'aws-amplify';
  • If you are using categories as Amplify.<Category>, this will no longer work and we recommend to import the category you are needing to use:

    import { Auth } from 'aws-amplify';

DataStore Docs

For more information on contributing to DataStore / how DataStore works, see the DataStore Docs

changelog

Change Log

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

6.3.12 (2024-03-06)

Note: Version bump only for package amazon-cognito-identity-js

6.3.11 (2024-02-20)

Note: Version bump only for package amazon-cognito-identity-js

6.3.10 (2024-01-09)

Note: Version bump only for package amazon-cognito-identity-js

6.3.9 (2024-01-05)

Bug Fixes

  • auth: replace window history with current browser session's state (#12782) (c393316)

6.3.8 (2023-12-04)

Bug Fixes

6.3.7 (2023-11-06)

Bug Fixes

  • api-rest: infinite retry when clock skew go back and forth (#12488) (095efac)

6.3.6 (2023-09-14)

Note: Version bump only for package amazon-cognito-identity-js

6.3.5 (2023-08-23)

Note: Version bump only for package amazon-cognito-identity-js

6.3.4 (2023-08-22)

Note: Version bump only for package amazon-cognito-identity-js

6.3.3 (2023-08-17)

Note: Version bump only for package amazon-cognito-identity-js

6.3.2 (2023-08-10)

Note: Version bump only for package amazon-cognito-identity-js

6.3.1 (2023-06-21)

Bug Fixes

  • Update getAmplifyUserAgent to retain original interface (#11535) (dc84cc8)

6.3.0 (2023-06-20)

Bug Fixes

Features

6.2.0 (2023-03-23)

Features

  • cognito: make cookiestorage constructor parameter optional (9b8e759)
  • cognito: remove required domain param when create CookieStorage (c985454)

6.1.2 (2022-12-27)

Bug Fixes

  • amazon-cognito-identity-js: sets no-store header for cognito user pools (#10804) (b9ec192)

6.1.1 (2022-12-16)

Bug Fixes

  • amazon-cognito-identity-js: specify the correct userAgent/deviceName when remembering devices (React Native) (#10724) (01a5b84)

6.1.0 (2022-12-15)

Bug Fixes

  • core: add cache-control header to cognito identity client (#10753) (dfbabaf)

Features

  • auth,cognito-identity-js: returning code delivery details as part of callback for updateAttributes, adds hub event to Auth.updateUserAttributes (#10731) (fc4940b)

6.0.1 (2022-11-11)

Note: Version bump only for package amazon-cognito-identity-js

6.0.0 (2022-11-09)

Features

  • Migrate auth and amazon-cognito-identity-js to use @aws-crypto/sha256-js (#10523)
  • add a typescript coverage report mechanism (#10551) (8e8df55), closes #10379

5.2.12 (2022-10-25)

Bug Fixes

  • Update .d.ts file to match the actual code (#8825) (272c2c6)

5.2.11 (2022-10-14)

Note: Version bump only for package amazon-cognito-identity-js

5.2.10 (2022-07-07)

Bug Fixes

  • amazon-cognito-identity-js: Missing cognito user challenge name … (#10047) (de0441b), closes #6974

5.2.9 (2022-05-23)

Bug Fixes

5.2.8 (2022-03-10)

Note: Version bump only for package amazon-cognito-identity-js

5.2.7 (2022-02-28)

Bug Fixes

5.2.6 (2022-02-03)

Note: Version bump only for package amazon-cognito-identity-js

5.2.5 (2022-01-27)

Bug Fixes

Reverts

  • Revert "chore(amplify-js): consolidate react-native dependencies (#9451)" (#9473) (9924a31), closes #9451 #9473

5.2.4 (2022-01-07)

Bug Fixes

  • amazon-cognito-identity-js: added missing method param (#9276) (6c4d4b5), closes #9275

5.2.3 (2021-11-09)

Note: Version bump only for package amazon-cognito-identity-js

5.2.2 (2021-10-28)

Note: Version bump only for package amazon-cognito-identity-js

5.2.1 (2021-10-21)

Bug Fixes

  • amazon-cognito-identity-js): Revert "feat(amazon-cognito-identity-js: Clears "__uploadInProgress" from local storage" (#8998) (91590e3)

5.2.0 (2021-09-30)

Features

  • amazon-cognito-identity-js: Clears "__uploadInProgress" from local storage (f21c2d1)

5.1.2 (2021-09-24)

Note: Version bump only for package amazon-cognito-identity-js

5.1.1 (2021-09-17)

Bug Fixes

  • amazon-cognito-identity-js: Fix UserPoolId validation ReDoS (#8915) (f405f0e)

5.1.0 (2021-08-19)

Features

  • @aws-amplify/auth: Add a 'SUCCESS' response on successful call to forgotPasswordSubmit and verifyUserAttributes(#8744) (1bd6c35)

5.0.6 (2021-07-22)

Bug Fixes

  • amazon-cognito-identity-is, @aws-amplify/auth: upgrade crypto-js to 4.1.1 to fix bundle size issue (#8626) (b16f8e7)
  • amazon-cognito-identity-js: Adding Session param for DEVICE_SRP_AUTH and user agent fix (#8591) (190bd50)

5.0.5 (2021-07-16)

Bug Fixes

  • amazon-cognito-identity-js: refresh cached user after deleting attributes (#8578) (bf78611)

5.0.4 (2021-07-08)

Bug Fixes

  • amazon-cognito-identity-js: rewrite retry as promise based method (#8524) (a84978d)

5.0.3 (2021-06-10)

Bug Fixes

  • remove RN-specific peerDeps to correctly hoist core in npm@7 (#8368) (9cc5218)

5.0.2 (2021-05-26)

Note: Version bump only for package amazon-cognito-identity-js

5.0.1 (2021-05-14)

Note: Version bump only for package amazon-cognito-identity-js

5.0.0 (2021-05-11)

  • chore!: Upgrade to @react-native-async-storage/async-storage (#8250) (1de4853), closes #8250

BREAKING CHANGES

  • Upgrade from React Native AsyncStorage to @react-native-async-storage/async-storage

Co-authored-by: Ashish Nanda ashish.nanda.5591@gmail.com Co-authored-by: Ivan Artemiev 29709626+iartemiev@users.noreply.github.com

4.6.1 (2021-05-06)

Bug Fixes

  • amazon-cognito-identity-js: resolve missing getRandomBase64 implementation in expo >= 41 (#8162) (2d4052d)

4.6.0 (2021-03-18)

Features

  • Improve Next.js/CRA/Angular bundle sizes (#7842) (2e0dc61)

4.5.14 (2021-03-12)

Bug Fixes

  • amazon-cognito-identity-js: update podspec dep (#7873) (6c9c4ef)
  • amazon-cognito-identity-js: update sendMFACode callback type (#7801) (5cce7e6)

4.5.13 (2021-03-08)

Bug Fixes

  • amazon-cognito-identity-js: set userDataKey with updated username (#7903) (8d30ce5)

4.5.12 (2021-02-25)

Note: Version bump only for package amazon-cognito-identity-js

4.5.11 (2021-02-18)

Bug Fixes

  • AuthenticationHelper - Handle negative BigIntegers (#7618) (104b278)

4.5.10 (2021-02-03)

Bug Fixes

  • amazon-cognito-identity-js: add default value for options (#7664) (4ecf425)

4.5.9 (2021-02-01)

Bug Fixes

  • amazon-cognito-identity-js: make options optional (#7654) (08277af)

4.5.8 (2021-01-29)

Bug Fixes

  • @aws-amplify/auth, amazon-cognito-identity-js: Include clientMetadata for token refresh (#7633) (3a9efb0)
  • amazon-cognito-identity-js: add .web.js version for cryptoSecureRandomInt (#7521) (13b7ccd)

4.5.7 (2021-01-07)

Note: Version bump only for package amazon-cognito-identity-js

4.5.6 (2020-12-17)

Note: Version bump only for package amazon-cognito-identity-js

4.5.5 (2020-11-20)

Note: Version bump only for package amazon-cognito-identity-js

4.5.4 (2020-11-13)

Bug Fixes

  • amazon-cognito-identity-js: set crypto for Node (#7136) (5173a99)

4.5.3 (2020-11-03)

Note: Version bump only for package amazon-cognito-identity-js

4.5.2 (2020-10-31)

Bug Fixes

  • amazon-cognito-identity-js: update random implementation (#7090) (7048453)

4.5.1 (2020-10-29)

Note: Version bump only for package amazon-cognito-identity-js

4.5.0 (2020-10-15)

Features

  • Patch JKBigInteger to use NSSecureCoding (#6843) (53be43d)

4.4.0 (2020-09-03)

Bug Fixes

  • amazon-cognito-identity-js: add "none" to sameSite possible values (#6682) (cffb932)

Features

4.3.5 (2020-09-01)

Bug Fixes

  • @aws-amplify/auth: incorrect return type for Auth.resendSignUp (#5112) (9164b37)
  • amazon-cognito-identity-js: fix parameters in sendMFASelectionAnswer (#6418) (794c1da)

4.3.4 (2020-08-19)

Note: Version bump only for package amazon-cognito-identity-js

4.3.3 (2020-07-07)

Note: Version bump only for package amazon-cognito-identity-js

4.3.2 (2020-06-18)

Bug Fixes

  • amazon-cognito-identity-js: allow storage to return missing items (#5877) (1fd8336)

4.3.1 (2020-06-03)

Note: Version bump only for package amazon-cognito-identity-js

4.3.0 (2020-05-22)

Features

  • amazon-cognito-identity-js: Add support for fetch options (#3017) (45a649d)

4.2.4 (2020-05-14)

Bug Fixes

  • amazon-cognito-identity-js: Not refresh token immediately after sign in (#5747) (466a14d), closes #5397

4.2.3 (2020-04-30)

Bug Fixes

  • update declaration for CognitoUserPool.signup and add the clientMetadata parameter. (#5005) (35e9e0d)
  • amazon-cognito-identity-js: Added client metadata so signup (#5542) (7bfcb25), closes #5541

4.2.2 (2020-04-24)

Bug Fixes

  • auth: refresh user after updating attributes (bfc5f9f)

4.2.1 (2020-04-07)

Note: Version bump only for package amazon-cognito-identity-js

4.2.0 (2020-04-02)

Features

  • @aws-amplify/ui-components: User agent tracking for UI component packages (#4804) (15a0a2f)

4.1.0 (2020-03-31)

Bug Fixes

  • amazon-cognito-identity-js: linting config (#4097) (7674f96)
  • amazon-cognito-identity-js: linting config (#4097) (173baf5)

Features

Reverts

3.2.7 (2020-03-30)

Note: Version bump only for package amazon-cognito-identity-js

3.2.6 (2020-03-25)

Note: Version bump only for package amazon-cognito-identity-js

3.2.5 (2020-02-28)

Note: Version bump only for package amazon-cognito-identity-js

3.2.4 (2020-02-07)

Note: Version bump only for package amazon-cognito-identity-js

3.2.2 (2020-01-10)

Bug Fixes

  • amazon-cognito-identity-js: Local & CI tests (#4616) (bc8ae26)

3.2.1 (2019-12-18)

Note: Version bump only for package amazon-cognito-identity-js

3.2.0 (2019-10-29)

Features

3.1.3 (2019-10-23)

Note: Version bump only for package amazon-cognito-identity-js

3.1.2 (2019-10-10)

Note: Version bump only for package amazon-cognito-identity-js

3.1.0 (2019-10-10)

Bug Fixes

  • amazon-cognito-identity-js: linting config (#4097) (82b1dd8)

Features

  • Added Prettier formatting (4dfd9aa)

3.0.15 (2019-07-30)

Note: Version bump only for package amazon-cognito-identity-js

3.0.14 (2019-07-18)

Note: Version bump only for package amazon-cognito-identity-js

3.0.13 (2019-06-17)

Note: Version bump only for package amazon-cognito-identity-js

3.0.13-unstable.0 (2019-05-28)

Bug Fixes

  • @amazon-cognito-identity-js: Adds sendMFASelectionAnswer to types (6c32ef3)

3.0.12 (2019-05-06)

Note: Version bump only for package amazon-cognito-identity-js

3.0.12-unstable.3 (2019-04-26)

Features

  • @aws-amplify/amazon-cognito-identity-js: for signUp, returns CodeDeliveryDetails from response (7728e11)

3.0.12-unstable.2 (2019-04-16)

Bug Fixes

  • @aws-amplify/auth: throw error when passing empty object to storage or cookieStorage in configuration (816a827)

3.0.12-unstable.1 (2019-04-12)

Note: Version bump only for package amazon-cognito-identity-js

3.0.12-unstable.0 (2019-04-12)

Note: Version bump only for package amazon-cognito-identity-js

3.0.11 (2019-04-09)

Note: Version bump only for package amazon-cognito-identity-js

3.0.11-unstable.0 (2019-04-07)

Note: Version bump only for package amazon-cognito-identity-js

3.0.10 (2019-03-28)

Note: Version bump only for package amazon-cognito-identity-js

3.0.10-unstable.0 (2019-03-18)

Note: Version bump only for package amazon-cognito-identity-js

3.0.9 (2019-03-06)

Note: Version bump only for package amazon-cognito-identity-js

3.0.9-unstable.0 (2019-03-04)

Note: Version bump only for package amazon-cognito-identity-js

3.0.8 (2019-03-04)

Note: Version bump only for package amazon-cognito-identity-js

3.0.8-unstable.4 (2019-03-04)

Note: Version bump only for package amazon-cognito-identity-js

3.0.8-unstable.3 (2019-03-01)

Note: Version bump only for package amazon-cognito-identity-js

3.0.8-unstable.2 (2019-02-27)

Bug Fixes

  • build: Prevent tree-shaking of crypto-js/lib-typedarrays (#2718) (3134a64), closes #1181

3.0.8-unstable.1 (2019-01-21)

Note: Version bump only for package amazon-cognito-identity-js

3.0.8-unstable.0 (2019-01-18)

Note: Version bump only for package amazon-cognito-identity-js

3.0.7 (2019-01-10)

Bug Fixes

  • amazon-cognito-identity-js: return error instead of undefined (19c3c4e)
  • amazon-cognito-identity-js: Update Android Gradle Config (a08f100)

3.0.6 (2018-12-13)

Note: Version bump only for package amazon-cognito-identity-js

3.0.6-unstable.2 (2018-12-13)

Features

  • @aws-amplify/auth: add the option to pass validation data when signing in (13093e9)

3.0.6-unstable.1 (2018-12-13)

Note: Version bump only for package amazon-cognito-identity-js

3.0.6-unstable.0 (2018-12-07)

Note: Version bump only for package amazon-cognito-identity-js

3.0.5 (2018-12-07)

Note: Version bump only for package amazon-cognito-identity-js

3.0.5-unstable.0 (2018-12-07)

Features

  • amazon-cognito-identity-js: cache the user data (f4dd225)

3.0.4 (2018-12-03)

Note: Version bump only for package amazon-cognito-identity-js

3.0.4-unstable.5 (2018-11-19)

Bug Fixes

  • amazon-cognito-identity-js: Added missing type declarations for setting MFA preferences and token payloads (080630d)

3.0.4-unstable.4 (2018-11-19)

Note: Version bump only for package amazon-cognito-identity-js

3.0.4-unstable.3 (2018-11-17)

Note: Version bump only for package amazon-cognito-identity-js

3.0.4-unstable.2 (2018-11-16)

Note: Version bump only for package amazon-cognito-identity-js

3.0.4-unstable.1 (2018-11-16)

Note: Version bump only for package amazon-cognito-identity-js

3.0.4-unstable.0 (2018-11-13)

Note: Version bump only for package amazon-cognito-identity-js

3.0.3 (2018-10-17)

Note: Version bump only for package amazon-cognito-identity-js

3.0.3-unstable.0 (2018-10-05)

Note: Version bump only for package amazon-cognito-identity-js

3.0.2 (2018-10-04)

Note: Version bump only for package amazon-cognito-identity-js

3.0.2-unstable.0 (2018-10-03)

Note: Version bump only for package amazon-cognito-identity-js

3.0.1 (2018-10-03)

Note: Version bump only for package amazon-cognito-identity-js

2.0.31-unstable.2 (2018-09-27)

Bug Fixes

  • amazon-cognito-identity-js: replace crypto-browserify with crypto-js (4d2409a)

2.0.31-unstable.1 (2018-09-27)

Note: Version bump only for package amazon-cognito-identity-js

2.0.31-unstable.0 (2018-09-27)

Note: Version bump only for package amazon-cognito-identity-js

2.0.30 (2018-09-27)

Note: Version bump only for package amazon-cognito-identity-js

2.0.30-unstable.9 (2018-09-26)

Note: Version bump only for package amazon-cognito-identity-js

2.0.30-unstable.8 (2018-09-26)

Note: Version bump only for package amazon-cognito-identity-js

2.0.30-unstable.7 (2018-09-26)

Note: Version bump only for package amazon-cognito-identity-js

2.0.30-unstable.6 (2018-09-26)

Note: Version bump only for package amazon-cognito-identity-js

2.0.30-unstable.5 (2018-09-25)

Note: Version bump only for package amazon-cognito-identity-js

2.0.30-unstable.4 (2018-09-25)

Note: Version bump only for package amazon-cognito-identity-js

2.0.30-unstable.3 (2018-09-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.30-unstable.2 (2018-09-22)

Note: Version bump only for package amazon-cognito-identity-js

2.0.30-unstable.1 (2018-09-22)

Note: Version bump only for package amazon-cognito-identity-js

2.0.30-unstable.0 (2018-09-22)

Note: Version bump only for package amazon-cognito-identity-js

2.0.29 (2018-09-21)

Bug Fixes

  • amazon-cognito-identity-js: clean clockDrift item when signing out (f07d800)

2.0.29-unstable.0 (2018-09-21)

Bug Fixes

  • bumping version for deploying on unstable tag (#1706) (b5d6468)

2.0.28 (2018-09-21)

Note: Version bump only for package amazon-cognito-identity-js

2.0.28-unstable.3 (2018-09-20)

Note: Version bump only for package amazon-cognito-identity-js

2.0.28-unstable.2 (2018-09-20)

Note: Version bump only for package amazon-cognito-identity-js

2.0.28-unstable.1 (2018-09-17)

Note: Version bump only for package amazon-cognito-identity-js

2.0.28-unstable.0 (2018-09-17)

Note: Version bump only for package amazon-cognito-identity-js

2.0.27 (2018-09-17)

Note: Version bump only for package amazon-cognito-identity-js

2.0.26 (2018-09-12)

Note: Version bump only for package amazon-cognito-identity-js

2.0.25 (2018-09-09)

Note: Version bump only for package amazon-cognito-identity-js

2.0.25-unstable.0 (2018-09-09)

Note: Version bump only for package amazon-cognito-identity-js

2.0.24 (2018-09-09)

Note: Version bump only for package amazon-cognito-identity-js

2.0.24-unstable.11 (2018-09-08)

Note: Version bump only for package amazon-cognito-identity-js

2.0.24-unstable.10 (2018-09-07)

Note: Version bump only for package amazon-cognito-identity-js

2.0.24-unstable.9 (2018-09-07)

Note: Version bump only for package amazon-cognito-identity-js

2.0.24-unstable.8 (2018-09-07)

Note: Version bump only for package amazon-cognito-identity-js

2.0.24-unstable.7 (2018-09-06)

Note: Version bump only for package amazon-cognito-identity-js

2.0.24-unstable.6 (2018-09-06)

Note: Version bump only for package amazon-cognito-identity-js

2.0.24-unstable.5 (2018-09-05)

Note: Version bump only for package amazon-cognito-identity-js

2.0.24-unstable.4 (2018-09-05)

Note: Version bump only for package amazon-cognito-identity-js

2.0.24-unstable.3 (2018-08-31)

Note: Version bump only for package amazon-cognito-identity-js

2.0.24-unstable.2 (2018-08-30)

Note: Version bump only for package amazon-cognito-identity-js

2.0.24-unstable.1 (2018-08-30)

Note: Version bump only for package amazon-cognito-identity-js

2.0.23 (2018-08-28)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.26 (2018-08-28)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.25 (2018-08-27)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.24 (2018-08-27)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.23 (2018-08-27)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.22 (2018-08-25)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.21 (2018-08-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.20 (2018-08-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.19 (2018-08-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.18 (2018-08-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.17 (2018-08-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.16 (2018-08-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.15 (2018-08-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.14 (2018-08-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.13 (2018-08-23)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.12 (2018-08-23)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.11 (2018-08-23)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.10 (2018-08-23)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.9 (2018-08-23)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.8 (2018-08-22)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.7 (2018-08-22)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.6 (2018-08-21)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.5 (2018-08-21)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.4 (2018-08-20)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.3 (2018-08-19)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.2 (2018-08-18)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.1 (2018-08-16)

Note: Version bump only for package amazon-cognito-identity-js

2.0.22-unstable.0 (2018-08-15)

Note: Version bump only for package amazon-cognito-identity-js

2.0.21 (2018-08-14)

Note: Version bump only for package amazon-cognito-identity-js

2.0.21-unstable.5 (2018-08-14)

Note: Version bump only for package amazon-cognito-identity-js

2.0.21-unstable.4 (2018-08-13)

Note: Version bump only for package amazon-cognito-identity-js

2.0.21-unstable.3 (2018-08-13)

Bug Fixes

  • amazon-cognito-identity-js: throw network error if in the offline (d5808f1)

2.0.21-unstable.2 (2018-08-09)

Note: Version bump only for package amazon-cognito-identity-js

2.0.21-unstable.1 (2018-08-07)

Note: Version bump only for package amazon-cognito-identity-js

2.0.21-unstable.0 (2018-08-07)

Note: Version bump only for package amazon-cognito-identity-js

2.0.20 (2018-08-06)

Note: Version bump only for package amazon-cognito-identity-js

2.0.20-unstable.7 (2018-08-06)

Note: Version bump only for package amazon-cognito-identity-js

2.0.20-unstable.6 (2018-08-06)

Note: Version bump only for package amazon-cognito-identity-js

2.0.20-unstable.5 (2018-08-06)

Note: Version bump only for package amazon-cognito-identity-js

2.0.20-unstable.3 (2018-07-31)

Note: Version bump only for package amazon-cognito-identity-js

2.0.20-unstable.2 (2018-07-31)

Note: Version bump only for package amazon-cognito-identity-js

2.0.20-unstable.1 (2018-07-30)

Note: Version bump only for package amazon-cognito-identity-js

2.0.20-unstable.0 (2018-07-30)

Note: Version bump only for package amazon-cognito-identity-js

2.0.19 (2018-07-28)

Note: Version bump only for package amazon-cognito-identity-js

2.0.19-unstable.1 (2018-07-28)

Note: Version bump only for package amazon-cognito-identity-js

2.0.18-unstable.0 (2018-07-27)

Note: Version bump only for package amazon-cognito-identity-js

2.0.17-unstable.15 (2018-07-27)

Note: Version bump only for package amazon-cognito-identity-js

2.0.17-unstable.14 (2018-07-27)

Note: Version bump only for package amazon-cognito-identity-js

2.0.17-unstable.13 (2018-07-26)

Note: Version bump only for package amazon-cognito-identity-js

2.0.17-unstable.12 (2018-07-26)

Note: Version bump only for package amazon-cognito-identity-js

2.0.17-unstable.11 (2018-07-26)

Note: Version bump only for package amazon-cognito-identity-js

2.0.17-unstable.10 (2018-07-26)

Note: Version bump only for package amazon-cognito-identity-js

2.0.17-unstable.9 (2018-07-25)

Note: Version bump only for package amazon-cognito-identity-js

2.0.17-unstable.8 (2018-07-25)

Note: Version bump only for package amazon-cognito-identity-js

2.0.17-unstable.7 (2018-07-25)

Note: Version bump only for package amazon-cognito-identity-js

2.0.17-unstable.6 (2018-07-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.17-unstable.5 (2018-07-23)

Bug Fixes

  • amazon-cognito-identity-js: add mfa setting type and fix setUserMfaPreference method (0f8f9aa)

2.0.17-unstable.4 (2018-07-23)

Note: Version bump only for package amazon-cognito-identity-js

2.0.17-unstable.3 (2018-07-23)

Note: Version bump only for package amazon-cognito-identity-js

2.0.17-unstable.2 (2018-07-20)

Note: Version bump only for package amazon-cognito-identity-js

2.0.17-unstable.1 (2018-07-20)

Note: Version bump only for package amazon-cognito-identity-js

2.0.17-unstable.0 (2018-07-20)

Note: Version bump only for package amazon-cognito-identity-js

2.0.16 (2018-07-19)

Note: Version bump only for package amazon-cognito-identity-js

2.0.16-unstable.1 (2018-07-19)

Note: Version bump only for package amazon-cognito-identity-js

2.0.16-unstable.0 (2018-07-19)

Note: Version bump only for package amazon-cognito-identity-js

2.0.15 (2018-07-18)

Note: Version bump only for package amazon-cognito-identity-js

2.0.15-unstable.4 (2018-07-18)

Note: Version bump only for package amazon-cognito-identity-js

2.0.15-unstable.3 (2018-07-18)

Note: Version bump only for package amazon-cognito-identity-js

2.0.15-unstable.2 (2018-07-18)

Note: Version bump only for package amazon-cognito-identity-js

2.0.15-unstable.1 (2018-07-18)

Note: Version bump only for package amazon-cognito-identity-js

2.0.15-unstable.0 (2018-07-18)

Note: Version bump only for package amazon-cognito-identity-js

2.0.14-unstable.1 (2018-07-03)

Bug Fixes

  • amazon-cognito-identity-js: attach raw message for unknown errors (203d50b)
  • amazon-cognito-identity-js: attach raw message for unknown errors (69be072)

2.0.14-unstable.0 (2018-07-02)

Note: Version bump only for package amazon-cognito-identity-js

2.0.13 (2018-06-29)

Note: Version bump only for package amazon-cognito-identity-js

2.0.13-unstable.5 (2018-06-29)

Note: Version bump only for package amazon-cognito-identity-js

2.0.13-unstable.4 (2018-06-29)

Note: Version bump only for package amazon-cognito-identity-js

2.0.13-unstable.3 (2018-06-28)

Note: Version bump only for package amazon-cognito-identity-js

2.0.13-unstable.2 (2018-06-27)

Note: Version bump only for package amazon-cognito-identity-js

2.0.13-unstable.1 (2018-06-27)

Note: Version bump only for package amazon-cognito-identity-js

2.0.13-unstable.0 (2018-06-27)

Note: Version bump only for package amazon-cognito-identity-js

2.0.12 (2018-06-27)

Note: Version bump only for package amazon-cognito-identity-js

2.0.12-unstable.2 (2018-06-26)

Note: Version bump only for package amazon-cognito-identity-js

2.0.12-unstable.1 (2018-06-22)

Note: Version bump only for package amazon-cognito-identity-js

2.0.12-unstable.0 (2018-06-22)

Note: Version bump only for package amazon-cognito-identity-js

2.0.11 (2018-06-21)

Note: Version bump only for package amazon-cognito-identity-js

2.0.10 (2018-06-20)

2.0.10-unstable.3 (2018-06-21)

Note: Version bump only for package amazon-cognito-identity-js

2.0.10-unstable.2 (2018-06-21)

Note: Version bump only for package amazon-cognito-identity-js

2.0.10-unstable.1 (2018-06-20)

Note: Version bump only for package amazon-cognito-identity-js

2.0.10-unstable.0 (2018-06-20)

Bug Fixes

  • pushnotification: revert change in pr 952 (257fc40)

2.0.9 (2018-06-04)

Bug Fixes

  • pushnotification: revert change in pr 952 (257fc40)

2.0.8 (2018-06-02)

2.0.7-unstable.49 (2018-06-19)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.48 (2018-06-18)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.47 (2018-06-18)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.46 (2018-06-16)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.45 (2018-06-13)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.44 (2018-06-13)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.43 (2018-06-12)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.42 (2018-06-11)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.41 (2018-06-08)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.40 (2018-06-08)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.39 (2018-06-07)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.38 (2018-06-06)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.37 (2018-06-05)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.36 (2018-06-04)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.35 (2018-06-04)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7 (2018-06-01)

2.0.7-unstable.34 (2018-06-04)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.33 (2018-06-02)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.32 (2018-06-01)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.31 (2018-06-01)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.30 (2018-06-01)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.29 (2018-05-31)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.28 (2018-05-31)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.23 (2018-05-31)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.22 (2018-05-31)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.21 (2018-05-30)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.20 (2018-05-29)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.19 (2018-05-29)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.18 (2018-05-29)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.17 (2018-05-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.16 (2018-05-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.15 (2018-05-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.14 (2018-05-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.13 (2018-05-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.12 (2018-05-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.11 (2018-05-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.10 (2018-05-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.9 (2018-05-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.8 (2018-05-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.7 (2018-05-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.6 (2018-05-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.5 (2018-05-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.4 (2018-05-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.3 (2018-05-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.2 (2018-05-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.1 (2018-05-24)

Note: Version bump only for package amazon-cognito-identity-js

2.0.7-unstable.0 (2018-05-23)

Note: Version bump only for package amazon-cognito-identity-js