@backstage/plugin-auth-backend-module-github-provider 0.4.0 → 0.5.0-next.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 +13 -0
- package/config.d.ts +4 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend-module-github-provider
|
|
2
2
|
|
|
3
|
+
## 0.5.0-next.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- ff07934: Added the `userIdMatchingUserEntityAnnotation` sign-in resolver that matches users by their GitHub user ID.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 69d880e: Bump to latest zod to ensure it has the latest features
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/backend-plugin-api@1.7.0-next.0
|
|
14
|
+
- @backstage/plugin-auth-node@0.6.12-next.0
|
|
15
|
+
|
|
3
16
|
## 0.4.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
package/config.d.ts
CHANGED
|
@@ -44,6 +44,10 @@ export interface Config {
|
|
|
44
44
|
resolver: 'preferredUsernameMatchingUserEntityName';
|
|
45
45
|
dangerouslyAllowSignInWithoutUserInCatalog?: boolean;
|
|
46
46
|
}
|
|
47
|
+
| {
|
|
48
|
+
resolver: 'userIdMatchingUserEntityAnnotation';
|
|
49
|
+
dangerouslyAllowSignInWithoutUserInCatalog?: boolean;
|
|
50
|
+
}
|
|
47
51
|
>;
|
|
48
52
|
};
|
|
49
53
|
sessionDuration?: HumanDuration | string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend-module-github-provider",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0-next.0",
|
|
4
4
|
"description": "The github-provider backend module for the auth plugin.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -37,17 +37,17 @@
|
|
|
37
37
|
"test": "backstage-cli package test"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@backstage/backend-plugin-api": "
|
|
41
|
-
"@backstage/plugin-auth-node": "
|
|
40
|
+
"@backstage/backend-plugin-api": "1.7.0-next.0",
|
|
41
|
+
"@backstage/plugin-auth-node": "0.6.12-next.0",
|
|
42
42
|
"passport-github2": "^0.1.12",
|
|
43
|
-
"zod": "^3.
|
|
43
|
+
"zod": "^3.25.76"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@backstage/backend-defaults": "
|
|
47
|
-
"@backstage/backend-test-utils": "
|
|
48
|
-
"@backstage/cli": "
|
|
49
|
-
"@backstage/plugin-auth-backend": "
|
|
50
|
-
"@backstage/types": "
|
|
46
|
+
"@backstage/backend-defaults": "0.15.1-next.0",
|
|
47
|
+
"@backstage/backend-test-utils": "1.10.4-next.0",
|
|
48
|
+
"@backstage/cli": "0.35.3-next.0",
|
|
49
|
+
"@backstage/plugin-auth-backend": "0.26.1-next.0",
|
|
50
|
+
"@backstage/types": "1.2.2",
|
|
51
51
|
"@types/passport-github2": "^1.2.4",
|
|
52
52
|
"supertest": "^7.0.0"
|
|
53
53
|
},
|