@backstage/plugin-notifications-node 0.2.0-next.2 → 0.2.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 +31 -0
- package/package.json +16 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @backstage/plugin-notifications-node
|
|
2
2
|
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 07a789b: add notifications filtering by processors
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- d44a20a: Added additional plugin metadata to `package.json`.
|
|
12
|
+
- 1354d81: Use `node-fetch` instead of native fetch, as per https://backstage.io/docs/architecture-decisions/adrs-adr013
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @backstage/backend-common@0.23.0
|
|
15
|
+
- @backstage/backend-plugin-api@0.6.19
|
|
16
|
+
- @backstage/plugin-notifications-common@0.0.4
|
|
17
|
+
- @backstage/plugin-signals-node@0.1.5
|
|
18
|
+
- @backstage/catalog-client@1.6.5
|
|
19
|
+
- @backstage/catalog-model@1.5.0
|
|
20
|
+
|
|
21
|
+
## 0.2.0-next.3
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- d44a20a: Added additional plugin metadata to `package.json`.
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
- @backstage/backend-plugin-api@0.6.19-next.3
|
|
28
|
+
- @backstage/plugin-notifications-common@0.0.4-next.0
|
|
29
|
+
- @backstage/plugin-signals-node@0.1.5-next.3
|
|
30
|
+
- @backstage/backend-common@0.23.0-next.3
|
|
31
|
+
- @backstage/catalog-client@1.6.5
|
|
32
|
+
- @backstage/catalog-model@1.5.0
|
|
33
|
+
|
|
3
34
|
## 0.2.0-next.2
|
|
4
35
|
|
|
5
36
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-notifications-node",
|
|
3
|
-
"version": "0.2.0
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Node.js library for the notifications plugin",
|
|
5
5
|
"backstage": {
|
|
6
|
-
"role": "node-library"
|
|
6
|
+
"role": "node-library",
|
|
7
|
+
"pluginId": "notifications",
|
|
8
|
+
"pluginPackages": [
|
|
9
|
+
"@backstage/plugin-notifications",
|
|
10
|
+
"@backstage/plugin-notifications-backend",
|
|
11
|
+
"@backstage/plugin-notifications-common",
|
|
12
|
+
"@backstage/plugin-notifications-node"
|
|
13
|
+
]
|
|
7
14
|
},
|
|
8
15
|
"publishConfig": {
|
|
9
16
|
"access": "public",
|
|
@@ -30,20 +37,20 @@
|
|
|
30
37
|
"test": "backstage-cli package test"
|
|
31
38
|
},
|
|
32
39
|
"dependencies": {
|
|
33
|
-
"@backstage/backend-common": "^0.23.0
|
|
34
|
-
"@backstage/backend-plugin-api": "^0.6.19
|
|
40
|
+
"@backstage/backend-common": "^0.23.0",
|
|
41
|
+
"@backstage/backend-plugin-api": "^0.6.19",
|
|
35
42
|
"@backstage/catalog-client": "^1.6.5",
|
|
36
43
|
"@backstage/catalog-model": "^1.5.0",
|
|
37
|
-
"@backstage/plugin-notifications-common": "^0.0.
|
|
38
|
-
"@backstage/plugin-signals-node": "^0.1.5
|
|
44
|
+
"@backstage/plugin-notifications-common": "^0.0.4",
|
|
45
|
+
"@backstage/plugin-signals-node": "^0.1.5",
|
|
39
46
|
"knex": "^3.0.0",
|
|
40
47
|
"node-fetch": "^2.6.7",
|
|
41
48
|
"uuid": "^9.0.0"
|
|
42
49
|
},
|
|
43
50
|
"devDependencies": {
|
|
44
|
-
"@backstage/backend-test-utils": "^0.4.0
|
|
45
|
-
"@backstage/cli": "^0.26.7
|
|
46
|
-
"@backstage/test-utils": "^1.5.6
|
|
51
|
+
"@backstage/backend-test-utils": "^0.4.0",
|
|
52
|
+
"@backstage/cli": "^0.26.7",
|
|
53
|
+
"@backstage/test-utils": "^1.5.6",
|
|
47
54
|
"msw": "^1.0.0"
|
|
48
55
|
}
|
|
49
56
|
}
|