libmime 5.0.0 → 5.2.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/.gitattributes +1 -0
- package/.github/workflows/test.yml +21 -0
- package/CHANGELOG.md +10 -0
- package/package.json +10 -10
package/.gitattributes
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
*.js text eol=lf
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
name: Run tests
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
pull_request:
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
test:
|
|
9
|
+
strategy:
|
|
10
|
+
matrix:
|
|
11
|
+
node: [12.x, 14.x, 16.x, 18.x]
|
|
12
|
+
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
13
|
+
runs-on: ${{ matrix.os }}
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v2
|
|
16
|
+
- name: Use Node.js ${{ matrix.node }}
|
|
17
|
+
uses: actions/setup-node@v1
|
|
18
|
+
with:
|
|
19
|
+
node-version: ${{ matrix.node }}
|
|
20
|
+
- run: npm install
|
|
21
|
+
- run: npm test
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v5.2.0 2022-12-08
|
|
4
|
+
|
|
5
|
+
- Bumped libqp to get rid of `new Buffer` warnings
|
|
6
|
+
|
|
7
|
+
## v5.1.0 2022-04-28
|
|
8
|
+
|
|
9
|
+
- Bumped deps
|
|
10
|
+
- Removed Travis config
|
|
11
|
+
- Added Github actions file to run tests
|
|
12
|
+
|
|
3
13
|
## v5.0.0 2020-07-22
|
|
4
14
|
|
|
5
15
|
- Removed optional node-iconv support
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "libmime",
|
|
3
3
|
"description": "Encode and decode quoted printable and base64 strings",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.2.0",
|
|
5
5
|
"main": "lib/libmime",
|
|
6
6
|
"homepage": "https://github.com/andris9/libmime",
|
|
7
7
|
"repository": {
|
|
@@ -19,19 +19,19 @@
|
|
|
19
19
|
"test": "grunt"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"encoding-japanese": "
|
|
23
|
-
"iconv-lite": "0.6.
|
|
22
|
+
"encoding-japanese": "2.0.0",
|
|
23
|
+
"iconv-lite": "0.6.3",
|
|
24
24
|
"libbase64": "1.2.1",
|
|
25
|
-
"libqp": "
|
|
25
|
+
"libqp": "2.0.1"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"chai": "4.
|
|
28
|
+
"chai": "4.3.7",
|
|
29
29
|
"eslint-config-nodemailer": "1.2.0",
|
|
30
|
-
"eslint-config-prettier": "
|
|
31
|
-
"grunt": "1.
|
|
32
|
-
"grunt-cli": "1.3
|
|
33
|
-
"grunt-eslint": "
|
|
30
|
+
"eslint-config-prettier": "8.5.0",
|
|
31
|
+
"grunt": "1.5.3",
|
|
32
|
+
"grunt-cli": "1.4.3",
|
|
33
|
+
"grunt-eslint": "24.0.1",
|
|
34
34
|
"grunt-mocha-test": "0.13.3",
|
|
35
|
-
"mocha": "
|
|
35
|
+
"mocha": "10.1.0"
|
|
36
36
|
}
|
|
37
37
|
}
|