@loopback/authentication 4.2.9 → 4.2.10
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 +8 -0
- package/README.md +10 -8
- package/package.json +12 -13
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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
|
+
## [4.2.10](https://github.com/strongloop/loopback-next/compare/@loopback/authentication@4.2.9...@loopback/authentication@4.2.10) (2020-07-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @loopback/authentication
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [4.2.9](https://github.com/strongloop/loopback-next/compare/@loopback/authentication@4.2.8...@loopback/authentication@4.2.9) (2020-06-30)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @loopback/authentication
|
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# @loopback/authentication
|
|
2
2
|
|
|
3
|
-
A LoopBack 4 component for authentication support.
|
|
3
|
+
A LoopBack 4 component for authentication support. Its corresponding
|
|
4
|
+
documentation is in
|
|
5
|
+
[LoopBack component authentication](https://loopback.io/doc/en/lb4/Loopback-component-authentication.html)
|
|
4
6
|
|
|
5
7
|
## Overview
|
|
6
8
|
|
|
@@ -25,22 +27,22 @@ npm install --save @loopback/authentication
|
|
|
25
27
|
|
|
26
28
|
## Basic Use
|
|
27
29
|
|
|
28
|
-
[Load the AuthenticationComponent](https://loopback.io/doc/en/lb4/Loopback-component-authentication.html#authentication-component)
|
|
30
|
+
[Load the AuthenticationComponent](https://loopback.io/doc/en/lb4/Loopback-component-authentication.html#mounting-authentication-component)
|
|
29
31
|
into your application.
|
|
30
32
|
|
|
31
33
|
**Extension developers** need to:
|
|
32
34
|
|
|
33
|
-
- [create custom authentication strategies](https://loopback.io/doc/en/lb4/
|
|
35
|
+
- [create custom authentication strategies](https://loopback.io/doc/en/lb4/Implement-your-own-strategy.html)
|
|
34
36
|
|
|
35
37
|
**Application Developers** need to:
|
|
36
38
|
|
|
37
|
-
- [decorate controller functions with the authentication decorator](https://loopback.io/doc/en/lb4/
|
|
38
|
-
- [add the authentication action to a custom sequence](https://loopback.io/doc/en/lb4/
|
|
39
|
+
- [decorate controller functions with the authentication decorator](https://loopback.io/doc/en/lb4/Authentication-component-decorator.html)
|
|
40
|
+
- [add the authentication action to a custom sequence](https://loopback.io/doc/en/lb4/Authentication-component-action.html#adding-an-authentication-action-to-a-custom-sequence)
|
|
39
41
|
and
|
|
40
|
-
[bind the custom sequence to the application](https://loopback.io/doc/en/lb4/
|
|
41
|
-
- [register the authentication strategies](https://loopback.io/doc/en/lb4/
|
|
42
|
+
[bind the custom sequence to the application](https://loopback.io/doc/en/lb4/Authentication-component-action.html#binding-the-authenticating-sequence-to-the-application)
|
|
43
|
+
- [register the authentication strategies](https://loopback.io/doc/en/lb4/Authentication-component-strategy.html)
|
|
42
44
|
|
|
43
|
-
[Create and register a passport based strategy](https://
|
|
45
|
+
[Create and register a passport based strategy](https://loopback.io/doc/en/lb4/Authentication-passport.html)
|
|
44
46
|
|
|
45
47
|
## Related resources
|
|
46
48
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loopback/authentication",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.10",
|
|
4
4
|
"description": "A LoopBack component for authentication support.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -24,21 +24,20 @@
|
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@loopback/core": "^2.9.
|
|
28
|
-
"@loopback/
|
|
29
|
-
"@loopback/
|
|
30
|
-
"@
|
|
31
|
-
"@types/express": "^4.17.6",
|
|
27
|
+
"@loopback/core": "^2.9.2",
|
|
28
|
+
"@loopback/rest": "^5.2.1",
|
|
29
|
+
"@loopback/security": "^0.2.15",
|
|
30
|
+
"@types/express": "^4.17.7",
|
|
32
31
|
"@types/lodash": "^4.14.157",
|
|
33
|
-
"lodash": "^4.17.
|
|
32
|
+
"lodash": "^4.17.19",
|
|
34
33
|
"tslib": "^2.0.0"
|
|
35
34
|
},
|
|
36
35
|
"devDependencies": {
|
|
37
|
-
"@loopback/build": "^6.1.
|
|
38
|
-
"@loopback/eslint-config": "^8.0.
|
|
39
|
-
"@loopback/openapi-spec-builder": "^2.1.
|
|
40
|
-
"@loopback/testlab": "^3.2.
|
|
41
|
-
"@types/node": "^10.17.
|
|
36
|
+
"@loopback/build": "^6.1.1",
|
|
37
|
+
"@loopback/eslint-config": "^8.0.4",
|
|
38
|
+
"@loopback/openapi-spec-builder": "^2.1.10",
|
|
39
|
+
"@loopback/testlab": "^3.2.1",
|
|
40
|
+
"@types/node": "^10.17.27",
|
|
42
41
|
"jsonwebtoken": "^8.5.1"
|
|
43
42
|
},
|
|
44
43
|
"keywords": [
|
|
@@ -56,5 +55,5 @@
|
|
|
56
55
|
"url": "https://github.com/strongloop/loopback-next.git",
|
|
57
56
|
"directory": "packages/authentication"
|
|
58
57
|
},
|
|
59
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "5538896411bb56467ae52670a29d1aec1690be74"
|
|
60
59
|
}
|