email-notifier 14.1.4 → 14.1.6
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/.circleci/config.yml +1 -1
- package/.grype.yaml +10 -3
- package/.nvmrc +1 -1
- package/CHANGELOG.md +16 -0
- package/Dockerfile +1 -1
- package/package.json +19 -18
- package/{sbom-v14.1.3.csv → sbom-v14.1.5.csv} +370 -371
package/.circleci/config.yml
CHANGED
package/.grype.yaml
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
ignore:
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
- vulnerability: GHSA-5j98-mcp5-4vw2
|
|
3
|
+
include-aliases: true
|
|
4
|
+
reason: "glob upgraded to 10.5.0 in package.json, but Node.js 22.20.0-alpine3.22 is still using glob 10.4.5"
|
|
5
|
+
- vulnerability: CVE-2025-46394
|
|
6
|
+
reason: "No fixes to busybox apk available as of 2025-10-16 on Dockerfile base image 22.20.0-alpine3.22"
|
|
7
|
+
- vulnerability: CVE-2024-58251
|
|
8
|
+
reason: "No fixes to busybox apk available as of 2025-10-16 on Dockerfile base image 22.20.0-alpine3.22"
|
|
9
|
+
- vulnerability: CVE-2025-56200
|
|
10
|
+
include-aliases: true
|
|
11
|
+
reason: "No fixes available as of 2025-10-16 on validator npm package"
|
|
5
12
|
|
|
6
13
|
|
|
7
14
|
# Set output format defaults
|
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
22.
|
|
1
|
+
22.20.0
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [14.1.6](https://github.com/mojaloop/email-notifier/compare/v14.1.5...v14.1.6) (2025-12-16)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Chore
|
|
9
|
+
|
|
10
|
+
* **ci:** update CircleCI orb to 1.1.9 ([#234](https://github.com/mojaloop/email-notifier/issues/234)) ([1c12e67](https://github.com/mojaloop/email-notifier/commit/1c12e67067762d77403002787abea9877e06d51d))
|
|
11
|
+
* **sbom:** update sbom [skip ci] ([883a913](https://github.com/mojaloop/email-notifier/commit/883a91340763fe8af7ca5a56921e5ebb4fbbdc9c))
|
|
12
|
+
|
|
13
|
+
### [14.1.5](https://github.com/mojaloop/email-notifier/compare/v14.1.4...v14.1.5) (2025-10-20)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Chore
|
|
17
|
+
|
|
18
|
+
* **sbom:** update sbom [skip ci] ([16908d8](https://github.com/mojaloop/email-notifier/commit/16908d8fd1188a6a97a2e9bc887d11eda5b981c4))
|
|
19
|
+
* update orb, node, grype, image and deps ([#230](https://github.com/mojaloop/email-notifier/issues/230)) ([6ef8775](https://github.com/mojaloop/email-notifier/commit/6ef8775aa185f1067907108993c7851ce4ea52c5))
|
|
20
|
+
|
|
5
21
|
### [14.1.4](https://github.com/mojaloop/email-notifier/compare/v14.1.3...v14.1.4) (2025-07-25)
|
|
6
22
|
|
|
7
23
|
|
package/Dockerfile
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "email-notifier",
|
|
3
|
-
"version": "14.1.
|
|
3
|
+
"version": "14.1.6",
|
|
4
4
|
"description": "email notifier to monitor the notification kafka topic and send emails.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "app.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"test"
|
|
24
24
|
],
|
|
25
25
|
"engines": {
|
|
26
|
-
"node": "
|
|
26
|
+
"node": "22.x"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
29
|
"start": "node app.js",
|
|
@@ -47,24 +47,24 @@
|
|
|
47
47
|
"dep:update": "npx ncu -u"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@hapi/hapi": "21.4.
|
|
51
|
-
"@mojaloop/central-services-error-handling": "13.1.
|
|
52
|
-
"@mojaloop/central-services-health": "15.1
|
|
53
|
-
"@mojaloop/central-services-logger": "11.
|
|
54
|
-
"@mojaloop/central-services-metrics": "12.
|
|
55
|
-
"@mojaloop/central-services-shared": "18.
|
|
56
|
-
"@mojaloop/central-services-stream": "11.8.
|
|
57
|
-
"@mojaloop/event-sdk": "14.
|
|
50
|
+
"@hapi/hapi": "21.4.4",
|
|
51
|
+
"@mojaloop/central-services-error-handling": "13.1.5",
|
|
52
|
+
"@mojaloop/central-services-health": "15.2.1",
|
|
53
|
+
"@mojaloop/central-services-logger": "11.10.2",
|
|
54
|
+
"@mojaloop/central-services-metrics": "12.8.3",
|
|
55
|
+
"@mojaloop/central-services-shared": "18.34.5",
|
|
56
|
+
"@mojaloop/central-services-stream": "11.8.13",
|
|
57
|
+
"@mojaloop/event-sdk": "14.8.2",
|
|
58
58
|
"ajv": "8.17.1",
|
|
59
59
|
"ajv-keywords": "5.1.0",
|
|
60
|
-
"camelcase": "
|
|
60
|
+
"camelcase": "9.0.0",
|
|
61
61
|
"check-types": "11.2.3",
|
|
62
|
-
"config": "4.1.
|
|
62
|
+
"config": "4.1.1",
|
|
63
63
|
"json-rules-engine": "7.3.1",
|
|
64
64
|
"lazy-ass": "2.0.3",
|
|
65
65
|
"lodash": "4.17.21",
|
|
66
66
|
"mustache": "4.2.0",
|
|
67
|
-
"nodemailer": "7.0.
|
|
67
|
+
"nodemailer": "7.0.11",
|
|
68
68
|
"rxjs": "7.8.2",
|
|
69
69
|
"rxjs-compat": "6.6.7",
|
|
70
70
|
"uuid4": "2.0.3"
|
|
@@ -73,14 +73,14 @@
|
|
|
73
73
|
"audit-ci": "7.1.0",
|
|
74
74
|
"jsonpath": "1.1.1",
|
|
75
75
|
"nodemailer-mock": "2.0.9",
|
|
76
|
-
"nodemon": "3.1.
|
|
77
|
-
"npm-check-updates": "
|
|
76
|
+
"nodemon": "3.1.11",
|
|
77
|
+
"npm-check-updates": "19.2.0",
|
|
78
78
|
"npm-run-all": "4.1.5",
|
|
79
79
|
"nyc": "17.1.0",
|
|
80
80
|
"pre-commit": "1.2.2",
|
|
81
81
|
"proxyquire": "2.1.3",
|
|
82
82
|
"replace": "1.2.2",
|
|
83
|
-
"rewire": "9.0.
|
|
83
|
+
"rewire": "9.0.1",
|
|
84
84
|
"rxjs-marbles": "7.0.1",
|
|
85
85
|
"sinon": "21.0.0",
|
|
86
86
|
"standard": "17.1.2",
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"overrides": {
|
|
94
94
|
"form-data": "3.0.4",
|
|
95
95
|
"on-headers": "1.1.0",
|
|
96
|
-
"nodemailer": "7.0.
|
|
96
|
+
"nodemailer": "7.0.11",
|
|
97
97
|
"shins": {
|
|
98
98
|
"ajv": "6.12.3",
|
|
99
99
|
"ejs": "3.1.10",
|
|
@@ -108,7 +108,8 @@
|
|
|
108
108
|
"cross-spawn": "7.0.6",
|
|
109
109
|
"trim": "0.0.3",
|
|
110
110
|
"yargs-parser": "21.1.1",
|
|
111
|
-
"braces": "3.0.3"
|
|
111
|
+
"braces": "3.0.3",
|
|
112
|
+
"js-yaml": "4.1.1"
|
|
112
113
|
},
|
|
113
114
|
"standard-version": {
|
|
114
115
|
"scripts": {
|