@restorecommerce/mailer 0.1.19 → 1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +40 -0
  2. package/package.json +21 -12
package/CHANGELOG.md CHANGED
@@ -3,6 +3,46 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.0.0](https://github.com/restorecommerce/libs/compare/@restorecommerce/mailer@0.1.21...@restorecommerce/mailer@1.0.0) (2022-08-25)
7
+
8
+
9
+ ### Features
10
+
11
+ * move to fully typed grpc client and server ([ec9be2d](https://github.com/restorecommerce/libs/commit/ec9be2daff0823e9ba440a2845b7b1a7f2d74b50))
12
+
13
+
14
+ ### Reverts
15
+
16
+ * Revert "BREAKING CHANGE: move to fully typed grpc client and server" ([2d584a7](https://github.com/restorecommerce/libs/commit/2d584a709632ae608f595a2c836deabd34f671d9))
17
+
18
+
19
+ ### BREAKING CHANGES
20
+
21
+ * move to fully typed grpc client and server
22
+
23
+
24
+
25
+
26
+
27
+ ## [0.1.21](https://github.com/restorecommerce/libs/compare/@restorecommerce/mailer@0.1.20...@restorecommerce/mailer@0.1.21) (2022-06-10)
28
+
29
+
30
+ ### Bug Fixes
31
+
32
+ * fix merge issues ([cc37d83](https://github.com/restorecommerce/libs/commit/cc37d8356df3b494af8c6af9e39304a49073301c))
33
+
34
+
35
+
36
+
37
+
38
+ ## [0.1.20](https://github.com/restorecommerce/libs/compare/@restorecommerce/mailer@0.1.19...@restorecommerce/mailer@0.1.20) (2022-05-16)
39
+
40
+ **Note:** Version bump only for package @restorecommerce/mailer
41
+
42
+
43
+
44
+
45
+
6
46
  ## [0.1.19](https://github.com/restorecommerce/libs/compare/@restorecommerce/mailer@0.1.18...@restorecommerce/mailer@0.1.19) (2022-02-22)
7
47
 
8
48
  **Note:** Version bump only for package @restorecommerce/mailer
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@restorecommerce/mailer",
3
- "version": "0.1.19",
3
+ "version": "1.0.0",
4
4
  "description": "Multi transport mailer based on nodemailer",
5
5
  "main": "./lib/index.js",
6
6
  "typings": "./lib/index.d.ts",
@@ -15,33 +15,33 @@
15
15
  "commerce"
16
16
  ],
17
17
  "dependencies": {
18
- "nodemailer": "^6.7.2",
18
+ "nodemailer": "^6.7.5",
19
19
  "nodemailer-html-to-text": "^3.2.0",
20
20
  "nodemailer-mandrill-transport": "^1.2.0",
21
21
  "nodemailer-stub-transport": "^1.1.0",
22
22
  "nodemailer-wellknown": "^0.2.3",
23
- "winston": "^3.5.1"
23
+ "winston": "^3.7.2"
24
24
  },
25
25
  "devDependencies": {
26
- "@types/mocha": "^9.1.0",
27
- "@types/node": "^17.0.16",
26
+ "@types/mocha": "^9.1.1",
27
+ "@types/node": "^17.0.33",
28
28
  "@types/nodemailer": "^6.4.4",
29
29
  "@types/nodemailer-html-to-text": "^3.1.0",
30
30
  "@types/nodemailer-stub-transport": "^1.1.5",
31
- "@typescript-eslint/eslint-plugin": "^5.11.0",
32
- "@typescript-eslint/eslint-plugin-tslint": "^5.11.0",
33
- "@typescript-eslint/parser": "^5.11.0",
31
+ "@typescript-eslint/eslint-plugin": "^5.23.0",
32
+ "@typescript-eslint/eslint-plugin-tslint": "^5.23.0",
33
+ "@typescript-eslint/parser": "^5.23.0",
34
34
  "assert": "^2.0.0",
35
35
  "co-mocha": "^1.2.2",
36
36
  "coveralls": "^3.1.1",
37
- "eslint": "^8.8.0",
37
+ "eslint": "^8.15.0",
38
38
  "eslint-plugin-prefer-arrow-functions": "^3.1.4",
39
39
  "is-generator": "^1.0.3",
40
- "mocha": "^9.2.0",
40
+ "mocha": "^10.0.0",
41
41
  "npm-run-all": "^4.1.5",
42
42
  "nyc": "^15.1.0",
43
43
  "should": "^13.2.3",
44
- "typescript": "^4.5.5"
44
+ "typescript": "^4.6.4"
45
45
  },
46
46
  "scripts": {
47
47
  "lint": "eslint src --ext .ts ",
@@ -56,5 +56,14 @@
56
56
  "engines": {
57
57
  "node": ">= 10.0.0"
58
58
  },
59
- "gitHead": "48d54d4a52972fa4c7f03a105241ea0662454e83"
59
+ "nx": {
60
+ "targets": {
61
+ "build": {
62
+ "outputs": [
63
+ "./lib"
64
+ ]
65
+ }
66
+ }
67
+ },
68
+ "gitHead": "2b25803ec9494c298f4f008a55485bc201c83bb8"
60
69
  }