@axinom/mosaic-user-auth 0.2.0-rc.4 → 0.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 +15 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,21 @@
|
|
|
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
|
+
## [0.2.0](https://dev.azure.com/axinom/CMS/_git/Navy/branchCompare?baseVersion=GT@axinom/mosaic-user-auth@0.1.0&targetVersion=GT@axinom/mosaic-user-auth@0.2.0) (2022-02-21)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add OTP related methods to User Auth Client ([61a59d1](https://dev.azure.com/axinom/CMS/_git/Navy/commit/61a59d16bb1eb6ac9d694e46465de3d4ecbcbf68))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* :bug: allow to call completeUserSignUp without a password ([fc499d4](https://dev.azure.com/axinom/CMS/_git/Navy/commit/fc499d4f7a21b3b19a32f662dda0a3e9259ff7ae))
|
|
17
|
+
* :bug: use correct URL path for fetching well-known config ([5eb3179](https://dev.azure.com/axinom/CMS/_git/Navy/commit/5eb317956d620840ae560084d5fb29422955b633))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
6
21
|
## [0.1.0](https://dev.azure.com/axinom/CMS/_git/Navy/branchCompare?baseVersion=GT@axinom/mosaic-user-auth@0.0.5&targetVersion=GT@axinom/mosaic-user-auth@0.1.0) (2022-02-02)
|
|
7
22
|
|
|
8
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axinom/mosaic-user-auth",
|
|
3
|
-
"version": "0.2.0
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Integration utilities from user-service for application frontends",
|
|
5
5
|
"author": "Axinom",
|
|
6
6
|
"license": "PROPRIETARY",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"test:ci": "jest --reporters=default --reporters=jest-junit --coverage --coverageReporters=cobertura --coverageReporters=html"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@axinom/mosaic-user-auth-utils": "^0.1.1
|
|
29
|
+
"@axinom/mosaic-user-auth-utils": "^0.1.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"jest": "26.6.0",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "c2a761edbf67a6b09600f16bc94465cc0c05a9b7"
|
|
47
47
|
}
|