@backstage/plugin-events-backend-module-github 0.2.11-next.2 → 0.2.12-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 +20 -0
- package/README.md +2 -2
- package/alpha/package.json +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/plugin-events-backend-module-github
|
|
2
2
|
|
|
3
|
+
## 0.2.12-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2f88f88: Updated backend installation instructions.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/plugin-events-node@0.4.1-next.0
|
|
10
|
+
- @backstage/backend-plugin-api@1.0.1-next.0
|
|
11
|
+
- @backstage/config@1.2.0
|
|
12
|
+
|
|
13
|
+
## 0.2.11
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- d425fc4: Modules, plugins, and services are now `BackendFeature`, not a function that returns a feature.
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/backend-plugin-api@1.0.0
|
|
20
|
+
- @backstage/plugin-events-node@0.4.0
|
|
21
|
+
- @backstage/config@1.2.0
|
|
22
|
+
|
|
3
23
|
## 0.2.11-next.2
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@ yarn --cwd packages/backend add @backstage/plugin-events-backend-module-github
|
|
|
33
33
|
// packages/backend/src/index.ts
|
|
34
34
|
import { eventsModuleGithubEventRouter } from '@backstage/plugin-events-backend-module-github/alpha';
|
|
35
35
|
// ...
|
|
36
|
-
backend.add(eventsModuleGithubEventRouter
|
|
36
|
+
backend.add(eventsModuleGithubEventRouter);
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
#### Legacy Backend System
|
|
@@ -50,7 +50,7 @@ await eventRouter.subscribe();
|
|
|
50
50
|
// packages/backend/src/index.ts
|
|
51
51
|
import { eventsModuleGithubWebhook } from '@backstage/plugin-events-backend-module-github/alpha';
|
|
52
52
|
// ...
|
|
53
|
-
backend.add(eventsModuleGithubWebhook
|
|
53
|
+
backend.add(eventsModuleGithubWebhook);
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
#### Legacy Backend System
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-events-backend-module-github",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.12-next.0",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "backend-plugin-module",
|
|
6
6
|
"pluginId": "events",
|
|
@@ -46,15 +46,15 @@
|
|
|
46
46
|
"test": "backstage-cli package test"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@backstage/backend-plugin-api": "^1.0.
|
|
49
|
+
"@backstage/backend-plugin-api": "^1.0.1-next.0",
|
|
50
50
|
"@backstage/config": "^1.2.0",
|
|
51
|
-
"@backstage/plugin-events-node": "^0.4.
|
|
51
|
+
"@backstage/plugin-events-node": "^0.4.1-next.0",
|
|
52
52
|
"@octokit/webhooks-methods": "^3.0.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@backstage/backend-test-utils": "^1.0.
|
|
56
|
-
"@backstage/cli": "^0.
|
|
57
|
-
"@backstage/plugin-events-backend-test-utils": "^0.1.
|
|
55
|
+
"@backstage/backend-test-utils": "^1.0.1-next.0",
|
|
56
|
+
"@backstage/cli": "^0.28.0-next.0",
|
|
57
|
+
"@backstage/plugin-events-backend-test-utils": "^0.1.36-next.0"
|
|
58
58
|
},
|
|
59
59
|
"configSchema": "config.d.ts"
|
|
60
60
|
}
|