@backstage/plugin-catalog-backend-module-github-org 0.3.17-next.1 → 0.3.17
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 +26 -0
- package/dist/index.d.ts +2 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-github-org
|
|
2
2
|
|
|
3
|
+
## 0.3.17
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ed5a7a3: Introduce new configuration option to exclude suspended users from GitHub Enterprise instances.
|
|
8
|
+
|
|
9
|
+
When it’s set to true, suspended users won’t be returned when querying the organization users for GitHub Enterprise instances.
|
|
10
|
+
Note that this option should be used only against GitHub Enterprise instances, the property does not exist in the github.com GraphQL schema, setting it will cause a schema validation error and the syncing of users will fail.
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/plugin-events-node@0.4.18
|
|
14
|
+
- @backstage/plugin-catalog-backend-module-github@0.12.0
|
|
15
|
+
- @backstage/backend-plugin-api@1.6.0
|
|
16
|
+
- @backstage/plugin-catalog-node@1.20.1
|
|
17
|
+
|
|
18
|
+
## 0.3.17-next.2
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/plugin-events-node@0.4.18-next.1
|
|
24
|
+
- @backstage/backend-plugin-api@1.6.0-next.1
|
|
25
|
+
- @backstage/config@1.3.6
|
|
26
|
+
- @backstage/plugin-catalog-backend-module-github@0.11.3-next.2
|
|
27
|
+
- @backstage/plugin-catalog-node@1.20.1-next.1
|
|
28
|
+
|
|
3
29
|
## 0.3.17-next.1
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -32,4 +32,5 @@ declare const githubOrgEntityProviderTransformsExtensionPoint: _backstage_backen
|
|
|
32
32
|
*/
|
|
33
33
|
declare const catalogModuleGithubOrgEntityProvider: _backstage_backend_plugin_api.BackendFeature;
|
|
34
34
|
|
|
35
|
-
export {
|
|
35
|
+
export { catalogModuleGithubOrgEntityProvider as default, githubOrgEntityProviderTransformsExtensionPoint };
|
|
36
|
+
export type { GithubOrgEntityProviderTransformsExtensionPoint };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-github-org",
|
|
3
|
-
"version": "0.3.17
|
|
3
|
+
"version": "0.3.17",
|
|
4
4
|
"description": "The github-org backend module for the catalog plugin.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"test": "backstage-cli package test"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@backstage/backend-plugin-api": "1.
|
|
40
|
-
"@backstage/config": "1.3.6",
|
|
41
|
-
"@backstage/plugin-catalog-backend-module-github": "0.
|
|
42
|
-
"@backstage/plugin-catalog-node": "1.20.1
|
|
43
|
-
"@backstage/plugin-events-node": "0.4.18
|
|
39
|
+
"@backstage/backend-plugin-api": "^1.6.0",
|
|
40
|
+
"@backstage/config": "^1.3.6",
|
|
41
|
+
"@backstage/plugin-catalog-backend-module-github": "^0.12.0",
|
|
42
|
+
"@backstage/plugin-catalog-node": "^1.20.1",
|
|
43
|
+
"@backstage/plugin-events-node": "^0.4.18"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@backstage/backend-test-utils": "1.10.
|
|
47
|
-
"@backstage/cli": "0.
|
|
46
|
+
"@backstage/backend-test-utils": "^1.10.2",
|
|
47
|
+
"@backstage/cli": "^0.35.0"
|
|
48
48
|
},
|
|
49
49
|
"typesVersions": {
|
|
50
50
|
"*": {
|