@odx/auth 5.1.0 → 5.1.1
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 +17 -0
- package/package.json +5 -5
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# @odx/auth
|
|
2
|
+
|
|
3
|
+
## 5.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 75458a7b: Added CHANGELOG.md to published package
|
|
8
|
+
|
|
9
|
+
## 5.1.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 88c509a7: add requireSignIn config option to force sign in on application startup
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 6b44bde9: only run auth plugins if a valid access token is present
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@odx/auth",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.1",
|
|
4
4
|
"author": "Drägerwerk AG & Co.KGaA",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"peerDependencies": {
|
|
@@ -8,13 +8,14 @@
|
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"angular-oauth2-oidc": "^15.0.0",
|
|
11
|
-
"jwt-decode": "^3.1.0",
|
|
12
11
|
"tslib": "^2.5.0",
|
|
13
12
|
"deepmerge-ts": "^5.1.0"
|
|
14
13
|
},
|
|
15
14
|
"publishConfig": {
|
|
16
|
-
"access": "public"
|
|
15
|
+
"access": "public",
|
|
16
|
+
"directory": "../../dist/libs/auth"
|
|
17
17
|
},
|
|
18
|
+
"sideEffects": false,
|
|
18
19
|
"module": "fesm2015/odx-auth.mjs",
|
|
19
20
|
"es2020": "fesm2020/odx-auth.mjs",
|
|
20
21
|
"esm2020": "esm2020/odx-auth.mjs",
|
|
@@ -41,6 +42,5 @@
|
|
|
41
42
|
"node": "./fesm2015/odx-auth-plugins-service-connect.mjs",
|
|
42
43
|
"default": "./fesm2020/odx-auth-plugins-service-connect.mjs"
|
|
43
44
|
}
|
|
44
|
-
}
|
|
45
|
-
"sideEffects": false
|
|
45
|
+
}
|
|
46
46
|
}
|