@backstage/plugin-scaffolder-backend-module-notifications 0.0.2-next.2 → 0.0.2

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,30 @@
1
1
  # @backstage/plugin-scaffolder-backend-module-notifications
2
2
 
3
+ ## 0.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 78a0b08: Internal refactor to handle `BackendFeature` contract change.
8
+ - d44a20a: Added additional plugin metadata to `package.json`.
9
+ - Updated dependencies
10
+ - @backstage/backend-common@0.23.0
11
+ - @backstage/backend-plugin-api@0.6.19
12
+ - @backstage/plugin-notifications-node@0.2.0
13
+ - @backstage/plugin-notifications-common@0.0.4
14
+ - @backstage/plugin-scaffolder-node@0.4.5
15
+
16
+ ## 0.0.2-next.3
17
+
18
+ ### Patch Changes
19
+
20
+ - d44a20a: Added additional plugin metadata to `package.json`.
21
+ - Updated dependencies
22
+ - @backstage/backend-plugin-api@0.6.19-next.3
23
+ - @backstage/plugin-notifications-common@0.0.4-next.0
24
+ - @backstage/plugin-notifications-node@0.2.0-next.3
25
+ - @backstage/plugin-scaffolder-node@0.4.5-next.3
26
+ - @backstage/backend-common@0.23.0-next.3
27
+
3
28
  ## 0.0.2-next.2
4
29
 
5
30
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -24,6 +24,6 @@ declare function createSendNotificationAction(options: {
24
24
  * @public
25
25
  * The Notifications module for the Scaffolder Backend
26
26
  */
27
- declare const scaffolderModuleNotifications: () => _backstage_backend_plugin_api.BackendFeature;
27
+ declare const scaffolderModuleNotifications: _backstage_backend_plugin_api.BackendFeatureCompat;
28
28
 
29
29
  export { createSendNotificationAction, scaffolderModuleNotifications as default };
package/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-backend-module-notifications",
3
- "version": "0.0.2-next.2",
3
+ "version": "0.0.2",
4
4
  "description": "The notifications backend module for the scaffolder plugin.",
5
5
  "backstage": {
6
- "role": "backend-plugin-module"
6
+ "role": "backend-plugin-module",
7
+ "pluginId": "scaffolder",
8
+ "pluginPackage": "@backstage/plugin-scaffolder-backend"
7
9
  },
8
10
  "publishConfig": {
9
11
  "access": "public",
@@ -31,15 +33,15 @@
31
33
  "test": "backstage-cli package test"
32
34
  },
33
35
  "dependencies": {
34
- "@backstage/backend-common": "^0.23.0-next.2",
35
- "@backstage/backend-plugin-api": "^0.6.19-next.2",
36
- "@backstage/plugin-notifications-common": "^0.0.3",
37
- "@backstage/plugin-notifications-node": "^0.2.0-next.2",
38
- "@backstage/plugin-scaffolder-node": "^0.4.5-next.2",
36
+ "@backstage/backend-common": "^0.23.0",
37
+ "@backstage/backend-plugin-api": "^0.6.19",
38
+ "@backstage/plugin-notifications-common": "^0.0.4",
39
+ "@backstage/plugin-notifications-node": "^0.2.0",
40
+ "@backstage/plugin-scaffolder-node": "^0.4.5",
39
41
  "octokit": "^3.0.0"
40
42
  },
41
43
  "devDependencies": {
42
- "@backstage/cli": "^0.26.7-next.2",
43
- "@backstage/plugin-scaffolder-node-test-utils": "^0.1.5-next.2"
44
+ "@backstage/cli": "^0.26.7",
45
+ "@backstage/plugin-scaffolder-node-test-utils": "^0.1.5"
44
46
  }
45
47
  }