alp-node-auth 7.1.1 → 7.2.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 +22 -0
- package/package.json +7 -9
- package/src/.eslintrc.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
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.2.0](https://github.com/christophehurpeau/alp/compare/alp-node-auth@7.1.2...alp-node-auth@7.2.0) (2023-01-31)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* update liwi ([428845b](https://github.com/christophehurpeau/alp/commit/428845bd6feca4701ccde697b31867abeda337fc))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [7.1.2](https://github.com/christophehurpeau/alp/compare/alp-node-auth@7.1.1...alp-node-auth@7.1.2) (2023-01-31)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **alp-node-auth:** remove react peerdep ([96a9077](https://github.com/christophehurpeau/alp/commit/96a90777e14e36311f86760603b55eca950b042f))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## [7.1.1](https://github.com/christophehurpeau/alp/compare/alp-node-auth@7.1.0...alp-node-auth@7.1.1) (2023-01-31)
|
|
7
29
|
|
|
8
30
|
**Note:** Version bump only for package alp-node-auth
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "alp-node-auth",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.2.0",
|
|
4
4
|
"description": "authentication with alp",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"alp"
|
|
@@ -73,8 +73,7 @@
|
|
|
73
73
|
"peerDependencies": {
|
|
74
74
|
"alp-node": "^5.0.0",
|
|
75
75
|
"alp-router": "^6.0.0",
|
|
76
|
-
"liwi-mongo": "^10.
|
|
77
|
-
"react": "^18.1.0",
|
|
76
|
+
"liwi-mongo": "^10.2.0",
|
|
78
77
|
"router-segments": "^6.0.0"
|
|
79
78
|
},
|
|
80
79
|
"dependencies": {
|
|
@@ -88,13 +87,12 @@
|
|
|
88
87
|
},
|
|
89
88
|
"devDependencies": {
|
|
90
89
|
"@babel/core": "7.20.12",
|
|
91
|
-
"alp-node": "5.1.
|
|
92
|
-
"alp-router": "6.1.
|
|
93
|
-
"liwi-mongo": "10.
|
|
94
|
-
"pob-babel": "35.
|
|
95
|
-
"react": "18.2.0",
|
|
90
|
+
"alp-node": "5.1.2",
|
|
91
|
+
"alp-router": "6.1.2",
|
|
92
|
+
"liwi-mongo": "10.2.0",
|
|
93
|
+
"pob-babel": "35.5.0",
|
|
96
94
|
"router-segments": "6.0.0",
|
|
97
95
|
"typescript": "4.9.5"
|
|
98
96
|
},
|
|
99
|
-
"gitHead": "
|
|
97
|
+
"gitHead": "212c54c0c9aaba4e2ecf54880b06656f188289c0"
|
|
100
98
|
}
|
package/src/.eslintrc.json
CHANGED
|
@@ -7,8 +7,7 @@
|
|
|
7
7
|
"plugins": ["@typescript-eslint"],
|
|
8
8
|
"extends": [
|
|
9
9
|
"@pob/eslint-config-typescript",
|
|
10
|
-
"@pob/eslint-config-typescript/node"
|
|
11
|
-
"@pob/eslint-config-typescript-react"
|
|
10
|
+
"@pob/eslint-config-typescript/node"
|
|
12
11
|
],
|
|
13
12
|
"ignorePatterns": ["*.d.ts"],
|
|
14
13
|
"rules": {
|
|
@@ -19,7 +18,7 @@
|
|
|
19
18
|
},
|
|
20
19
|
"overrides": [
|
|
21
20
|
{
|
|
22
|
-
"files": ["**/*.test.
|
|
21
|
+
"files": ["**/*.test.ts", "__tests__/**/*.ts"],
|
|
23
22
|
"extends": ["@pob/eslint-config-typescript/test"],
|
|
24
23
|
"env": {
|
|
25
24
|
"jest": true
|