Skip to content

Commit

Permalink
Merge pull request aws-amplify#320 from powerful23/deploy-02-19
Browse files Browse the repository at this point in the history
Deploy 02 19
  • Loading branch information
mlabieniec authored Feb 20, 2018
2 parents ebf06c6 + b4a2ec4 commit 912bf28
Show file tree
Hide file tree
Showing 17 changed files with 310 additions and 189 deletions.
24 changes: 23 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,29 @@
# Changelog for AWS Amplify
<!--LATEST=0.1.36-->
<!--LATEST=0.2.7-->
<!--ENTRYINSERT-->

## 02/19/2018
* amazon-cognito-identity-js - v2.0.1
* Enhancement: Fix incorrect RNAWSCognito podspec file extension #278
* Enhancement: Adds missing 'listDevices' function to CognitoUser class for TypeScript type safety #276
* Enhancement: Add and update MFA typescript interface for CognitoUser #279
* aws-amplify - v0.2.7
* Bug Fix: Force the guest credentials to return null when mandatory sign in enabled #295
* Bug Fix: Fix the Typescript definitions for API, Analytics, Auth and Storage #263
* Enhancement: Docs/update quick start #274
* Enhancement: Support centralized tracking #199
* Enhancement: Support passing and signing of custom domains in API RestClient #310
* Enhancement: Return full response of api if you set response in the init object to true #300
* aws-amplify-react - v0.1.33
* Bug Fix: Check if SMS enabled for RequireNewPassword #296
* Enhancement: Hide image or text if ```hidden``` props set #291
* Enhancement: Make `withAuthenticator` HOC configurable #110
* aws-amplify-react-naitve - v0.2.4
* Bug Fix: Check if SMS enabled for RequireNewPassword #296
* Enhancement: Add Loading page for React Native authenticator #233
* Enhancement: Make `withAuthenticator` HOC configurable #110
* Enhancement: Use ```componentWillReceiveProps``` instead of ```componentWillMount``` to set username in ```confirmSignUp``` #306

## 02/12/2018
* aws-amplify - v0.2.6
* Bug fix: Wait for current credentials before signOut #247
Expand Down
2 changes: 1 addition & 1 deletion packages/amazon-cognito-identity-js/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "amazon-cognito-identity-js",
"description": "Amazon Cognito Identity Provider JavaScript SDK",
"version": "2.0.0",
"version": "2.0.1",
"author": {
"name": "Amazon Web Services",
"email": "[email protected]",
Expand Down
6 changes: 3 additions & 3 deletions packages/aws-amplify-react-native/dist/Auth/ConfirmSignUp.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ export default class ConfirmSignUp extends AuthPiece {
Auth.resendSignUp(username).then(() => logger.debug('code sent')).catch(err => this.error(err));
}

componentWillMount() {
const username = this.props.authData;
componentWillReceiveProps(nextProps) {
const username = nextProps.authData;
if (username && !this.state.username) {
this.setState({ username: username });
this.setState({ username });
}
}

Expand Down
2 changes: 1 addition & 1 deletion packages/aws-amplify-react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aws-amplify-react-native",
"version": "0.2.3",
"version": "0.2.4",
"description": "AWS Amplify is a JavaScript library for Frontend and mobile developers building cloud-enabled applications.",
"main": "dist/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-amplify-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aws-amplify-react",
"version": "0.1.32",
"version": "0.1.33",
"description": "AWS Amplify is a JavaScript library for Frontend and mobile developers building cloud-enabled applications.",
"main": "dist/index.js",
"scripts": {
Expand Down
Loading

0 comments on commit 912bf28

Please sign in to comment.