@xtaskjs/security 1.0.4 → 1.0.7
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 +16 -0
- package/README.md +8 -1
- package/package.json +9 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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
|
+
## 1.0.6 (2026-03-16)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @xtaskjs/security
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## 1.0.5 (2026-03-16)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @xtaskjs/security
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## 1.0.4 (2026-03-15)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @xtaskjs/security
|
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Security integration package for xtaskjs.
|
|
4
4
|
|
|
5
|
+
This package is part of the xtaskjs project, hosted at [xtaskjs.io](https://xtaskjs.io).
|
|
6
|
+
|
|
5
7
|
## Installation
|
|
6
8
|
```bash
|
|
7
9
|
npm install @xtaskjs/security passport passport-jwt reflect-metadata
|
|
@@ -112,4 +114,9 @@ class SecurityAwareService {
|
|
|
112
114
|
private readonly authorization: SecurityAuthorizationService
|
|
113
115
|
) {}
|
|
114
116
|
}
|
|
115
|
-
```
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
## Resources
|
|
120
|
+
- Project site and documentation: [xtaskjs.io](https://xtaskjs.io)
|
|
121
|
+
- npm package: [@xtaskjs/security](https://www.npmjs.com/package/@xtaskjs/security)
|
|
122
|
+
- Source repository: [xtaskjs/xtaskjs](https://github.com/xtaskjs/xtaskjs)
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xtaskjs/security",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.7",
|
|
4
|
+
"description": "Authentication and authorization integration for xtaskjs.",
|
|
5
5
|
"author": "Javier Rodriguez Soler",
|
|
6
|
-
"homepage": "https://xtaskjs.
|
|
6
|
+
"homepage": "https://xtaskjs.io",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
9
9
|
"exports": {
|
|
@@ -31,16 +31,19 @@
|
|
|
31
31
|
},
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
34
|
-
"url": "https://github.com/xtaskjs/
|
|
34
|
+
"url": "https://github.com/xtaskjs/xtask.git",
|
|
35
35
|
"directory": "packages/security"
|
|
36
36
|
},
|
|
37
|
+
"bugs": {
|
|
38
|
+
"url": "https://github.com/xtaskjs/xtask/issues"
|
|
39
|
+
},
|
|
37
40
|
"publishConfig": {
|
|
38
41
|
"access": "public"
|
|
39
42
|
},
|
|
40
43
|
"license": "MIT",
|
|
41
44
|
"dependencies": {
|
|
42
|
-
"@xtaskjs/common": "^1.0.
|
|
43
|
-
"@xtaskjs/core": "^1.0.
|
|
45
|
+
"@xtaskjs/common": "^1.0.22",
|
|
46
|
+
"@xtaskjs/core": "^1.0.22",
|
|
44
47
|
"passport": "^0.7.0",
|
|
45
48
|
"passport-jwt": "^4.0.1",
|
|
46
49
|
"passport-strategy": "^1.0.0"
|