@axiom-lattice/pg-stores 1.0.75 → 1.0.77

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiom-lattice/pg-stores",
3
- "version": "1.0.75",
3
+ "version": "1.0.77",
4
4
  "description": "PG stores implementation for Axiom Lattice framework",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -23,8 +23,8 @@
23
23
  "@langchain/langgraph-checkpoint-postgres": "1.0.0",
24
24
  "pg": "^8.16.3",
25
25
  "uuid": "^9.0.1",
26
- "@axiom-lattice/core": "2.1.84",
27
- "@axiom-lattice/protocols": "2.1.43"
26
+ "@axiom-lattice/protocols": "2.1.44",
27
+ "@axiom-lattice/core": "2.1.86"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/node": "^20.11.24",
@@ -37,7 +37,7 @@
37
37
  "scripts": {
38
38
  "build": "tsup src/index.ts --format cjs,esm --dts --sourcemap",
39
39
  "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
40
- "lint": "tsc --noEmit && node scripts/check-migration-versions.mjs",
40
+ "lint": "eslint src && tsc --noEmit && node scripts/check-migration-versions.mjs",
41
41
  "test": "jest",
42
42
  "clean": "rimraf dist"
43
43
  }
@@ -156,8 +156,6 @@ export class MigrationManager {
156
156
  // Release advisory lock
157
157
  await client.query("SELECT pg_advisory_unlock($1)", [lockId]);
158
158
  }
159
- } catch (error) {
160
- throw error;
161
159
  } finally {
162
160
  client.release();
163
161
  }