@backstage/plugin-notifications-backend-module-slack 0.1.0-next.0 → 0.1.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 +18 -0
- package/package.json +21 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @backstage/plugin-notifications-backend-module-slack
|
|
2
2
|
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 552170d: Added a new Slack NotificationProcessor for use with the notifications plugin
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/backend-plugin-api@1.3.0
|
|
13
|
+
- @backstage/catalog-client@1.9.1
|
|
14
|
+
- @backstage/catalog-model@1.7.3
|
|
15
|
+
- @backstage/config@1.3.2
|
|
16
|
+
- @backstage/errors@1.2.7
|
|
17
|
+
- @backstage/types@1.2.1
|
|
18
|
+
- @backstage/plugin-notifications-common@0.0.8
|
|
19
|
+
- @backstage/plugin-notifications-node@0.2.14
|
|
20
|
+
|
|
3
21
|
## 0.1.0-next.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-notifications-backend-module-slack",
|
|
3
|
-
"version": "0.1.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "The slack backend module for the notifications plugin.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
"test": "backstage-cli package test"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@backstage/backend-plugin-api": "1.
|
|
41
|
-
"@backstage/catalog-client": "1.9.1",
|
|
42
|
-
"@backstage/catalog-model": "1.7.3",
|
|
43
|
-
"@backstage/config": "1.3.2",
|
|
44
|
-
"@backstage/errors": "1.2.7",
|
|
45
|
-
"@backstage/plugin-notifications-common": "0.0.8",
|
|
46
|
-
"@backstage/plugin-notifications-node": "0.2.
|
|
47
|
-
"@backstage/types": "1.2.1",
|
|
40
|
+
"@backstage/backend-plugin-api": "^1.3.0",
|
|
41
|
+
"@backstage/catalog-client": "^1.9.1",
|
|
42
|
+
"@backstage/catalog-model": "^1.7.3",
|
|
43
|
+
"@backstage/config": "^1.3.2",
|
|
44
|
+
"@backstage/errors": "^1.2.7",
|
|
45
|
+
"@backstage/plugin-notifications-common": "^0.0.8",
|
|
46
|
+
"@backstage/plugin-notifications-node": "^0.2.14",
|
|
47
|
+
"@backstage/types": "^1.2.1",
|
|
48
48
|
"@opentelemetry/api": "^1.9.0",
|
|
49
49
|
"@slack/bolt": "^3.21.4",
|
|
50
50
|
"@slack/types": "^2.14.0",
|
|
@@ -53,12 +53,19 @@
|
|
|
53
53
|
"p-throttle": "^4.1.1"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@backstage/backend-test-utils": "1.
|
|
57
|
-
"@backstage/cli": "0.32.0
|
|
58
|
-
"@backstage/plugin-catalog-node": "1.16.
|
|
59
|
-
"@backstage/test-utils": "1.7.
|
|
56
|
+
"@backstage/backend-test-utils": "^1.4.0",
|
|
57
|
+
"@backstage/cli": "^0.32.0",
|
|
58
|
+
"@backstage/plugin-catalog-node": "^1.16.3",
|
|
59
|
+
"@backstage/test-utils": "^1.7.7",
|
|
60
60
|
"@faker-js/faker": "^8.4.1",
|
|
61
61
|
"msw": "^2.0.0"
|
|
62
62
|
},
|
|
63
|
-
"configSchema": "config.d.ts"
|
|
63
|
+
"configSchema": "config.d.ts",
|
|
64
|
+
"typesVersions": {
|
|
65
|
+
"*": {
|
|
66
|
+
"package.json": [
|
|
67
|
+
"package.json"
|
|
68
|
+
]
|
|
69
|
+
}
|
|
70
|
+
}
|
|
64
71
|
}
|