@backstage/plugin-events-backend-module-github 0.2.5-next.2 → 0.2.6

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 CHANGED
@@ -1,5 +1,25 @@
1
1
  # @backstage/plugin-events-backend-module-github
2
2
 
3
+ ## 0.2.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/plugin-events-node@0.3.6
9
+ - @backstage/backend-plugin-api@0.6.20
10
+ - @backstage/config@1.2.0
11
+
12
+ ## 0.2.5
13
+
14
+ ### Patch Changes
15
+
16
+ - 78a0b08: Internal refactor to handle `BackendFeature` contract change.
17
+ - d44a20a: Added additional plugin metadata to `package.json`.
18
+ - Updated dependencies
19
+ - @backstage/backend-plugin-api@0.6.19
20
+ - @backstage/plugin-events-node@0.3.5
21
+ - @backstage/config@1.2.0
22
+
3
23
  ## 0.2.5-next.2
4
24
 
5
25
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
- "name": "@backstage/plugin-events-backend-module-github",
3
- "version": "0.2.5-next.2",
2
+ "name": "@backstage/plugin-events-backend-module-github__alpha",
3
+ "version": "0.2.6",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/dist/alpha.d.ts CHANGED
@@ -7,7 +7,7 @@ import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
7
7
  *
8
8
  * @alpha
9
9
  */
10
- declare const eventsModuleGithubEventRouter: () => _backstage_backend_plugin_api.BackendFeature;
10
+ declare const eventsModuleGithubEventRouter: _backstage_backend_plugin_api.BackendFeatureCompat;
11
11
 
12
12
  /**
13
13
  * Module for the events-backend plugin,
@@ -16,6 +16,6 @@ declare const eventsModuleGithubEventRouter: () => _backstage_backend_plugin_api
16
16
  *
17
17
  * @alpha
18
18
  */
19
- declare const eventsModuleGithubWebhook: () => _backstage_backend_plugin_api.BackendFeature;
19
+ declare const eventsModuleGithubWebhook: _backstage_backend_plugin_api.BackendFeatureCompat;
20
20
 
21
21
  export { eventsModuleGithubEventRouter, eventsModuleGithubWebhook };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-events-backend-module-github",
3
- "version": "0.2.5-next.2",
3
+ "version": "0.2.6",
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": "^0.6.19-next.3",
49
+ "@backstage/backend-plugin-api": "^0.6.20",
50
50
  "@backstage/config": "^1.2.0",
51
- "@backstage/plugin-events-node": "^0.3.5-next.2",
51
+ "@backstage/plugin-events-node": "^0.3.6",
52
52
  "@octokit/webhooks-methods": "^3.0.0"
53
53
  },
54
54
  "devDependencies": {
55
- "@backstage/backend-test-utils": "^0.4.0-next.3",
56
- "@backstage/cli": "^0.26.7-next.3",
57
- "@backstage/plugin-events-backend-test-utils": "^0.1.29-next.2"
55
+ "@backstage/backend-test-utils": "^0.4.1",
56
+ "@backstage/cli": "^0.26.8",
57
+ "@backstage/plugin-events-backend-test-utils": "^0.1.30"
58
58
  },
59
59
  "configSchema": "config.d.ts"
60
60
  }