@backstage/plugin-catalog-backend-module-github 0.13.0 → 0.13.1-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 +16 -0
- package/package.json +18 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-github
|
|
2
2
|
|
|
3
|
+
## 0.13.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- edf465f: Removed the `type-fest` dev dependency, replacing its `PartialDeep` import with a local helper type in tests.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-plugin-api@1.8.1-next.0
|
|
10
|
+
- @backstage/plugin-catalog-node@2.1.1-next.0
|
|
11
|
+
- @backstage/plugin-events-node@0.4.21-next.0
|
|
12
|
+
- @backstage/catalog-model@1.7.7
|
|
13
|
+
- @backstage/config@1.3.6
|
|
14
|
+
- @backstage/errors@1.2.7
|
|
15
|
+
- @backstage/integration@2.0.0
|
|
16
|
+
- @backstage/types@1.2.2
|
|
17
|
+
- @backstage/plugin-catalog-common@1.1.8
|
|
18
|
+
|
|
3
19
|
## 0.13.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-github",
|
|
3
|
-
"version": "0.13.0",
|
|
3
|
+
"version": "0.13.1-next.0",
|
|
4
4
|
"description": "A Backstage catalog backend module that helps integrate towards GitHub",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -65,15 +65,15 @@
|
|
|
65
65
|
"test": "backstage-cli package test"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@backstage/backend-plugin-api": "
|
|
69
|
-
"@backstage/catalog-model": "
|
|
70
|
-
"@backstage/config": "
|
|
71
|
-
"@backstage/errors": "
|
|
72
|
-
"@backstage/integration": "
|
|
73
|
-
"@backstage/plugin-catalog-common": "
|
|
74
|
-
"@backstage/plugin-catalog-node": "
|
|
75
|
-
"@backstage/plugin-events-node": "
|
|
76
|
-
"@backstage/types": "
|
|
68
|
+
"@backstage/backend-plugin-api": "1.8.1-next.0",
|
|
69
|
+
"@backstage/catalog-model": "1.7.7",
|
|
70
|
+
"@backstage/config": "1.3.6",
|
|
71
|
+
"@backstage/errors": "1.2.7",
|
|
72
|
+
"@backstage/integration": "2.0.0",
|
|
73
|
+
"@backstage/plugin-catalog-common": "1.1.8",
|
|
74
|
+
"@backstage/plugin-catalog-node": "2.1.1-next.0",
|
|
75
|
+
"@backstage/plugin-events-node": "0.4.21-next.0",
|
|
76
|
+
"@backstage/types": "1.2.2",
|
|
77
77
|
"@octokit/auth-callback": "^5.0.0",
|
|
78
78
|
"@octokit/core": "^5.2.0",
|
|
79
79
|
"@octokit/graphql": "^7.0.2",
|
|
@@ -87,16 +87,15 @@
|
|
|
87
87
|
"uuid": "^11.0.0"
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
|
-
"@backstage/backend-defaults": "
|
|
91
|
-
"@backstage/backend-test-utils": "
|
|
92
|
-
"@backstage/cli": "
|
|
93
|
-
"@backstage/plugin-catalog-backend": "
|
|
94
|
-
"@backstage/plugin-events-backend": "
|
|
95
|
-
"@backstage/plugin-events-backend-module-github": "
|
|
96
|
-
"@backstage/plugin-events-backend-module-google-pubsub": "
|
|
90
|
+
"@backstage/backend-defaults": "0.16.1-next.0",
|
|
91
|
+
"@backstage/backend-test-utils": "1.11.2-next.0",
|
|
92
|
+
"@backstage/cli": "0.36.1-next.0",
|
|
93
|
+
"@backstage/plugin-catalog-backend": "3.5.1-next.0",
|
|
94
|
+
"@backstage/plugin-events-backend": "0.6.1-next.0",
|
|
95
|
+
"@backstage/plugin-events-backend-module-github": "0.4.11-next.0",
|
|
96
|
+
"@backstage/plugin-events-backend-module-google-pubsub": "0.2.2-next.0",
|
|
97
97
|
"@types/lodash": "^4.14.151",
|
|
98
|
-
"msw": "^2.0.0"
|
|
99
|
-
"type-fest": "^4.41.0"
|
|
98
|
+
"msw": "^2.0.0"
|
|
100
99
|
},
|
|
101
100
|
"configSchema": "config.d.ts"
|
|
102
101
|
}
|