Skip to content

Commit 2ca16cb

Browse files
authored
Merge pull request #60 from moneytree/bump-version-2.1.1
Releasing v2.1.1
2 parents b000dc4 + a7a02f8 commit 2ca16cb

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [2.1.1](https://github.com/moneytree/mt-link-javascript-sdk/compare/2.1.0...2.1.1) (2020-12-15)
2+
3+
### Bug Fixes
4+
* fix window.open didn't work on Safari 14 ([882c23c](https://github.com/moneytree/mt-link-javascript-sdk/commit/882c23c1abdc467a964b918ea7502f4f70e7da8d))
5+
* fix forceLogout didn't work ([fa3055a](https://github.com/moneytree/mt-link-javascript-sdk/commit/fa3055a100f2bd4b7c5a4660b9dfeba45c601078))
6+
17
# [2.1.0](https://github.com/moneytree/mt-link-javascript-sdk/compare/2.0.0...2.1.0) (2020-12-09)
28

39
### Bug Fixes

dist/helper.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ export declare function generateSdkHeaderInfo(): {
88
'mt-sdk-platform': string;
99
'mt-sdk-version': string;
1010
};
11+
export declare function openWindow(url: string, windowName: string): Window | null;

dist/index.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/typings.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export interface ConfigsOptions extends PrivateConfigsOptions {
1313
showAuthToggle?: boolean;
1414
showRememberMe?: boolean;
1515
isNewTab?: boolean;
16+
forceLogout?: boolean;
1617
}
1718
export declare type ServicesListType = {
1819
view?: 'services-list';

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@moneytree/mt-link-javascript-sdk",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "Moneytree Link JavaScript SDK",
55
"main": "dist/index.js",
66
"files": [

0 commit comments

Comments
 (0)