hazo_files 3.1.1 → 3.2.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.
Files changed (2) hide show
  1. package/CHANGE_LOG.md +28 -0
  2. package/package.json +18 -27
package/CHANGE_LOG.md CHANGED
@@ -5,6 +5,34 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## 3.2.0 — 2026-08-04
9
+
10
+ ### Fixed
11
+
12
+ Moved 3 packages from optional `peerDependencies` to `dependencies`. Each is imported
13
+ statically at the top level of this package's own `dist/`, but was declared as
14
+ an *optional* peer — and npm never auto-installs an optional peer, under any
15
+ `legacy-peer-deps` setting. The result was a package that could not run as
16
+ shipped: a consumer installed it, imported it, and the build failed with
17
+ module-not-found on packages it had never heard of and had no reason to
18
+ declare. They are implementation details of this package, so this package now
19
+ brings them.
20
+
21
+ - @dnd-kit/core@^6.0.0
22
+ - @dnd-kit/sortable@^8.0.0
23
+ - @dnd-kit/utilities@^3.0.0
24
+
25
+
26
+ ## 3.1.2 — 2026-08-04
27
+
28
+ ### Fixed
29
+
30
+ Widened stale host-framework peer ranges that excluded currently-shipping
31
+ majors and made a strict install unsatisfiable for React 19 consumers:
32
+
33
+ - `react` / `react-dom`: `^18.0.0` -> `^18.0.0 || ^19.0.0`
34
+
35
+
8
36
  ## 3.1.0 — 2026-06-11
9
37
 
10
38
  **Additive** — no breaking changes from 3.0.x.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hazo_files",
3
- "version": "3.1.1",
3
+ "version": "3.2.0",
4
4
  "description": "File management including integration to cloud files",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -86,8 +86,11 @@
86
86
  },
87
87
  "homepage": "https://github.com/pub12/hazo_files#readme",
88
88
  "dependencies": {
89
- "ini": "^4.1.3",
89
+ "@dnd-kit/core": "^6.0.0",
90
+ "@dnd-kit/sortable": "^8.0.0",
91
+ "@dnd-kit/utilities": "^3.0.0",
90
92
  "googleapis": "^140",
93
+ "ini": "^4.1.3",
91
94
  "mime-types": "^2.1.35"
92
95
  },
93
96
  "devDependencies": {
@@ -102,9 +105,9 @@
102
105
  "@types/react": "^18.3.3",
103
106
  "@types/react-dom": "^18.3.0",
104
107
  "dropbox": "^10.34.0",
105
- "hazo_core": "^1.2.1",
106
- "hazo_jobs": "^0.14.0",
107
- "hazo_llm_api": "^2.1.0",
108
+ "hazo_core": "^2.0.0",
109
+ "hazo_jobs": "^0.17.0",
110
+ "hazo_llm_api": "^2.3.0",
108
111
  "jsdom": "^28.1.0",
109
112
  "react": "^18.2.0",
110
113
  "react-dom": "^18.2.0",
@@ -115,35 +118,23 @@
115
118
  "xxhash-wasm": "^1.1.0"
116
119
  },
117
120
  "peerDependencies": {
118
- "@dnd-kit/core": "^6.0.0",
119
- "@dnd-kit/sortable": "^8.0.0",
120
- "@dnd-kit/utilities": "^3.0.0",
121
121
  "dropbox": "^10.0.0",
122
122
  "googleapis": "^140.0.0",
123
- "hazo_connect": "^3.9.2",
124
- "hazo_core": "^1.2.1",
125
- "hazo_debug": "^3.1.1",
126
- "hazo_jobs": "^0.14.0",
127
- "hazo_llm_api": "^2.1.0",
128
- "hazo_logs": "^2.1.1",
129
- "hazo_secure": "^1.3.0",
130
- "hazo_ui": "^4.10.0",
131
- "react": "^18.0.0",
132
- "react-dom": "^18.0.0",
123
+ "hazo_connect": "^4.0.0",
124
+ "hazo_core": "^2.0.0",
125
+ "hazo_debug": "^3.2.0",
126
+ "hazo_jobs": "^0.17.0",
127
+ "hazo_llm_api": "^2.3.0",
128
+ "hazo_logs": "^2.2.0",
129
+ "hazo_secure": "^1.7.1",
130
+ "hazo_ui": "^6.8.0",
131
+ "react": "^18.0.0 || ^19.0.0",
132
+ "react-dom": "^18.0.0 || ^19.0.0",
133
133
  "server-only": "^0.0.1",
134
134
  "sonner": "^2.0.7",
135
135
  "xxhash-wasm": "^1.0.0"
136
136
  },
137
137
  "peerDependenciesMeta": {
138
- "@dnd-kit/core": {
139
- "optional": true
140
- },
141
- "@dnd-kit/sortable": {
142
- "optional": true
143
- },
144
- "@dnd-kit/utilities": {
145
- "optional": true
146
- },
147
138
  "dropbox": {
148
139
  "optional": true
149
140
  },