@backstage/plugin-catalog-backend-module-github 0.9.0-next.3 → 0.9.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 +20 -0
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-github
|
|
2
2
|
|
|
3
|
+
## 0.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- ff335e5: **BREAKING** The `GithubLocationAnalyzer` now requires the `AuthService` and the `CatalogService` when being constructed and the `TokenManger` has been removed.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- ee9f59f: Added filter to include archived repositories
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/integration@1.17.0
|
|
14
|
+
- @backstage/plugin-catalog-backend@2.0.0
|
|
15
|
+
- @backstage/catalog-model@1.7.4
|
|
16
|
+
- @backstage/plugin-catalog-node@1.17.0
|
|
17
|
+
- @backstage/backend-plugin-api@1.3.1
|
|
18
|
+
- @backstage/catalog-client@1.10.0
|
|
19
|
+
- @backstage/config@1.3.2
|
|
20
|
+
- @backstage/plugin-catalog-common@1.1.4
|
|
21
|
+
- @backstage/plugin-events-node@0.4.11
|
|
22
|
+
|
|
3
23
|
## 0.9.0-next.3
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-github",
|
|
3
|
-
"version": "0.9.0
|
|
3
|
+
"version": "0.9.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": "1.3.1
|
|
69
|
-
"@backstage/catalog-client": "1.10.0
|
|
70
|
-
"@backstage/catalog-model": "1.7.
|
|
71
|
-
"@backstage/config": "1.3.2",
|
|
72
|
-
"@backstage/integration": "1.17.0
|
|
73
|
-
"@backstage/plugin-catalog-backend": "2.0.0
|
|
74
|
-
"@backstage/plugin-catalog-common": "1.1.4
|
|
75
|
-
"@backstage/plugin-catalog-node": "1.17.0
|
|
76
|
-
"@backstage/plugin-events-node": "0.4.11
|
|
68
|
+
"@backstage/backend-plugin-api": "^1.3.1",
|
|
69
|
+
"@backstage/catalog-client": "^1.10.0",
|
|
70
|
+
"@backstage/catalog-model": "^1.7.4",
|
|
71
|
+
"@backstage/config": "^1.3.2",
|
|
72
|
+
"@backstage/integration": "^1.17.0",
|
|
73
|
+
"@backstage/plugin-catalog-backend": "^2.0.0",
|
|
74
|
+
"@backstage/plugin-catalog-common": "^1.1.4",
|
|
75
|
+
"@backstage/plugin-catalog-node": "^1.17.0",
|
|
76
|
+
"@backstage/plugin-events-node": "^0.4.11",
|
|
77
77
|
"@octokit/core": "^5.2.0",
|
|
78
78
|
"@octokit/graphql": "^7.0.2",
|
|
79
79
|
"@octokit/plugin-throttling": "^8.1.3",
|
|
@@ -84,8 +84,8 @@
|
|
|
84
84
|
"uuid": "^11.0.0"
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
|
-
"@backstage/backend-test-utils": "1.5.0
|
|
88
|
-
"@backstage/cli": "0.32.1
|
|
87
|
+
"@backstage/backend-test-utils": "^1.5.0",
|
|
88
|
+
"@backstage/cli": "^0.32.1",
|
|
89
89
|
"@types/lodash": "^4.14.151",
|
|
90
90
|
"luxon": "^3.0.0",
|
|
91
91
|
"msw": "^2.0.0"
|