@backstage/plugin-notifications-backend-module-email 0.3.18-next.1 → 0.3.18

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/config.d.ts +6 -1
  3. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @backstage/plugin-notifications-backend-module-email
2
2
 
3
+ ## 0.3.18
4
+
5
+ ### Patch Changes
6
+
7
+ - e9eb400: Allow configuring included topics for email notifications.
8
+ - Updated dependencies
9
+ - @backstage/plugin-catalog-node@2.0.0
10
+ - @backstage/integration-aws-node@0.1.20
11
+ - @backstage/backend-plugin-api@1.7.0
12
+ - @backstage/catalog-client@1.13.0
13
+ - @backstage/plugin-notifications-common@0.2.1
14
+ - @backstage/plugin-notifications-node@0.2.23
15
+
3
16
  ## 0.3.18-next.1
4
17
 
5
18
  ### 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 who's topic is in this array will not be emailed
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.18-next.1",
3
+ "version": "0.3.18",
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.0-next.1",
44
- "@backstage/catalog-client": "1.12.2-next.0",
45
- "@backstage/catalog-model": "1.7.6",
46
- "@backstage/config": "1.3.6",
47
- "@backstage/integration-aws-node": "0.1.20-next.0",
48
- "@backstage/plugin-catalog-node": "2.0.0-next.1",
49
- "@backstage/plugin-notifications-common": "0.2.0",
50
- "@backstage/plugin-notifications-node": "0.2.23-next.1",
51
- "@backstage/types": "1.2.2",
43
+ "@backstage/backend-plugin-api": "^1.7.0",
44
+ "@backstage/catalog-client": "^1.13.0",
45
+ "@backstage/catalog-model": "^1.7.6",
46
+ "@backstage/config": "^1.3.6",
47
+ "@backstage/integration-aws-node": "^0.1.20",
48
+ "@backstage/plugin-catalog-node": "^2.0.0",
49
+ "@backstage/plugin-notifications-common": "^0.2.1",
50
+ "@backstage/plugin-notifications-node": "^0.2.23",
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.0-next.1",
58
- "@backstage/cli": "0.35.4-next.2",
57
+ "@backstage/backend-test-utils": "^1.11.0",
58
+ "@backstage/cli": "^0.35.4",
59
59
  "@types/nodemailer": "^7.0.0"
60
60
  },
61
61
  "configSchema": "config.d.ts",