@backstage/plugin-notifications-backend 0.6.0-next.2 → 0.6.1-next.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 +43 -0
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# @backstage/plugin-notifications-backend
|
|
2
2
|
|
|
3
|
+
## 0.6.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-plugin-api@1.5.1-next.0
|
|
9
|
+
- @backstage/plugin-signals-node@0.1.27-next.0
|
|
10
|
+
- @backstage/plugin-catalog-node@1.20.1-next.0
|
|
11
|
+
- @backstage/plugin-notifications-node@0.2.22-next.0
|
|
12
|
+
- @backstage/config@1.3.6
|
|
13
|
+
- @backstage/catalog-model@1.7.6
|
|
14
|
+
- @backstage/errors@1.2.7
|
|
15
|
+
- @backstage/types@1.2.2
|
|
16
|
+
- @backstage/plugin-notifications-common@0.2.0
|
|
17
|
+
|
|
18
|
+
## 0.6.0
|
|
19
|
+
|
|
20
|
+
### Minor Changes
|
|
21
|
+
|
|
22
|
+
- 87e597c: Adds support for default configuration for an entire notification channel.
|
|
23
|
+
This setting will also be inherited down to origins and topics while still respecting the users individual choices.
|
|
24
|
+
|
|
25
|
+
This will be handy if you want to use a "opt-in" strategy.
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- 15fb764: Show default settings for notifications even before receiving first notification.
|
|
30
|
+
|
|
31
|
+
Previously, it was not possible for the users to see or modify their notification settings until they had received at
|
|
32
|
+
least one notification from specific origin or topic.
|
|
33
|
+
This update ensures that default settings are displayed from the outset,
|
|
34
|
+
allowing users to customize their preferences immediately.
|
|
35
|
+
|
|
36
|
+
- 05f60e1: Refactored constructor parameter properties to explicit property declarations for compatibility with TypeScript's `erasableSyntaxOnly` setting. This internal refactoring maintains all existing functionality while ensuring TypeScript compilation compatibility.
|
|
37
|
+
- Updated dependencies
|
|
38
|
+
- @backstage/plugin-catalog-node@1.20.0
|
|
39
|
+
- @backstage/plugin-notifications-common@0.2.0
|
|
40
|
+
- @backstage/backend-plugin-api@1.5.0
|
|
41
|
+
- @backstage/plugin-notifications-node@0.2.21
|
|
42
|
+
- @backstage/config@1.3.6
|
|
43
|
+
- @backstage/catalog-model@1.7.6
|
|
44
|
+
- @backstage/plugin-signals-node@0.1.26
|
|
45
|
+
|
|
3
46
|
## 0.6.0-next.2
|
|
4
47
|
|
|
5
48
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-notifications-backend",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1-next.0",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "backend-plugin",
|
|
6
6
|
"pluginId": "notifications",
|
|
@@ -42,14 +42,14 @@
|
|
|
42
42
|
"test": "backstage-cli package test"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@backstage/backend-plugin-api": "1.5.
|
|
46
|
-
"@backstage/catalog-model": "1.7.6
|
|
47
|
-
"@backstage/config": "1.3.6
|
|
45
|
+
"@backstage/backend-plugin-api": "1.5.1-next.0",
|
|
46
|
+
"@backstage/catalog-model": "1.7.6",
|
|
47
|
+
"@backstage/config": "1.3.6",
|
|
48
48
|
"@backstage/errors": "1.2.7",
|
|
49
|
-
"@backstage/plugin-catalog-node": "1.20.
|
|
50
|
-
"@backstage/plugin-notifications-common": "0.2.0
|
|
51
|
-
"@backstage/plugin-notifications-node": "0.2.
|
|
52
|
-
"@backstage/plugin-signals-node": "0.1.
|
|
49
|
+
"@backstage/plugin-catalog-node": "1.20.1-next.0",
|
|
50
|
+
"@backstage/plugin-notifications-common": "0.2.0",
|
|
51
|
+
"@backstage/plugin-notifications-node": "0.2.22-next.0",
|
|
52
|
+
"@backstage/plugin-signals-node": "0.1.27-next.0",
|
|
53
53
|
"@backstage/types": "1.2.2",
|
|
54
54
|
"express": "^4.17.1",
|
|
55
55
|
"express-promise-router": "^4.1.0",
|
|
@@ -58,13 +58,13 @@
|
|
|
58
58
|
"uuid": "^11.0.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@backstage/backend-defaults": "0.
|
|
62
|
-
"@backstage/backend-test-utils": "1.10.
|
|
63
|
-
"@backstage/cli": "0.34.
|
|
64
|
-
"@backstage/plugin-auth-backend": "0.25.
|
|
65
|
-
"@backstage/plugin-auth-backend-module-guest-provider": "0.2.
|
|
66
|
-
"@backstage/plugin-events-backend": "0.5.
|
|
67
|
-
"@backstage/plugin-signals-backend": "0.3.
|
|
61
|
+
"@backstage/backend-defaults": "0.14.0-next.0",
|
|
62
|
+
"@backstage/backend-test-utils": "1.10.1-next.0",
|
|
63
|
+
"@backstage/cli": "0.34.6-next.0",
|
|
64
|
+
"@backstage/plugin-auth-backend": "0.25.7-next.0",
|
|
65
|
+
"@backstage/plugin-auth-backend-module-guest-provider": "0.2.15-next.0",
|
|
66
|
+
"@backstage/plugin-events-backend": "0.5.9-next.0",
|
|
67
|
+
"@backstage/plugin-signals-backend": "0.3.11-next.0",
|
|
68
68
|
"@types/express": "^4.17.6",
|
|
69
69
|
"@types/supertest": "^2.0.8",
|
|
70
70
|
"supertest": "^7.0.0"
|