@loopback/authentication 7.2.0 → 7.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/package.json +32 -32
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [7.3.0](https://github.com/strongloop/loopback-next/compare/@loopback/authentication@7.2.0...@loopback/authentication@7.3.0) (2021-05-03)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* support node v16 ([ac99415](https://github.com/strongloop/loopback-next/commit/ac994154543bde22b4482ba98813351656db1b55))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [7.2.0](https://github.com/strongloop/loopback-next/compare/@loopback/authentication@7.1.0...@loopback/authentication@7.2.0) (2021-04-06)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loopback/authentication",
|
|
3
|
-
"version": "7.2.0",
|
|
4
3
|
"description": "A LoopBack component for authentication support.",
|
|
4
|
+
"version": "7.3.0",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"LoopBack",
|
|
7
|
+
"Authentication"
|
|
8
|
+
],
|
|
9
|
+
"license": "MIT",
|
|
5
10
|
"main": "dist/index.js",
|
|
6
11
|
"types": "dist/index.d.ts",
|
|
12
|
+
"author": "IBM Corp.",
|
|
13
|
+
"copyright.owner": "IBM Corp.",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/strongloop/loopback-next.git",
|
|
17
|
+
"directory": "packages/authentication"
|
|
18
|
+
},
|
|
7
19
|
"engines": {
|
|
8
|
-
"node": "^10.16 || 12 || 14 ||
|
|
20
|
+
"node": "^10.16 || 12 || 14 || 16"
|
|
9
21
|
},
|
|
10
22
|
"scripts": {
|
|
11
23
|
"acceptance": "lb-mocha \"dist/__tests__/acceptance/**/*.js\"",
|
|
@@ -17,47 +29,35 @@
|
|
|
17
29
|
"unit": "lb-mocha \"dist/__tests__/unit/**/*.js\"",
|
|
18
30
|
"verify": "npm pack && tar xf loopback-authentication*.tgz && tree package && npm run clean"
|
|
19
31
|
},
|
|
20
|
-
"author": "IBM Corp.",
|
|
21
|
-
"copyright.owner": "IBM Corp.",
|
|
22
|
-
"license": "MIT",
|
|
23
32
|
"publishConfig": {
|
|
24
33
|
"access": "public"
|
|
25
34
|
},
|
|
35
|
+
"files": [
|
|
36
|
+
"README.md",
|
|
37
|
+
"dist",
|
|
38
|
+
"src",
|
|
39
|
+
"!*/__tests__"
|
|
40
|
+
],
|
|
26
41
|
"peerDependencies": {
|
|
27
|
-
"@loopback/core": "^2.
|
|
28
|
-
"@loopback/rest": "^9.
|
|
42
|
+
"@loopback/core": "^2.16.0",
|
|
43
|
+
"@loopback/rest": "^9.3.0"
|
|
29
44
|
},
|
|
30
45
|
"dependencies": {
|
|
31
|
-
"@loopback/security": "^0.
|
|
46
|
+
"@loopback/security": "^0.5.0",
|
|
32
47
|
"@types/express": "^4.17.11",
|
|
33
48
|
"@types/lodash": "^4.14.168",
|
|
34
49
|
"lodash": "^4.17.21",
|
|
35
|
-
"tslib": "^2.
|
|
50
|
+
"tslib": "^2.2.0"
|
|
36
51
|
},
|
|
37
52
|
"devDependencies": {
|
|
38
|
-
"@loopback/build": "^6.
|
|
39
|
-
"@loopback/core": "^2.
|
|
40
|
-
"@loopback/eslint-config": "^10.
|
|
41
|
-
"@loopback/openapi-spec-builder": "^3.
|
|
42
|
-
"@loopback/rest": "^9.
|
|
43
|
-
"@loopback/testlab": "^3.
|
|
44
|
-
"@types/node": "^10.17.
|
|
53
|
+
"@loopback/build": "^6.4.0",
|
|
54
|
+
"@loopback/core": "^2.16.0",
|
|
55
|
+
"@loopback/eslint-config": "^10.2.0",
|
|
56
|
+
"@loopback/openapi-spec-builder": "^3.2.0",
|
|
57
|
+
"@loopback/rest": "^9.3.0",
|
|
58
|
+
"@loopback/testlab": "^3.4.0",
|
|
59
|
+
"@types/node": "^10.17.59",
|
|
45
60
|
"jsonwebtoken": "^8.5.1"
|
|
46
61
|
},
|
|
47
|
-
"
|
|
48
|
-
"LoopBack",
|
|
49
|
-
"Authentication"
|
|
50
|
-
],
|
|
51
|
-
"files": [
|
|
52
|
-
"README.md",
|
|
53
|
-
"dist",
|
|
54
|
-
"src",
|
|
55
|
-
"!*/__tests__"
|
|
56
|
-
],
|
|
57
|
-
"repository": {
|
|
58
|
-
"type": "git",
|
|
59
|
-
"url": "https://github.com/strongloop/loopback-next.git",
|
|
60
|
-
"directory": "packages/authentication"
|
|
61
|
-
},
|
|
62
|
-
"gitHead": "156ca0fcf8fa246ca380ab28b44b3708896be2b6"
|
|
62
|
+
"gitHead": "2ca802912d8c7750d0256f3c3d493c4525415201"
|
|
63
63
|
}
|