hazo_images 1.9.0 → 1.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/CHANGE_LOG.md +21 -0
- package/package.json +7 -13
package/CHANGE_LOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# hazo_images Change Log
|
|
2
2
|
|
|
3
|
+
## 1.10.0 — 2026-08-04
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
Moved one package from optional `peerDependencies` to `dependencies`. It is
|
|
8
|
+
imported statically at the top level of this package's own `dist/`, but was
|
|
9
|
+
declared as an *optional* peer — and npm never auto-installs an optional peer,
|
|
10
|
+
under any `legacy-peer-deps` setting. The result was a package that could not
|
|
11
|
+
run as shipped: a consumer installed it, imported it, and the build failed with
|
|
12
|
+
module-not-found on a package it had never heard of and had no reason to
|
|
13
|
+
declare. It is an implementation detail of this package, so this package now
|
|
14
|
+
brings it.
|
|
15
|
+
|
|
16
|
+
- react-konva@^18.2.16 || ^19.2.5
|
|
17
|
+
|
|
18
|
+
Dropped the `optional` flag on `react` in `peerDependenciesMeta`. It is
|
|
19
|
+
imported statically and this package cannot render without it, so marking
|
|
20
|
+
it optional understated a hard requirement. It stays a peer — the host controls the
|
|
21
|
+
version and a single instance must be shared.
|
|
22
|
+
|
|
23
|
+
|
|
3
24
|
## 1.9.0 — 2026-07-21
|
|
4
25
|
|
|
5
26
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hazo_images",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.0",
|
|
4
4
|
"description": "Image processing pipeline for the hazo ecosystem — Sharp wrapper, thumbnail generation, EXIF handling, and hazo_files integration helper",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -48,18 +48,18 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"ini": "^4.1.0",
|
|
51
|
+
"react-konva": "^18.2.16 || ^19.2.5",
|
|
51
52
|
"zod": "^4.1.12"
|
|
52
53
|
},
|
|
53
54
|
"peerDependencies": {
|
|
54
|
-
"hazo_core": "^
|
|
55
|
-
"hazo_files": "^3.
|
|
56
|
-
"hazo_theme": "^1.0
|
|
57
|
-
"hazo_ui": "^6.
|
|
55
|
+
"hazo_core": "^2.0.0",
|
|
56
|
+
"hazo_files": "^3.2.0",
|
|
57
|
+
"hazo_theme": "^1.3.0",
|
|
58
|
+
"hazo_ui": "^6.8.0",
|
|
58
59
|
"konva": "^10.3.0",
|
|
59
60
|
"lucide-react": "^0.553.0",
|
|
60
61
|
"react": "^18.0.0 || ^19.0.0",
|
|
61
62
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
62
|
-
"react-konva": "^18.2.16 || ^19.2.5",
|
|
63
63
|
"sharp": "^0.33.0"
|
|
64
64
|
},
|
|
65
65
|
"peerDependenciesMeta": {
|
|
@@ -75,15 +75,9 @@
|
|
|
75
75
|
"konva": {
|
|
76
76
|
"optional": true
|
|
77
77
|
},
|
|
78
|
-
"react": {
|
|
79
|
-
"optional": true
|
|
80
|
-
},
|
|
81
78
|
"react-dom": {
|
|
82
79
|
"optional": true
|
|
83
80
|
},
|
|
84
|
-
"react-konva": {
|
|
85
|
-
"optional": true
|
|
86
|
-
},
|
|
87
81
|
"sharp": {
|
|
88
82
|
"optional": true
|
|
89
83
|
},
|
|
@@ -95,7 +89,7 @@
|
|
|
95
89
|
"@types/jest": "^30.0.0",
|
|
96
90
|
"@types/node": "^22.10.0",
|
|
97
91
|
"@types/react": "^18.3.3",
|
|
98
|
-
"hazo_core": "^
|
|
92
|
+
"hazo_core": "^2.0.0",
|
|
99
93
|
"jest": "^30.2.0",
|
|
100
94
|
"jest-environment-node": "^30.2.0",
|
|
101
95
|
"konva": "^10.3.0",
|