@backstage/plugin-notifications-backend 0.3.0-next.2 → 0.3.0-next.3
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 +23 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @backstage/plugin-notifications-backend
|
|
2
2
|
|
|
3
|
+
## 0.3.0-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- d44a20a: Added additional plugin metadata to `package.json`.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-plugin-api@0.6.19-next.3
|
|
10
|
+
- @backstage/plugin-auth-node@0.4.14-next.3
|
|
11
|
+
- @backstage/plugin-notifications-common@0.0.4-next.0
|
|
12
|
+
- @backstage/plugin-notifications-node@0.2.0-next.3
|
|
13
|
+
- @backstage/plugin-signals-node@0.1.5-next.3
|
|
14
|
+
- @backstage/plugin-events-node@0.3.5-next.2
|
|
15
|
+
- @backstage/backend-common@0.23.0-next.3
|
|
16
|
+
- @backstage/catalog-client@1.6.5
|
|
17
|
+
- @backstage/catalog-model@1.5.0
|
|
18
|
+
- @backstage/config@1.2.0
|
|
19
|
+
- @backstage/errors@1.2.4
|
|
20
|
+
|
|
3
21
|
## 0.3.0-next.2
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-notifications-backend",
|
|
3
|
-
"version": "0.3.0-next.
|
|
3
|
+
"version": "0.3.0-next.3",
|
|
4
4
|
"backstage": {
|
|
5
|
-
"role": "backend-plugin"
|
|
5
|
+
"role": "backend-plugin",
|
|
6
|
+
"pluginId": "notifications",
|
|
7
|
+
"pluginPackages": [
|
|
8
|
+
"@backstage/plugin-notifications",
|
|
9
|
+
"@backstage/plugin-notifications-backend",
|
|
10
|
+
"@backstage/plugin-notifications-common",
|
|
11
|
+
"@backstage/plugin-notifications-node"
|
|
12
|
+
]
|
|
6
13
|
},
|
|
7
14
|
"publishConfig": {
|
|
8
15
|
"access": "public",
|
|
@@ -31,17 +38,17 @@
|
|
|
31
38
|
"test": "backstage-cli package test"
|
|
32
39
|
},
|
|
33
40
|
"dependencies": {
|
|
34
|
-
"@backstage/backend-common": "^0.23.0-next.
|
|
35
|
-
"@backstage/backend-plugin-api": "^0.6.19-next.
|
|
41
|
+
"@backstage/backend-common": "^0.23.0-next.3",
|
|
42
|
+
"@backstage/backend-plugin-api": "^0.6.19-next.3",
|
|
36
43
|
"@backstage/catalog-client": "^1.6.5",
|
|
37
44
|
"@backstage/catalog-model": "^1.5.0",
|
|
38
45
|
"@backstage/config": "^1.2.0",
|
|
39
46
|
"@backstage/errors": "^1.2.4",
|
|
40
|
-
"@backstage/plugin-auth-node": "^0.4.14-next.
|
|
41
|
-
"@backstage/plugin-events-node": "^0.3.5-next.
|
|
42
|
-
"@backstage/plugin-notifications-common": "^0.0.
|
|
43
|
-
"@backstage/plugin-notifications-node": "^0.2.0-next.
|
|
44
|
-
"@backstage/plugin-signals-node": "^0.1.5-next.
|
|
47
|
+
"@backstage/plugin-auth-node": "^0.4.14-next.3",
|
|
48
|
+
"@backstage/plugin-events-node": "^0.3.5-next.2",
|
|
49
|
+
"@backstage/plugin-notifications-common": "^0.0.4-next.0",
|
|
50
|
+
"@backstage/plugin-notifications-node": "^0.2.0-next.3",
|
|
51
|
+
"@backstage/plugin-signals-node": "^0.1.5-next.3",
|
|
45
52
|
"express": "^4.17.1",
|
|
46
53
|
"express-promise-router": "^4.1.0",
|
|
47
54
|
"knex": "^3.0.0",
|
|
@@ -51,13 +58,13 @@
|
|
|
51
58
|
"yn": "^4.0.0"
|
|
52
59
|
},
|
|
53
60
|
"devDependencies": {
|
|
54
|
-
"@backstage/backend-defaults": "^0.3.0-next.
|
|
55
|
-
"@backstage/backend-test-utils": "^0.4.0-next.
|
|
56
|
-
"@backstage/cli": "^0.26.7-next.
|
|
57
|
-
"@backstage/plugin-auth-backend": "^0.22.6-next.
|
|
58
|
-
"@backstage/plugin-auth-backend-module-guest-provider": "^0.1.5-next.
|
|
59
|
-
"@backstage/plugin-events-backend": "^0.3.6-next.
|
|
60
|
-
"@backstage/plugin-signals-backend": "^0.1.5-next.
|
|
61
|
+
"@backstage/backend-defaults": "^0.3.0-next.3",
|
|
62
|
+
"@backstage/backend-test-utils": "^0.4.0-next.3",
|
|
63
|
+
"@backstage/cli": "^0.26.7-next.3",
|
|
64
|
+
"@backstage/plugin-auth-backend": "^0.22.6-next.3",
|
|
65
|
+
"@backstage/plugin-auth-backend-module-guest-provider": "^0.1.5-next.3",
|
|
66
|
+
"@backstage/plugin-events-backend": "^0.3.6-next.3",
|
|
67
|
+
"@backstage/plugin-signals-backend": "^0.1.5-next.3",
|
|
61
68
|
"@types/express": "^4.17.6",
|
|
62
69
|
"@types/supertest": "^2.0.8",
|
|
63
70
|
"msw": "^1.0.0",
|