alp-node-auth 6.0.2 → 6.0.6
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 +41 -0
- package/package.json +15 -14
- package/rollup.config.mjs +3 -1
- package/src/.eslintrc.json +1 -1
- package/tsconfig.eslint.json +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,47 @@
|
|
|
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
|
+
## [6.0.6](https://github.com/christophehurpeau/alp/compare/alp-node-auth@6.0.5...alp-node-auth@6.0.6) (2022-02-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package alp-node-auth
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [6.0.5](https://github.com/christophehurpeau/alp/compare/alp-node-auth@6.0.4...alp-node-auth@6.0.5) (2022-02-13)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* dont override react/react-in-jsx-scope ([5d21c9e](https://github.com/christophehurpeau/alp/commit/5d21c9ece092cd3397d1794211dae17cea6649f8))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [6.0.4](https://github.com/christophehurpeau/alp/compare/alp-node-auth@6.0.3...alp-node-auth@6.0.4) (2022-02-06)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* request.searchParams ([d4552c6](https://github.com/christophehurpeau/alp/commit/d4552c6ce41dc3bf7aeeaa24f5e4ddc16164ae7f))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
## [6.0.3](https://github.com/christophehurpeau/alp/compare/alp-node-auth@6.0.2...alp-node-auth@6.0.3) (2022-01-15)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
|
|
41
|
+
* update peer dependencies ([74892bc](https://github.com/christophehurpeau/alp/commit/74892bc8dd99ca862ba427914eb893b083e9b9da))
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
6
47
|
## [6.0.2](https://github.com/christophehurpeau/alp/compare/alp-node-auth@6.0.1...alp-node-auth@6.0.2) (2022-01-02)
|
|
7
48
|
|
|
8
49
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "alp-node-auth",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.6",
|
|
4
4
|
"description": "authentication with alp",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"alp"
|
|
@@ -43,12 +43,13 @@
|
|
|
43
43
|
"module:node": "./dist/index-node14.mjs",
|
|
44
44
|
"sideEffects": false,
|
|
45
45
|
"scripts": {
|
|
46
|
-
"build": "
|
|
46
|
+
"build": "yarn clean:build && rollup --config rollup.config.mjs && yarn run build:definitions",
|
|
47
47
|
"build:definitions": "tsc -p tsconfig.build.json",
|
|
48
|
-
"clean": "
|
|
48
|
+
"clean": "yarn clean:build",
|
|
49
|
+
"clean:build": "rm -Rf dist",
|
|
49
50
|
"lint": "yarn run lint:eslint",
|
|
50
51
|
"lint:eslint": "cd ../.. && yarn run eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet packages/alp-node-auth",
|
|
51
|
-
"watch": "
|
|
52
|
+
"watch": "yarn clean:build && rollup --config rollup.config.mjs --watch"
|
|
52
53
|
},
|
|
53
54
|
"prettier": {
|
|
54
55
|
"trailingComma": "all",
|
|
@@ -78,26 +79,26 @@
|
|
|
78
79
|
]
|
|
79
80
|
},
|
|
80
81
|
"peerDependencies": {
|
|
81
|
-
"alp-node": "^
|
|
82
|
-
"alp-router": "^
|
|
82
|
+
"alp-node": "^4.0.2",
|
|
83
|
+
"alp-router": "^5.1.0",
|
|
83
84
|
"liwi-mongo": "^8.0.1"
|
|
84
85
|
},
|
|
85
86
|
"dependencies": {
|
|
86
87
|
"@types/jsonwebtoken": "^8.5.1",
|
|
87
88
|
"@types/simple-oauth2": "^2.5.1",
|
|
88
|
-
"alp-types": "
|
|
89
|
+
"alp-types": "3.1.0",
|
|
89
90
|
"cookies": "^0.8.0",
|
|
90
91
|
"jsonwebtoken": "^8.5.1",
|
|
91
|
-
"nightingale-logger": "^12.1.
|
|
92
|
+
"nightingale-logger": "^12.1.4",
|
|
92
93
|
"simple-oauth2": "^2.2.1"
|
|
93
94
|
},
|
|
94
95
|
"devDependencies": {
|
|
95
|
-
"@babel/core": "7.
|
|
96
|
-
"alp-node": "4.
|
|
97
|
-
"alp-router": "5.1.
|
|
96
|
+
"@babel/core": "7.17.5",
|
|
97
|
+
"alp-node": "4.1.2",
|
|
98
|
+
"alp-router": "5.1.4",
|
|
98
99
|
"liwi-mongo": "8.3.1",
|
|
99
|
-
"pob-babel": "
|
|
100
|
-
"typescript": "4.5.
|
|
100
|
+
"pob-babel": "32.2.0",
|
|
101
|
+
"typescript": "4.5.5"
|
|
101
102
|
},
|
|
102
|
-
"gitHead": "
|
|
103
|
+
"gitHead": "5743ca423201457801590e12f607b1a60f7fa51a"
|
|
103
104
|
}
|
package/rollup.config.mjs
CHANGED
package/src/.eslintrc.json
CHANGED