@resvary/postgres 0.7.0 → 0.8.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/README.md +3 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -19,6 +19,9 @@ Pass either `connectionString` or an existing `pg.Pool`. A store created from a
19
19
 
20
20
  Credit transactions and bundled receipt ledger operations run at `SERIALIZABLE` isolation with bounded retry. Schema v3 adds grant policies, credit lots, reservation allocations, and guarded legacy backfill. Apply migrations before starting application or worker processes.
21
21
 
22
+ Resvary 0.8 keeps schema v3. Graduated/package price definitions and their receipt line items use
23
+ the existing JSONB payloads, so upgrading from 0.7 requires no database migration.
24
+
22
25
  CLI commands:
23
26
 
24
27
  ```text
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resvary/postgres",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "description": "Postgres persistence and migration tooling for Resvary",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -41,7 +41,7 @@
41
41
  "directory": "packages/postgres"
42
42
  },
43
43
  "dependencies": {
44
- "@resvary/sdk": "0.7.0",
44
+ "@resvary/sdk": "0.8.0",
45
45
  "pg": "^8.16.3"
46
46
  },
47
47
  "devDependencies": {
@@ -51,5 +51,5 @@
51
51
  "vitest": "^4.1.11"
52
52
  },
53
53
  "license": "Apache-2.0",
54
- "gitHead": "fa0365a648186aa0330da25268a3f6626d0db8a3"
54
+ "gitHead": "1372d2c0dcba8ea1cd25736848d5ec22a3e34fbf"
55
55
  }