Skip to content

Commit e6f2e92

Browse files
authored
Merge pull request #130 from powerful23/master
release 01/08/2018
2 parents fb2ed72 + bab2645 commit e6f2e92

File tree

11 files changed

+26
-12
lines changed

11 files changed

+26
-12
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,18 @@
1717
* feature: Export Signer interface for 3rd party HttpModules
1818
* bugFix: aws-amplify-react-native: Update pinpoint region in React Native
1919
* feature: Better support for guest (Unauthenticated) credentials
20-
* bugFix: documentation: Fix broken link (to authentication)
20+
* bugFix: documentation: Fix broken link (to authentication)
21+
22+
## 01/08/2018
23+
24+
* aws-amplify - v0.1.31
25+
* aws-amplify-react - v0.1.30
26+
* aws-ampliify-react-native - v0.1.21
27+
28+
* Feature: Export Authenticator in aws-amplify-react-native
29+
* Enhancement: Reduce bundle size by removing aws-mobile-analytics dependency
30+
* Security issue: Change dependency on typedoc for security issue
31+
* Bug fix: Timezone error for Windows
32+
* Bug fix: Npm badge fix
33+
* Bug fix: Doc syntax error fix
34+
* Bug fix: Add charset on default header for API

packages/aws-amplify-react-native/dist/API/RestClient.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export class RestClient {
7979
}
8080

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

packages/aws-amplify-react-native/dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import I18n from './I18n';
2121
import { ConsoleLogger as Logger } from './Common';
2222

2323
import * as Components from './components';
24-
import { withAuthenticator, S3Album, S3Image } from './components';
24+
import { Authenticator, withAuthenticator, S3Album, S3Image } from './components';
2525

2626
const logger = new Logger('Amplify');
2727

@@ -52,4 +52,4 @@ Amplify.Logger = Logger;
5252
Amplify.Components = Components;
5353
Amplify.withAuthenticator = withAuthenticator;
5454

55-
export { Auth, Analytics, API, Cache, Storage, I18n, Logger, Components, withAuthenticator, S3Album, S3Image };
55+
export { Auth, Authenticator, Analytics, API, Cache, Storage, I18n, Logger, Components, withAuthenticator, S3Album, S3Image };

packages/aws-amplify-react-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-amplify-react-native",
3-
"version": "0.1.20",
3+
"version": "0.1.21",
44
"description": "AWS Amplify is a JavaScript library for Frontend and mobile developers building cloud-enabled applications.",
55
"main": "dist/index.js",
66
"scripts": {

packages/aws-amplify/dist/aws-amplify.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33719,7 +33719,7 @@ var RestClient = /** @class */ (function () {
3371933719
libraryHeaders = {};
3372033720
extraParams = Object.assign({}, init);
3372133721
if (extraParams.body) {
33722-
libraryHeaders['content-type'] = 'application/json';
33722+
libraryHeaders['content-type'] = 'application/json; charset=UTF-8';
3372333723
params.data = JSON.stringify(extraParams.body);
3372433724
}
3372533725
params.headers = __assign({}, libraryHeaders, extraParams.headers);

packages/aws-amplify/dist/aws-amplify.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/aws-amplify/dist/aws-amplify.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/aws-amplify/dist/aws-amplify.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/aws-amplify/lib/API/RestClient.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/aws-amplify/lib/API/RestClient.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)