@nestjs-modules/mailer 1.11.2 → 2.0.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/.nvmrc +1 -1
- package/CHANGELOG.md +11 -0
- package/README.md +4 -0
- package/package.json +29 -22
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v20.
|
|
1
|
+
v20.12.2
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
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
|
+
## [2.0.0](https://github.com/nest-modules/mailer/compare/v1.11.2...v2.0.0) (2024-04-27)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
* **mailer.service:** The usage of in has been refactored. This could potentially alter the way configurations are merged in the application. Update your configurations if necessary to accommodate this change.
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* **mailer.service:** refactor usage of defaultsDeep ([3506885](https://github.com/nest-modules/mailer/commit/350688518e72d1fa347a11c2b1ed84988dbcc55a))
|
|
15
|
+
|
|
5
16
|
### [1.11.2](https://github.com/nest-modules/mailer/compare/v1.11.0...v1.11.2) (2024-02-27)
|
|
6
17
|
|
|
7
18
|
### [1.11.1](https://github.com/nest-modules/mailer/compare/v1.11.0...v1.11.1) (2024-02-27)
|
package/README.md
CHANGED
|
@@ -34,6 +34,8 @@ npm install --save handlebars
|
|
|
34
34
|
npm install --save pug
|
|
35
35
|
#or
|
|
36
36
|
npm install --save ejs
|
|
37
|
+
#or
|
|
38
|
+
npm install --save mjml
|
|
37
39
|
```
|
|
38
40
|
|
|
39
41
|
#### with yarn
|
|
@@ -43,6 +45,8 @@ yarn add handlebars
|
|
|
43
45
|
yarn add pug
|
|
44
46
|
#or
|
|
45
47
|
yarn add ejs
|
|
48
|
+
#or
|
|
49
|
+
yarn add mjml
|
|
46
50
|
```
|
|
47
51
|
|
|
48
52
|
### Documentation
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nestjs-modules/mailer",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "NestJS - a mailer module (@mailer)",
|
|
6
6
|
"keywords": [
|
|
@@ -24,7 +24,9 @@
|
|
|
24
24
|
"Eduardo Leal <eduardolleal@icloud.com>",
|
|
25
25
|
"Juan Echeverry <e.juandav@gmail.com>",
|
|
26
26
|
"Paweł Partyka <partyka95@icloud.com>",
|
|
27
|
-
"
|
|
27
|
+
"Alexandre TITEUX <alexandretiteux@gmail.com>",
|
|
28
|
+
"Yanarp",
|
|
29
|
+
"Joao vitor FREZYN <00001097715413SP@al.educacao.sp.gov.br>"
|
|
28
30
|
],
|
|
29
31
|
"scripts": {
|
|
30
32
|
"prebuild": "rimraf dist",
|
|
@@ -52,45 +54,47 @@
|
|
|
52
54
|
]
|
|
53
55
|
},
|
|
54
56
|
"dependencies": {
|
|
55
|
-
"@css-inline/css-inline": "0.
|
|
56
|
-
"glob": "10.3.
|
|
57
|
-
"mjml": "4.15.3",
|
|
58
|
-
"preview-email": "3.0.19"
|
|
57
|
+
"@css-inline/css-inline": "0.14.1",
|
|
58
|
+
"glob": "10.3.12"
|
|
59
59
|
},
|
|
60
60
|
"optionalDependencies": {
|
|
61
61
|
"@types/ejs": "^3.1.5",
|
|
62
62
|
"@types/pug": "^2.0.10",
|
|
63
|
-
"
|
|
63
|
+
"@types/mjml": "^4.7.4",
|
|
64
|
+
"ejs": "^3.1.10",
|
|
64
65
|
"handlebars": "^4.7.8",
|
|
65
|
-
"
|
|
66
|
+
"mjml": "^4.15.3",
|
|
67
|
+
"pug": "^3.0.2",
|
|
68
|
+
"liquidjs": "^10.11.1"
|
|
66
69
|
},
|
|
67
70
|
"devDependencies": {
|
|
68
|
-
"@commitlint/cli": "
|
|
69
|
-
"@commitlint/config-angular": "
|
|
70
|
-
"@nestjs/common": "10.3.
|
|
71
|
-
"@nestjs/core": "10.3.
|
|
72
|
-
"@nestjs/testing": "10.3.
|
|
71
|
+
"@commitlint/cli": "19.3.0",
|
|
72
|
+
"@commitlint/config-angular": "19.3.0",
|
|
73
|
+
"@nestjs/common": "10.3.8",
|
|
74
|
+
"@nestjs/core": "10.3.8",
|
|
75
|
+
"@nestjs/testing": "10.3.8",
|
|
73
76
|
"@types/glob": "8.1.0",
|
|
74
77
|
"@types/jest": "29.5.12",
|
|
75
|
-
"@types/lodash": "4.
|
|
78
|
+
"@types/lodash": "4.17.0",
|
|
76
79
|
"@types/nodemailer": "6.4.14",
|
|
77
80
|
"@types/pug": "2.0.10",
|
|
78
|
-
"@typescript-eslint/eslint-plugin": "7.
|
|
79
|
-
"@typescript-eslint/parser": "7.
|
|
81
|
+
"@typescript-eslint/eslint-plugin": "7.7.1",
|
|
82
|
+
"@typescript-eslint/parser": "7.7.1",
|
|
80
83
|
"husky": "9.0.11",
|
|
81
84
|
"jest": "29.7.0",
|
|
82
85
|
"lint-staged": "15.2.2",
|
|
83
|
-
"nodemailer": "6.9.
|
|
84
|
-
"nodemailer-mock": "2.0.
|
|
86
|
+
"nodemailer": "6.9.13",
|
|
87
|
+
"nodemailer-mock": "2.0.6",
|
|
85
88
|
"prettier": "3.2.5",
|
|
86
|
-
"
|
|
89
|
+
"preview-email": "3.0.19",
|
|
90
|
+
"reflect-metadata": "0.2.2",
|
|
87
91
|
"rimraf": "5.0.5",
|
|
88
92
|
"rxjs": "7.8.1",
|
|
89
93
|
"standard-version": "9.5.0",
|
|
90
94
|
"ts-jest": "29.1.2",
|
|
91
95
|
"ts-node": "10.9.2",
|
|
92
96
|
"tslib": "2.6.2",
|
|
93
|
-
"typescript": "5.
|
|
97
|
+
"typescript": "5.4.5",
|
|
94
98
|
"yarn-audit-fix": "10.0.7"
|
|
95
99
|
},
|
|
96
100
|
"peerDependencies": {
|
|
@@ -98,9 +102,12 @@
|
|
|
98
102
|
"@nestjs/core": ">=7.0.9",
|
|
99
103
|
"@types/ejs": ">=3.0.3",
|
|
100
104
|
"@types/pug": ">=2.0.6",
|
|
105
|
+
"@types/mjml": ">=4.7.4",
|
|
106
|
+
"nodemailer": ">=6.4.6",
|
|
101
107
|
"ejs": ">=3.1.2",
|
|
102
108
|
"handlebars": ">=4.7.6",
|
|
103
|
-
"
|
|
104
|
-
"pug": ">=3.0.1"
|
|
109
|
+
"mjml": ">=4.15.3",
|
|
110
|
+
"pug": ">=3.0.1",
|
|
111
|
+
"liquidjs": ">=10.8.2"
|
|
105
112
|
}
|
|
106
113
|
}
|