Skip to content

Commit b93a36e

Browse files
authored
Merge pull request #1676 from auth0/prepare-v11.16.3
Release v11.16.3
2 parents 16cbceb + 07fe4a7 commit b93a36e

File tree

4 files changed

+26
-33
lines changed

4 files changed

+26
-33
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Change Log
22

3+
## [v11.16.3](https://github.com/auth0/lock/tree/v11.16.3) (2019-06-11)
4+
[Full Changelog](https://github.com/auth0/lock/compare/v11.16.2...v11.16.3)
5+
6+
7+
**Added**
8+
- Add support for Apple strategy [\#1674](https://github.com/auth0/lock/pull/1674) ([astanciu](https://github.com/astanciu))
9+
10+
**Fixed**
11+
- Fix password policy when using tenant connections [\#1664](https://github.com/auth0/lock/pull/1664) ([luisrudge](https://github.com/luisrudge))
12+
13+
314
## [v11.16.2](https://github.com/auth0/lock/tree/v11.16.2) (2019-06-03)
415
[Full Changelog](https://github.com/auth0/lock/compare/v11.16.1...v11.16.2)
516

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ From CDN
2323

2424
```html
2525
<!-- Latest patch release (recommended for production) -->
26-
<script src="https://cdn.auth0.com/js/lock/11.16.2/lock.min.js"></script>
26+
<script src="https://cdn.auth0.com/js/lock/11.16.3/lock.min.js"></script>
2727
```
2828

2929
From [npm](https://npmjs.org)

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "auth0-lock",
3-
"version": "11.16.2",
3+
"version": "11.16.3",
44
"main": "build/lock.js",
55
"ignore": [
66
"lib-cov",

package.json

Lines changed: 13 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
11
{
22
"name": "auth0-lock",
3-
"version": "11.16.2",
3+
"version": "11.16.3",
44
"description": "Auth0 Lock",
55
"author": "Auth0 <[email protected]> (http://auth0.com)",
66
"license": "MIT",
7-
"keywords": [
8-
"auth0",
9-
"auth",
10-
"openid",
11-
"authentication",
12-
"passwordless",
13-
"browser",
14-
"jwt"
15-
],
7+
"keywords": ["auth0", "auth", "openid", "authentication", "passwordless", "browser", "jwt"],
168
"repository": {
179
"type": "git",
1810
"url": "git://github.com/auth0/lock"
@@ -28,9 +20,12 @@
2820
"precommit": "lint-staged",
2921
"lint": "eslint --ext .jsx,.js src/",
3022
"test": "cross-env BABEL_ENV=test zuul -- test/**/*.test.js",
31-
"test:browser": "cross-env BABEL_ENV=test zuul --local 8080 --disable-tunnel -- test/**/*.test.js",
32-
"test:cli": "cross-env BABEL_ENV=test mochify --extension=.jsx --transform=babelify ./test/setup.js test/**/*.test.js",
33-
"test:watch": "cross-env BABEL_ENV=test mochify --watch --extension=.jsx --transform=babelify ./test/setup.js test/**/*.test.js",
23+
"test:browser":
24+
"cross-env BABEL_ENV=test zuul --local 8080 --disable-tunnel -- test/**/*.test.js",
25+
"test:cli":
26+
"cross-env BABEL_ENV=test mochify --extension=.jsx --transform=babelify ./test/setup.js test/**/*.test.js",
27+
"test:watch":
28+
"cross-env BABEL_ENV=test mochify --watch --extension=.jsx --transform=babelify ./test/setup.js test/**/*.test.js",
3429
"test:jest": "jest --coverage --runInBand",
3530
"test:jest:watch": "jest --watch --coverage",
3631
"test:es-check": "es-check es5 'build/*.js'",
@@ -116,13 +111,8 @@
116111
"localPath": "build"
117112
},
118113
"jest": {
119-
"modulePaths": [
120-
"<rootDir>/src/",
121-
"<rootDir>/src/__tests__"
122-
],
123-
"setupFiles": [
124-
"<rootDir>/src/__tests__/setup-tests.js"
125-
],
114+
"modulePaths": ["<rootDir>/src/", "<rootDir>/src/__tests__"],
115+
"setupFiles": ["<rootDir>/src/__tests__/setup-tests.js"],
126116
"coveragePathIgnorePatterns": [
127117
"/node_modules/",
128118
"<rootDir>/test/",
@@ -137,18 +127,10 @@
137127
"<rootDir>/src/__tests__/testUtils.js",
138128
"<rootDir>/src/__tests__/setup-tests.js"
139129
],
140-
"coverageReporters": [
141-
"lcov",
142-
"text-summary"
143-
]
130+
"coverageReporters": ["lcov", "text-summary"]
144131
},
145132
"lint-staged": {
146-
"*.{js,jsx}": [
147-
"npm run lint"
148-
],
149-
"*.{js,jsx,json}": [
150-
"prettier --write --print-width 100 --single-quote",
151-
"git add"
152-
]
133+
"*.{js,jsx}": ["npm run lint"],
134+
"*.{js,jsx,json}": ["prettier --write --print-width 100 --single-quote", "git add"]
153135
}
154136
}

0 commit comments

Comments
 (0)