exiftool-vendored 16.4.0 → 16.5.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,16 @@ vendored versions of ExifTool match the version that they vendor.
25
25
 
26
26
  ## Version history
27
27
 
28
+ ### v16.5.0
29
+
30
+ - 🌱 ExifTool upgraded to [v12.42](https://exiftool.org/history.html#v12.42).
31
+
32
+ - 📦 Updated dependencies
33
+
34
+ - 📦 Dropped Node v12 from GitHub Actions CI
35
+
36
+ - 📦 Added [RELEASE.md](https://github.com/photostructure/exiftool-vendored.js/blob/main/RELEASE.md)
37
+
28
38
  ### v16.4.0
29
39
 
30
40
  - 🐞 Struct values are now properly encoded when writing. Specifically, prior
package/RELEASE.md ADDED
@@ -0,0 +1,32 @@
1
+ # Releasing new versions of `exiftool-vendored`
2
+
3
+ 1. `git clone` this repo, and either
4
+ [exiftool-vendored.pl](https://github.com/photostructure/exiftool-vendored.pl)
5
+ or
6
+ [exiftool-vendored.exe](https://github.com/photostructure/exiftool-vendored.exe)
7
+ into a single directory (like `~/src`)
8
+ 2. On POSIX, in `../exiftool-vendored.pl`:
9
+
10
+ 1. `npx ncu -u && yarn install && ./update.sh && yarn test`
11
+ 1. Verify diffs are in order, and commit
12
+ 1. `npx release-it`
13
+
14
+ 3. On Windows, in `../exiftool-vendored.exe`:
15
+
16
+ 1. `npx ncu -u && yarn install && ./update.sh && yarn test`
17
+ 1. Verify diffs are in order, and commit
18
+ 1. `npx release-it`
19
+
20
+ 4. In `exiftool-vendored.pl`:
21
+
22
+ 1. `npx ncu -u`
23
+ 1. `yarn install`
24
+ 1. `yarn mktags ../test-images` # < assumes ../test-images has the full ExifTool sample image suite
25
+ 1. `yarn prettier`
26
+ 1. `yarn lint`
27
+ 1. `yarn docs`
28
+ 1. Verify docs were rebuilt successfully at <http://localhost:3000/index.html>
29
+ 1. `yarn test`
30
+ 1. Update the [CHANGELOG.md](https://github.com/photostructure/exiftool-vendored.js/blob/main/CHANGELOG.md)
31
+ 1. Verify diffs are reasonable, and `git commit`
32
+ 1. `npx release-it`
@@ -1,4 +1,5 @@
1
1
  /// <reference types="node" />
2
+ /// <reference types="node" />
2
3
  import * as bc from "batch-cluster";
3
4
  import { ApplicationRecordTags } from "./ApplicationRecordTags";
4
5
  import { ExifDate } from "./ExifDate";
package/dist/Tags.d.ts CHANGED
@@ -1469,6 +1469,8 @@ export interface MakerNotesTags {
1469
1469
  AIServoTrackingMethod?: string;
1470
1470
  /** ☆☆☆☆ ✔ Example: "Standard" */
1471
1471
  AIServoTrackingSensitivity?: string;
1472
+ /** ☆☆☆☆ ✔ Example: "Off; Object Not Found" */
1473
+ AISubjectTrackingMode?: string;
1472
1474
  /** ☆☆☆☆ ✔ Example: 0 */
1473
1475
  AccelerationTracking?: number;
1474
1476
  /** ☆☆☆☆ ✔ Example: "0.9421226483 0.0351725654 -0.3452420701" */
@@ -3711,8 +3713,6 @@ export interface MakerNotesTags {
3711
3713
  SpotMeterLinkToAFPoint?: string;
3712
3714
  /** ☆☆☆☆ ✔ Example: "Tripod high resolution" */
3713
3715
  StackedImage?: string;
3714
- /** ☆☆☆☆ ✔ Example: "30 s" */
3715
- StandbyMonitorOffTime?: string;
3716
3716
  /** ☆☆☆☆ ✔ Example: "6 s" */
3717
3717
  StandbyTimer?: string;
3718
3718
  /** ☆☆☆☆ ✔ Example: "Default (from LV)" */
@@ -4494,8 +4494,8 @@ export interface XMPTags {
4494
4494
  * devices (like iPhones) An example value, JSON stringified, follows the
4495
4495
  * popularity ratings.
4496
4496
  *
4497
- * Autogenerated by "yarn mktags" by ExifTool 12.40 on Wed Apr 13 2022.
4498
- * 2904 unique tags were found in 9968 photo and video files.
4497
+ * Autogenerated by "yarn mktags" by ExifTool 12.42 on Sat Jun 25 2022.
4498
+ * 2919 unique tags were found in 9968 photo and video files.
4499
4499
  */
4500
4500
  export interface Tags extends APP12Tags, APP14Tags, APP1Tags, APP4Tags, APP5Tags, APP6Tags, ApplicationRecordTags, CompositeTags, EXIFTags, ExifToolTags, FileTags, FlashPixTags, ICCProfileTags, IPTCTags, JFIFTags, MPFTags, MakerNotesTags, MetaTags, PanasonicRawTags, PhotoshopTags, PrintIMTags, QuickTimeTags, RAFTags, RIFFTags, XMPTags {
4501
4501
  errors?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exiftool-vendored",
3
- "version": "16.4.0",
3
+ "version": "16.5.0",
4
4
  "description": "Efficient, cross-platform access to ExifTool",
5
5
  "main": "./dist/ExifTool.js",
6
6
  "types": "./dist/ExifTool.d.ts",
@@ -19,36 +19,17 @@
19
19
  "prettier": "prettier --write src/*.ts src/**/*.ts",
20
20
  "pretest": "run-p lint compile",
21
21
  "test": "mocha 'dist/*.spec.js'",
22
- "report": "yarn test && nyc report -r html",
23
22
  "docs:1": "typedoc --options .typedoc.js",
24
23
  "docs:3": "cp .serve.json docs/serve.json",
25
24
  "docs:4": "touch docs/.nojekyll",
26
25
  "docs:5": "yarn serve docs",
27
- "docs": "run-s docs:*",
28
- "xx.prep:0": "bash -c 'for i in ../exiftool-vendored* ; do (cd $i ; git stash -u) ; done'",
29
- "prep:1": "bash -c 'for i in ../exiftool-vendored* ; do (cd $i ; git pull) ; done'",
30
- "prep:2": "bash -c 'for i in ../exiftool-vendored* ; do (cd $i ; ncu -u) ; done'",
31
- "prep:3": "bash -c 'rm -rf ../exiftool-vendored./node_modules ../exiftool-vendored*/yarn.lock'",
32
- "prep:4": "bash -c 'for i in ../exiftool-vendored* ; do (cd $i ; yarn install) ; done'",
33
- "prep": "run-s prep:*",
34
- "update:0": "bash -c '(cd ../exiftool-vendored.pl ; rm -rf node_modules yarn.lock ; ncu -u ; yarn ; ./update.sh)'",
35
- "update:1": "bash -c '(cd ../exiftool-vendored.exe ; ./update.sh)'",
36
- "update:2": "echo 'now git commit and np, then ncu here.'",
37
- "update": "run-s update:*",
38
- "preu": "npm i -g npm-check-updates",
39
- "u": "ncu -u ; yarn"
26
+ "docs": "run-s docs:*"
40
27
  },
41
28
  "repository": {
42
29
  "type": "git",
43
30
  "url": "https://github.com/photostructure/exiftool-vendored.js.git"
44
31
  },
45
32
  "release-it": {
46
- "hooks": {
47
- "before:init": [
48
- "yarn install",
49
- "yarn test"
50
- ]
51
- },
52
33
  "github": {
53
34
  "release": true
54
35
  }
@@ -85,47 +66,46 @@
85
66
  "@types/fs-extra": "^9.0.13",
86
67
  "@types/globule": "^1.1.4",
87
68
  "@types/he": "^1.1.2",
88
- "@types/mocha": "^9.1.0",
89
- "@types/node": "^17.0.25",
69
+ "@types/mocha": "^9.1.1",
70
+ "@types/node": "^18.0.0",
90
71
  "@types/progress": "^2.0.5",
91
72
  "@types/rimraf": "^3.0.2",
92
73
  "@types/tar-fs": "^2.0.1",
93
74
  "@types/tmp": "^0.2.3",
94
75
  "@types/xmldom": "^0.1.31",
95
- "@typescript-eslint/eslint-plugin": "^5.20.0",
96
- "@typescript-eslint/parser": "^5.20.0",
76
+ "@typescript-eslint/eslint-plugin": "^5.29.0",
77
+ "@typescript-eslint/parser": "^5.29.0",
97
78
  "chai": "^4.3.6",
98
79
  "chai-as-promised": "^7.1.1",
99
80
  "chai-subset": "^1.6.0",
100
- "eslint": "^8.13.0",
81
+ "eslint": "^8.18.0",
101
82
  "eslint-plugin-import": "^2.26.0",
102
83
  "eslint-plugin-node": "^11.1.0",
103
84
  "extract-zip": "^2.0.1",
104
85
  "fs-extra": "^10.1.0",
105
- "globule": "^1.3.3",
106
- "mocha": "^9.2.2",
86
+ "globule": "^1.3.4",
87
+ "mocha": "^10.0.0",
107
88
  "npm-run-all": "^4.1.5",
108
- "prettier": "^2.6.2",
89
+ "prettier": "^2.7.1",
109
90
  "progress": "^2.0.3",
110
91
  "rimraf": "^3.0.2",
111
92
  "serve": "^13.0.2",
112
93
  "source-map-support": "^0.5.21",
113
- "tar-fs": "^2.1.1",
114
94
  "tmp": "^0.2.1",
115
- "typedoc": "^0.22.15",
116
- "typescript": "~4.6.3",
95
+ "typedoc": "^0.22.18",
96
+ "typescript": "~4.7.4",
117
97
  "@xmldom/xmldom": "^0.8.2",
118
98
  "xpath": "^0.0.32"
119
99
  },
120
100
  "dependencies": {
121
- "@types/luxon": "^2.3.1",
122
- "batch-cluster": "^10.4.1",
101
+ "@types/luxon": "^2.3.2",
102
+ "batch-cluster": "^10.4.2",
123
103
  "he": "^1.2.0",
124
- "luxon": "^2.3.2",
104
+ "luxon": "^2.4.0",
125
105
  "tz-lookup": "^6.1.25"
126
106
  },
127
107
  "optionalDependencies": {
128
- "exiftool-vendored.exe": "12.41.0",
129
- "exiftool-vendored.pl": "12.41.0"
108
+ "exiftool-vendored.exe": "12.42.0",
109
+ "exiftool-vendored.pl": "12.42.0"
130
110
  }
131
111
  }