@checkstack/auth-github-backend 0.0.20 → 0.0.22
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/src/index.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @checkstack/auth-github-backend
|
|
2
2
|
|
|
3
|
+
## 0.0.22
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [e01945b]
|
|
8
|
+
- @checkstack/auth-backend@0.4.13
|
|
9
|
+
|
|
10
|
+
## 0.0.21
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- c0c0ed2: Introduce generic "Login Flows" to allow authentication strategies to define their own interaction patterns (form, redirect, or oauth) during registration. This fixes an issue where LDAP login attempts were incorrectly routed through the standard social login flow by instead providing a dedicated credential collection form for LDAP.
|
|
15
|
+
- Updated dependencies [c0c0ed2]
|
|
16
|
+
- Updated dependencies [c0c0ed2]
|
|
17
|
+
- @checkstack/backend-api@0.9.0
|
|
18
|
+
- @checkstack/auth-backend@0.4.12
|
|
19
|
+
|
|
3
20
|
## 0.0.20
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@checkstack/auth-github-backend",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.22",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"checkstack": {
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
"typecheck": "tsc --noEmit"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@checkstack/backend-api": "0.8.
|
|
17
|
-
"@checkstack/auth-backend": "0.4.
|
|
18
|
-
"@checkstack/common": "0.6.
|
|
16
|
+
"@checkstack/backend-api": "0.8.2",
|
|
17
|
+
"@checkstack/auth-backend": "0.4.11",
|
|
18
|
+
"@checkstack/common": "0.6.4",
|
|
19
19
|
"zod": "^4.2.1"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@checkstack/tsconfig": "0.0.
|
|
22
|
+
"@checkstack/tsconfig": "0.0.4",
|
|
23
23
|
"typescript": "^5.9.3"
|
|
24
24
|
}
|
|
25
25
|
}
|
package/src/index.ts
CHANGED