exiftool-vendored 16.0.0 → 16.1.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/CHANGELOG.md +10 -4
- package/README.md +0 -14
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -25,6 +25,15 @@ vendored versions of ExifTool match the version they vendor.
|
|
|
25
25
|
|
|
26
26
|
## Version history
|
|
27
27
|
|
|
28
|
+
### v16.1.0
|
|
29
|
+
|
|
30
|
+
- ✨ Updated dependencies, including batch-cluster
|
|
31
|
+
[v10.4.0](https://github.com/photostructure/batch-cluster.js/blob/main/CHANGELOG.md#v1040)).
|
|
32
|
+
|
|
33
|
+
This new version will detect when tasks are rejected (due to parsing issues or
|
|
34
|
+
any other reason), and in that case, the child `exiftool` process will be
|
|
35
|
+
verified to be "healthy" before being put back into the service pool.
|
|
36
|
+
|
|
28
37
|
### v16.0.0
|
|
29
38
|
|
|
30
39
|
- 💔/🐞 Timezone extraction has been adjusted: if there is a GPS location, we'll
|
|
@@ -64,15 +73,12 @@ vendored versions of ExifTool match the version they vendor.
|
|
|
64
73
|
As a reminder, the `Tags` interface is only a subset of fields returned, due
|
|
65
74
|
to TypeScript limitations. `readTags` still returns all values that ExifTool
|
|
66
75
|
provides.
|
|
67
|
-
|
|
76
|
+
|
|
68
77
|
- 🐞 Fixed a bunch of broken API links in the README due to `typedoc` changing
|
|
69
78
|
URLs. Harumph.
|
|
70
|
-
|
|
71
79
|
- 🐞 Prior versions of `ExifDateTime.parseISO` would accept just time or date
|
|
72
80
|
strings.
|
|
73
|
-
|
|
74
81
|
- 🐞/📦 `TimeStamp` tags may now be properly parsed as `ExifDateTime`.
|
|
75
|
-
|
|
76
82
|
- 📦 Added performance section to the README.
|
|
77
83
|
|
|
78
84
|
- 📦 Timezone offset formatting changed slightly: the hour offset is no longer
|
package/README.md
CHANGED
|
@@ -155,20 +155,6 @@ field doesn't exist in the returned object**. This library doesn't exclude
|
|
|
155
155
|
unknown fields, in other words. It's up to you and your code to look for other
|
|
156
156
|
fields you expect and cast to a more relevant interface.
|
|
157
157
|
|
|
158
|
-
### Errors and Warnings
|
|
159
|
-
|
|
160
|
-
ExifTool has a pretty exhaustive set of error checking, and many "errors" are
|
|
161
|
-
actually non-fatal warnings about invalid tag structures that seem to be
|
|
162
|
-
regularly found in otherwise-not-corrupt images.
|
|
163
|
-
|
|
164
|
-
If we rejected every `read` or `write` when any error happened, this would
|
|
165
|
-
prevent reading and/or writing to otherwise-ok files. To "demote" errors to be
|
|
166
|
-
warnings that don't reject the underlying task, you can provide either a
|
|
167
|
-
[`minorErrorsRegExp`](interfaces/exiftooloptions.html#minorerrorsregexp), or an
|
|
168
|
-
implementation of
|
|
169
|
-
[`rejectTaskOnStderr`](interfaces/exiftooloptions.html#rejecttaskonstderr).
|
|
170
|
-
Either of these parameters is provided to the `ExifTool` constructor.
|
|
171
|
-
|
|
172
158
|
### Logging and events
|
|
173
159
|
|
|
174
160
|
To enable trace, debug, info, warning, or error logging from this library and
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "exiftool-vendored",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.1.0",
|
|
4
4
|
"description": "Efficient, cross-platform access to ExifTool",
|
|
5
5
|
"main": "./dist/ExifTool.js",
|
|
6
6
|
"types": "./dist/ExifTool.d.ts",
|
|
@@ -86,26 +86,26 @@
|
|
|
86
86
|
"@types/globule": "^1.1.4",
|
|
87
87
|
"@types/he": "^1.1.2",
|
|
88
88
|
"@types/mocha": "^9.1.0",
|
|
89
|
-
"@types/node": "^17.0.
|
|
89
|
+
"@types/node": "^17.0.23",
|
|
90
90
|
"@types/progress": "^2.0.5",
|
|
91
91
|
"@types/rimraf": "^3.0.2",
|
|
92
92
|
"@types/tar-fs": "^2.0.1",
|
|
93
93
|
"@types/tmp": "^0.2.3",
|
|
94
94
|
"@types/xmldom": "^0.1.31",
|
|
95
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
96
|
-
"@typescript-eslint/parser": "^5.
|
|
95
|
+
"@typescript-eslint/eslint-plugin": "^5.17.0",
|
|
96
|
+
"@typescript-eslint/parser": "^5.17.0",
|
|
97
97
|
"chai": "^4.3.6",
|
|
98
98
|
"chai-as-promised": "^7.1.1",
|
|
99
99
|
"chai-subset": "^1.6.0",
|
|
100
|
-
"eslint": "^8.
|
|
100
|
+
"eslint": "^8.12.0",
|
|
101
101
|
"eslint-plugin-import": "^2.25.4",
|
|
102
102
|
"eslint-plugin-node": "^11.1.0",
|
|
103
103
|
"extract-zip": "^2.0.1",
|
|
104
104
|
"fs-extra": "^10.0.1",
|
|
105
105
|
"globule": "^1.3.3",
|
|
106
|
-
"mocha": "^9.2.
|
|
106
|
+
"mocha": "^9.2.2",
|
|
107
107
|
"npm-run-all": "^4.1.5",
|
|
108
|
-
"prettier": "^2.
|
|
108
|
+
"prettier": "^2.6.1",
|
|
109
109
|
"progress": "^2.0.3",
|
|
110
110
|
"rimraf": "^3.0.2",
|
|
111
111
|
"serve": "^13.0.2",
|
|
@@ -113,13 +113,13 @@
|
|
|
113
113
|
"tar-fs": "^2.1.1",
|
|
114
114
|
"tmp": "^0.2.1",
|
|
115
115
|
"typedoc": "^0.22.13",
|
|
116
|
-
"typescript": "~4.6.
|
|
116
|
+
"typescript": "~4.6.3",
|
|
117
117
|
"@xmldom/xmldom": "^0.8.1",
|
|
118
118
|
"xpath": "^0.0.32"
|
|
119
119
|
},
|
|
120
120
|
"dependencies": {
|
|
121
|
-
"@types/luxon": "^2.3.
|
|
122
|
-
"batch-cluster": "^10.
|
|
121
|
+
"@types/luxon": "^2.3.1",
|
|
122
|
+
"batch-cluster": "^10.4.0",
|
|
123
123
|
"he": "^1.2.0",
|
|
124
124
|
"luxon": "^2.3.1",
|
|
125
125
|
"tz-lookup": "^6.1.25"
|