@backstage/plugin-notifications-backend-module-email 0.0.0-nightly-20240813022007 → 0.0.0-nightly-20240815021638
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 +22 -6
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @backstage/plugin-notifications-backend-module-email
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20240815021638
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -52,16 +52,32 @@
|
|
|
52
52
|
- cdb630d: Add support for stream transport for debugging purposes
|
|
53
53
|
- 83faf24: Notification email processor supports allowing or denying specific email addresses from receiving notifications
|
|
54
54
|
- Updated dependencies
|
|
55
|
-
- @backstage/backend-plugin-api@0.0.0-nightly-
|
|
56
|
-
- @backstage/backend-common@0.0.0-nightly-
|
|
57
|
-
- @backstage/plugin-notifications-node@0.0.0-nightly-
|
|
58
|
-
- @backstage/catalog-model@0.0.0-nightly-
|
|
59
|
-
- @backstage/catalog-client@0.0.0-nightly-
|
|
55
|
+
- @backstage/backend-plugin-api@0.0.0-nightly-20240815021638
|
|
56
|
+
- @backstage/backend-common@0.0.0-nightly-20240815021638
|
|
57
|
+
- @backstage/plugin-notifications-node@0.0.0-nightly-20240815021638
|
|
58
|
+
- @backstage/catalog-model@0.0.0-nightly-20240815021638
|
|
59
|
+
- @backstage/catalog-client@0.0.0-nightly-20240815021638
|
|
60
60
|
- @backstage/config@1.2.0
|
|
61
61
|
- @backstage/integration-aws-node@0.1.12
|
|
62
62
|
- @backstage/types@1.1.1
|
|
63
63
|
- @backstage/plugin-notifications-common@0.0.5
|
|
64
64
|
|
|
65
|
+
## 0.2.0-next.3
|
|
66
|
+
|
|
67
|
+
### Patch Changes
|
|
68
|
+
|
|
69
|
+
- 83faf24: Notification email processor supports allowing or denying specific email addresses from receiving notifications
|
|
70
|
+
- Updated dependencies
|
|
71
|
+
- @backstage/backend-plugin-api@0.8.0-next.3
|
|
72
|
+
- @backstage/backend-common@0.23.4-next.3
|
|
73
|
+
- @backstage/catalog-model@1.6.0-next.0
|
|
74
|
+
- @backstage/catalog-client@1.6.6-next.0
|
|
75
|
+
- @backstage/config@1.2.0
|
|
76
|
+
- @backstage/integration-aws-node@0.1.12
|
|
77
|
+
- @backstage/types@1.1.1
|
|
78
|
+
- @backstage/plugin-notifications-common@0.0.5
|
|
79
|
+
- @backstage/plugin-notifications-node@0.2.4-next.3
|
|
80
|
+
|
|
65
81
|
## 0.2.0-next.2
|
|
66
82
|
|
|
67
83
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-notifications-backend-module-email",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20240815021638",
|
|
4
4
|
"description": "The email backend module for the notifications plugin.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -36,22 +36,22 @@
|
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@aws-sdk/client-ses": "^3.550.0",
|
|
38
38
|
"@aws-sdk/types": "^3.347.0",
|
|
39
|
-
"@backstage/backend-common": "^0.0.0-nightly-
|
|
40
|
-
"@backstage/backend-plugin-api": "^0.0.0-nightly-
|
|
41
|
-
"@backstage/catalog-client": "^0.0.0-nightly-
|
|
42
|
-
"@backstage/catalog-model": "^0.0.0-nightly-
|
|
39
|
+
"@backstage/backend-common": "^0.0.0-nightly-20240815021638",
|
|
40
|
+
"@backstage/backend-plugin-api": "^0.0.0-nightly-20240815021638",
|
|
41
|
+
"@backstage/catalog-client": "^0.0.0-nightly-20240815021638",
|
|
42
|
+
"@backstage/catalog-model": "^0.0.0-nightly-20240815021638",
|
|
43
43
|
"@backstage/config": "^1.2.0",
|
|
44
44
|
"@backstage/integration-aws-node": "^0.1.12",
|
|
45
45
|
"@backstage/plugin-notifications-common": "^0.0.5",
|
|
46
|
-
"@backstage/plugin-notifications-node": "^0.0.0-nightly-
|
|
46
|
+
"@backstage/plugin-notifications-node": "^0.0.0-nightly-20240815021638",
|
|
47
47
|
"@backstage/types": "^1.1.1",
|
|
48
48
|
"lodash": "^4.17.21",
|
|
49
49
|
"nodemailer": "^6.9.13",
|
|
50
50
|
"p-throttle": "^4.1.1"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@backstage/backend-test-utils": "^0.0.0-nightly-
|
|
54
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
53
|
+
"@backstage/backend-test-utils": "^0.0.0-nightly-20240815021638",
|
|
54
|
+
"@backstage/cli": "^0.0.0-nightly-20240815021638",
|
|
55
55
|
"@types/nodemailer": "^6.4.14"
|
|
56
56
|
},
|
|
57
57
|
"configSchema": "config.d.ts"
|