@backstage/plugin-notifications-backend-module-email 0.3.18-next.1 → 0.3.19-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 +28 -0
- package/config.d.ts +6 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @backstage/plugin-notifications-backend-module-email
|
|
2
2
|
|
|
3
|
+
## 0.3.19-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-catalog-node@2.1.0-next.0
|
|
9
|
+
- @backstage/backend-plugin-api@1.7.1-next.0
|
|
10
|
+
- @backstage/catalog-client@1.13.1-next.0
|
|
11
|
+
- @backstage/catalog-model@1.7.6
|
|
12
|
+
- @backstage/config@1.3.6
|
|
13
|
+
- @backstage/integration-aws-node@0.1.20
|
|
14
|
+
- @backstage/types@1.2.2
|
|
15
|
+
- @backstage/plugin-notifications-common@0.2.1
|
|
16
|
+
- @backstage/plugin-notifications-node@0.2.24-next.0
|
|
17
|
+
|
|
18
|
+
## 0.3.18
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- e9eb400: Allow configuring included topics for email notifications.
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @backstage/plugin-catalog-node@2.0.0
|
|
25
|
+
- @backstage/integration-aws-node@0.1.20
|
|
26
|
+
- @backstage/backend-plugin-api@1.7.0
|
|
27
|
+
- @backstage/catalog-client@1.13.0
|
|
28
|
+
- @backstage/plugin-notifications-common@0.2.1
|
|
29
|
+
- @backstage/plugin-notifications-node@0.2.23
|
|
30
|
+
|
|
3
31
|
## 0.3.18-next.1
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -161,9 +161,14 @@ export interface Config {
|
|
|
161
161
|
*/
|
|
162
162
|
maxSeverity?: NotificationSeverity;
|
|
163
163
|
/**
|
|
164
|
-
* A notification
|
|
164
|
+
* A notification with topic is in this array will not be emailed
|
|
165
165
|
*/
|
|
166
166
|
excludedTopics?: string[];
|
|
167
|
+
/**
|
|
168
|
+
* A notification with topic in this array will be emailed. If not defined, only
|
|
169
|
+
* excludedTopics takes effect.
|
|
170
|
+
*/
|
|
171
|
+
includedTopics?: string[];
|
|
167
172
|
};
|
|
168
173
|
/**
|
|
169
174
|
* White list of addresses to send email to
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-notifications-backend-module-email",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.19-next.0",
|
|
4
4
|
"description": "The email backend module for the notifications plugin.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -40,22 +40,22 @@
|
|
|
40
40
|
"@aws-sdk/client-sesv2": "^3.911.0",
|
|
41
41
|
"@azure/communication-email": "^1.0.0",
|
|
42
42
|
"@azure/identity": "^4.0.0",
|
|
43
|
-
"@backstage/backend-plugin-api": "1.7.
|
|
44
|
-
"@backstage/catalog-client": "1.
|
|
43
|
+
"@backstage/backend-plugin-api": "1.7.1-next.0",
|
|
44
|
+
"@backstage/catalog-client": "1.13.1-next.0",
|
|
45
45
|
"@backstage/catalog-model": "1.7.6",
|
|
46
46
|
"@backstage/config": "1.3.6",
|
|
47
|
-
"@backstage/integration-aws-node": "0.1.20
|
|
48
|
-
"@backstage/plugin-catalog-node": "2.
|
|
49
|
-
"@backstage/plugin-notifications-common": "0.2.
|
|
50
|
-
"@backstage/plugin-notifications-node": "0.2.
|
|
47
|
+
"@backstage/integration-aws-node": "0.1.20",
|
|
48
|
+
"@backstage/plugin-catalog-node": "2.1.0-next.0",
|
|
49
|
+
"@backstage/plugin-notifications-common": "0.2.1",
|
|
50
|
+
"@backstage/plugin-notifications-node": "0.2.24-next.0",
|
|
51
51
|
"@backstage/types": "1.2.2",
|
|
52
52
|
"lodash": "^4.17.21",
|
|
53
53
|
"nodemailer": "^7.0.7",
|
|
54
54
|
"p-throttle": "^4.1.1"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@backstage/backend-test-utils": "1.11.
|
|
58
|
-
"@backstage/cli": "0.35.
|
|
57
|
+
"@backstage/backend-test-utils": "1.11.1-next.0",
|
|
58
|
+
"@backstage/cli": "0.35.5-next.0",
|
|
59
59
|
"@types/nodemailer": "^7.0.0"
|
|
60
60
|
},
|
|
61
61
|
"configSchema": "config.d.ts",
|