@backstage/plugin-catalog-backend-module-github 0.6.5-next.1 → 0.6.5
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 +44 -0
- package/alpha/package.json +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,49 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-github
|
|
2
2
|
|
|
3
|
+
## 0.6.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9112efc: Adds support for `repository` events.
|
|
8
|
+
|
|
9
|
+
The provider adds a subscription to the topic `github.repository`.
|
|
10
|
+
|
|
11
|
+
Hereby, it supports events of type `repository` with actions
|
|
12
|
+
|
|
13
|
+
- `archived`
|
|
14
|
+
- `deleted`
|
|
15
|
+
- `edited`
|
|
16
|
+
- `renamed`
|
|
17
|
+
- `transferred`
|
|
18
|
+
- `unarchived`
|
|
19
|
+
|
|
20
|
+
Actions skipped as they don't require entity changes:
|
|
21
|
+
|
|
22
|
+
- `created`
|
|
23
|
+
- `privatized`
|
|
24
|
+
- `publicized`
|
|
25
|
+
|
|
26
|
+
If the config option `validateLocationsExist` is enabled, an API request
|
|
27
|
+
is necessary and will be executed.
|
|
28
|
+
This affects the actions `renamed`, `transferred`, and `unarchive`
|
|
29
|
+
of event type `repository`.
|
|
30
|
+
|
|
31
|
+
Catalog entities related to the `GithubEntityProvider` instance will be adjusted
|
|
32
|
+
according to action and its meaning for them.
|
|
33
|
+
|
|
34
|
+
- Updated dependencies
|
|
35
|
+
- @backstage/backend-plugin-api@0.7.0
|
|
36
|
+
- @backstage/backend-common@0.23.3
|
|
37
|
+
- @backstage/backend-tasks@0.5.27
|
|
38
|
+
- @backstage/integration@1.13.0
|
|
39
|
+
- @backstage/plugin-events-node@0.3.8
|
|
40
|
+
- @backstage/plugin-catalog-backend@1.24.0
|
|
41
|
+
- @backstage/plugin-catalog-node@1.12.4
|
|
42
|
+
- @backstage/plugin-catalog-common@1.0.25
|
|
43
|
+
- @backstage/catalog-client@1.6.5
|
|
44
|
+
- @backstage/catalog-model@1.5.0
|
|
45
|
+
- @backstage/config@1.2.0
|
|
46
|
+
|
|
3
47
|
## 0.6.5-next.1
|
|
4
48
|
|
|
5
49
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-github",
|
|
3
|
-
"version": "0.6.5
|
|
3
|
+
"version": "0.6.5",
|
|
4
4
|
"description": "A Backstage catalog backend module that helps integrate towards GitHub",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -50,17 +50,17 @@
|
|
|
50
50
|
"test": "backstage-cli package test"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@backstage/backend-common": "^0.23.3
|
|
54
|
-
"@backstage/backend-plugin-api": "^0.
|
|
55
|
-
"@backstage/backend-tasks": "^0.5.27
|
|
53
|
+
"@backstage/backend-common": "^0.23.3",
|
|
54
|
+
"@backstage/backend-plugin-api": "^0.7.0",
|
|
55
|
+
"@backstage/backend-tasks": "^0.5.27",
|
|
56
56
|
"@backstage/catalog-client": "^1.6.5",
|
|
57
57
|
"@backstage/catalog-model": "^1.5.0",
|
|
58
58
|
"@backstage/config": "^1.2.0",
|
|
59
|
-
"@backstage/integration": "^1.13.0
|
|
60
|
-
"@backstage/plugin-catalog-backend": "^1.24.0
|
|
61
|
-
"@backstage/plugin-catalog-common": "^1.0.
|
|
62
|
-
"@backstage/plugin-catalog-node": "^1.12.4
|
|
63
|
-
"@backstage/plugin-events-node": "^0.3.8
|
|
59
|
+
"@backstage/integration": "^1.13.0",
|
|
60
|
+
"@backstage/plugin-catalog-backend": "^1.24.0",
|
|
61
|
+
"@backstage/plugin-catalog-common": "^1.0.25",
|
|
62
|
+
"@backstage/plugin-catalog-node": "^1.12.4",
|
|
63
|
+
"@backstage/plugin-events-node": "^0.3.8",
|
|
64
64
|
"@octokit/graphql": "^5.0.0",
|
|
65
65
|
"@octokit/rest": "^19.0.3",
|
|
66
66
|
"git-url-parse": "^14.0.0",
|
|
@@ -70,8 +70,8 @@
|
|
|
70
70
|
"uuid": "^9.0.0"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
|
-
"@backstage/backend-test-utils": "^0.4.4
|
|
74
|
-
"@backstage/cli": "^0.26.11
|
|
73
|
+
"@backstage/backend-test-utils": "^0.4.4",
|
|
74
|
+
"@backstage/cli": "^0.26.11",
|
|
75
75
|
"@types/lodash": "^4.14.151",
|
|
76
76
|
"luxon": "^3.0.0",
|
|
77
77
|
"msw": "^1.0.0"
|