Skip to content

Commit

Permalink
release 01/08/2018
Browse files Browse the repository at this point in the history
  • Loading branch information
powerful23 committed Jan 9, 2018
1 parent fb2ed72 commit bab2645
Show file tree
Hide file tree
Showing 11 changed files with 26 additions and 12 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,18 @@
* feature: Export Signer interface for 3rd party HttpModules
* bugFix: aws-amplify-react-native: Update pinpoint region in React Native
* feature: Better support for guest (Unauthenticated) credentials
* bugFix: documentation: Fix broken link (to authentication)
* bugFix: documentation: Fix broken link (to authentication)

## 01/08/2018

* aws-amplify - v0.1.31
* aws-amplify-react - v0.1.30
* aws-ampliify-react-native - v0.1.21

* Feature: Export Authenticator in aws-amplify-react-native
* Enhancement: Reduce bundle size by removing aws-mobile-analytics dependency
* Security issue: Change dependency on typedoc for security issue
* Bug fix: Timezone error for Windows
* Bug fix: Npm badge fix
* Bug fix: Doc syntax error fix
* Bug fix: Add charset on default header for API
2 changes: 1 addition & 1 deletion packages/aws-amplify-react-native/dist/API/RestClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export class RestClient {
}

if (init.body) {
libraryHeaders['content-type'] = 'application/json';
libraryHeaders['content-type'] = 'application/json; charset=UTF-8';
params.data = JSON.stringify(init.body);
}

Expand Down
4 changes: 2 additions & 2 deletions packages/aws-amplify-react-native/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import I18n from './I18n';
import { ConsoleLogger as Logger } from './Common';

import * as Components from './components';
import { withAuthenticator, S3Album, S3Image } from './components';
import { Authenticator, withAuthenticator, S3Album, S3Image } from './components';

const logger = new Logger('Amplify');

Expand Down Expand Up @@ -52,4 +52,4 @@ Amplify.Logger = Logger;
Amplify.Components = Components;
Amplify.withAuthenticator = withAuthenticator;

export { Auth, Analytics, API, Cache, Storage, I18n, Logger, Components, withAuthenticator, S3Album, S3Image };
export { Auth, Authenticator, Analytics, API, Cache, Storage, I18n, Logger, Components, withAuthenticator, S3Album, S3Image };
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.1.20",
"version": "0.1.21",
"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/dist/aws-amplify.js
Original file line number Diff line number Diff line change
Expand Up @@ -33719,7 +33719,7 @@ var RestClient = /** @class */ (function () {
libraryHeaders = {};
extraParams = Object.assign({}, init);
if (extraParams.body) {
libraryHeaders['content-type'] = 'application/json';
libraryHeaders['content-type'] = 'application/json; charset=UTF-8';
params.data = JSON.stringify(extraParams.body);
}
params.headers = __assign({}, libraryHeaders, extraParams.headers);
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-amplify/dist/aws-amplify.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/aws-amplify/dist/aws-amplify.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/aws-amplify/dist/aws-amplify.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/aws-amplify/lib/API/RestClient.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/aws-amplify/lib/API/RestClient.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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

0 comments on commit bab2645

Please sign in to comment.