@eik/core 1.3.45 → 1.3.47
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 +14 -0
- package/lib/multipart/parser.js +3 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.3.47](https://github.com/eik-lib/core/compare/v1.3.46...v1.3.47) (2024-07-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update dependency rimraf to v5.0.8 ([daf2655](https://github.com/eik-lib/core/commit/daf26550d1d38d1b715c78213cde885e272a3893))
|
|
7
|
+
|
|
8
|
+
## [1.3.46](https://github.com/eik-lib/core/compare/v1.3.45...v1.3.46) (2024-07-03)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* add some logging in case archive parsing fails ([#420](https://github.com/eik-lib/core/issues/420)) ([d4f1a88](https://github.com/eik-lib/core/commit/d4f1a88924fde7afc6ba2b12ab757447d546fc2a)), closes [#418](https://github.com/eik-lib/core/issues/418)
|
|
14
|
+
|
|
1
15
|
## [1.3.45](https://github.com/eik-lib/core/compare/v1.3.44...v1.3.45) (2024-05-13)
|
|
2
16
|
|
|
3
17
|
|
package/lib/multipart/parser.js
CHANGED
|
@@ -133,6 +133,9 @@ const MultipartParser = class MultipartParser {
|
|
|
133
133
|
|
|
134
134
|
pipeline(file, extract, (error) => {
|
|
135
135
|
if (error) {
|
|
136
|
+
this._log.info(`multipart - Uploaded package could not be extracted properly - Field: ${fieldname} - Filename: ${filename}`)
|
|
137
|
+
this._log.trace(error);
|
|
138
|
+
|
|
136
139
|
switch (error.code) {
|
|
137
140
|
case 'TAR_BAD_ARCHIVE':
|
|
138
141
|
case 'TAR_ABORT':
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eik/core",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.47",
|
|
4
4
|
"description": "Core server package",
|
|
5
5
|
"main": "lib/main.js",
|
|
6
6
|
"type": "module",
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
"http-errors": "2.0.0",
|
|
28
28
|
"mime": "3.0.0",
|
|
29
29
|
"original-url": "1.2.3",
|
|
30
|
-
"rimraf": "5.0.
|
|
30
|
+
"rimraf": "5.0.8",
|
|
31
31
|
"semver": "7.6.2",
|
|
32
32
|
"ssri": "10.0.6",
|
|
33
33
|
"tar": "6.2.1",
|
|
34
34
|
"unique-slug": "4.0.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@babel/eslint-parser": "7.24.
|
|
37
|
+
"@babel/eslint-parser": "7.24.6",
|
|
38
38
|
"@semantic-release/changelog": "6.0.3",
|
|
39
39
|
"@semantic-release/git": "10.0.1",
|
|
40
40
|
"eslint": "8.57.0",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"mkdirp": "3.0.1",
|
|
47
47
|
"node-fetch": "3.3.2",
|
|
48
48
|
"prettier": "3.2.5",
|
|
49
|
-
"semantic-release": "23.
|
|
50
|
-
"tap": "18.
|
|
49
|
+
"semantic-release": "23.1.1",
|
|
50
|
+
"tap": "18.8.0"
|
|
51
51
|
}
|
|
52
52
|
}
|