exiftool-vendored 15.9.2 → 15.10.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 CHANGED
@@ -25,6 +25,12 @@ vendored versions of ExifTool match the version they vendor.
25
25
 
26
26
  ## Version history
27
27
 
28
+ ### v15.10.0
29
+
30
+ - 🌱 ExifTool upgraded to [v12.39](https://exiftool.org/history.html#v12.39).
31
+
32
+ - 🐞/📦 Include `@types/luxon` in `dependencies` (thanks, [davidmz](https://github.com/photostructure/exiftool-vendored.js/pull/108)!)
33
+
28
34
  ### v15.9.2
29
35
 
30
36
  - 📦 Rebuild tags and docs with updated test images. Note that some `GPS` tags types changed to `string`: see v15.8.0.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2016-2021 Matthew McEachen
3
+ Copyright (c) 2016-2022 Matthew McEachen
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -328,8 +328,12 @@ ExifTool child processes consume system resources, and [prevents `node` from
328
328
  exiting due to the way Node.js streams
329
329
  work](https://github.com/photostructure/exiftool-vendored.js/issues/106).
330
330
 
331
- You must explicitly call `ExifTool.end()` for `node` to exit gracefully. This
332
- cannot be in a `process.on("exit")` hook, as that will never get called.
331
+ You must explicitly call `.end()` on any used instance of `ExifTool` for `node`
332
+ to exit gracefully.
333
+
334
+ This call cannot be in a `process.on("exit")` hook, as the `stdio` streams
335
+ attached to the child process cannot be `unref`'ed. (If there's a solution to
336
+ this, please post to the above issue!)
333
337
 
334
338
  ### Mocha v4.0.0
335
339
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exiftool-vendored",
3
- "version": "15.9.2",
3
+ "version": "15.10.0",
4
4
  "description": "Efficient, cross-platform access to ExifTool",
5
5
  "main": "./dist/ExifTool.js",
6
6
  "types": "./dist/ExifTool.d.ts",
@@ -74,26 +74,25 @@
74
74
  "@types/fs-extra": "^9.0.13",
75
75
  "@types/globule": "^1.1.4",
76
76
  "@types/he": "^1.1.2",
77
- "@types/luxon": "^2.0.8",
78
77
  "@types/mocha": "^9.0.0",
79
- "@types/node": "^17.0.2",
78
+ "@types/node": "^17.0.8",
80
79
  "@types/progress": "^2.0.5",
81
80
  "@types/rimraf": "^3.0.2",
82
81
  "@types/tar-fs": "^2.0.1",
83
82
  "@types/tmp": "^0.2.3",
84
83
  "@types/xmldom": "^0.1.31",
85
- "@typescript-eslint/eslint-plugin": "^5.8.0",
86
- "@typescript-eslint/parser": "^5.8.0",
84
+ "@typescript-eslint/eslint-plugin": "^5.9.1",
85
+ "@typescript-eslint/parser": "^5.9.1",
87
86
  "chai": "^4.3.4",
88
87
  "chai-as-promised": "^7.1.1",
89
88
  "chai-subset": "^1.6.0",
90
- "eslint": "^8.5.0",
91
- "eslint-plugin-import": "^2.25.3",
89
+ "eslint": "^8.6.0",
90
+ "eslint-plugin-import": "^2.25.4",
92
91
  "eslint-plugin-node": "^11.1.0",
93
92
  "extract-zip": "^2.0.1",
94
93
  "fs-extra": "^10.0.0",
95
94
  "globule": "^1.3.3",
96
- "mocha": "^9.1.3",
95
+ "mocha": "^9.1.4",
97
96
  "npm-run-all": "^4.1.5",
98
97
  "prettier": "^2.5.1",
99
98
  "progress": "^2.0.3",
@@ -108,13 +107,14 @@
108
107
  "xpath": "^0.0.32"
109
108
  },
110
109
  "dependencies": {
110
+ "@types/luxon": "^2.0.9",
111
111
  "batch-cluster": "^8.0.1",
112
112
  "he": "^1.2.0",
113
- "luxon": "^2.2.0",
113
+ "luxon": "^2.3.0",
114
114
  "tz-lookup": "^6.1.25"
115
115
  },
116
116
  "optionalDependencies": {
117
- "exiftool-vendored.exe": "12.38.0",
118
- "exiftool-vendored.pl": "12.38.0"
117
+ "exiftool-vendored.exe": "12.39.0",
118
+ "exiftool-vendored.pl": "12.39.0"
119
119
  }
120
120
  }