hazo_audit 2.1.0 → 2.1.1

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/README.md +5 -1
  2. package/package.json +12 -12
package/README.md CHANGED
@@ -9,10 +9,14 @@ Zero changes to `hazo_connect`. Zero per-route boilerplate. Add a new
9
9
  audited table with an INI block, not a code change.
10
10
 
11
11
  ```
12
- npm i hazo_audit
12
+ npm i hazo_audit hazo_core hazo_connect hazo_config hazo_logs hazo_auth hazo_ui
13
13
  npx hazo-audit-migrate --adapter=pg --connection-string=$DATABASE_URL
14
14
  ```
15
15
 
16
+ `hazo_core`, `hazo_connect`, and `hazo_config` are required peers; `hazo_logs`,
17
+ `hazo_auth`, and `hazo_ui` are optional (only `hazo_ui` is needed for the React
18
+ components).
19
+
16
20
  ## What it does
17
21
 
18
22
  ```ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hazo_audit",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Field-level audit trail for hazo_connect-backed apps. Attach to any adapter via wrapWithAudit() to auto-capture writes; ships worker, Next.js routes, and React UI primitives.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -67,12 +67,12 @@
67
67
  "tailwind-merge": "^3.5.0"
68
68
  },
69
69
  "peerDependencies": {
70
- "hazo_auth": "^9.0.0",
71
- "hazo_config": "^2.1.5",
72
- "hazo_connect": "^3.0.0",
70
+ "hazo_auth": "^9.1.1",
71
+ "hazo_config": "^2.1.6",
72
+ "hazo_connect": "^3.2.0",
73
73
  "hazo_core": "^1.0.0",
74
- "hazo_logs": "^2.0.0",
75
- "hazo_ui": "^3.1.0",
74
+ "hazo_logs": "^2.0.2",
75
+ "hazo_ui": "^3.1.3",
76
76
  "next": "^14.0.0 || ^16.0.0",
77
77
  "react": "^18.0.0 || ^19.0.0",
78
78
  "react-dom": "^18.0.0 || ^19.0.0"
@@ -103,12 +103,12 @@
103
103
  "@types/node": "^20.14.10",
104
104
  "@types/react": "^18.3.3",
105
105
  "@types/react-dom": "^18.3.0",
106
- "hazo_auth": "^9.0.0",
107
- "hazo_config": "^2.1.6",
108
- "hazo_connect": "^3.0.0",
109
- "hazo_core": "^1.0.0",
110
- "hazo_logs": "^2.0.1",
111
- "hazo_ui": "^3.1.0",
106
+ "hazo_auth": "^9.1.1",
107
+ "hazo_config": "^2.1.9",
108
+ "hazo_connect": "^3.2.0",
109
+ "hazo_core": "^1.0.3",
110
+ "hazo_logs": "^2.0.3",
111
+ "hazo_ui": "^3.2.1",
112
112
  "jest": "^30.2.0",
113
113
  "jest-environment-node": "^30.2.0",
114
114
  "next": "^14.2.33",