@backstage/plugin-scaffolder-backend-module-notifications 0.0.2-next.3 → 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 +13 -0
- package/dist/index.d.ts +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
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
|
+
|
|
3
16
|
## 0.0.2-next.3
|
|
4
17
|
|
|
5
18
|
### 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:
|
|
27
|
+
declare const scaffolderModuleNotifications: _backstage_backend_plugin_api.BackendFeatureCompat;
|
|
28
28
|
|
|
29
29
|
export { createSendNotificationAction, scaffolderModuleNotifications as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-notifications",
|
|
3
|
-
"version": "0.0.2
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "The notifications backend module for the scaffolder plugin.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -33,15 +33,15 @@
|
|
|
33
33
|
"test": "backstage-cli package test"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
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
|
|
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",
|
|
41
41
|
"octokit": "^3.0.0"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@backstage/cli": "^0.26.7
|
|
45
|
-
"@backstage/plugin-scaffolder-node-test-utils": "^0.1.5
|
|
44
|
+
"@backstage/cli": "^0.26.7",
|
|
45
|
+
"@backstage/plugin-scaffolder-node-test-utils": "^0.1.5"
|
|
46
46
|
}
|
|
47
47
|
}
|