@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/.eslintrc.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "root": true,
3
+ "env": {
4
+ "node": true,
5
+ "es2021": true
6
+ },
7
+ "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
8
+ "parser": "@typescript-eslint/parser",
9
+ "parserOptions": {
10
+ "ecmaVersion": 12,
11
+ "sourceType": "module"
12
+ },
13
+ "plugins": ["@typescript-eslint"],
14
+ "rules": {
15
+ "indent": "off",
16
+ "linebreak-style": ["warn", "unix"],
17
+ "semi": ["warn", "always"],
18
+ "no-unused-vars": "off",
19
+ "@typescript-eslint/no-unused-vars": ["warn"],
20
+ "@typescript-eslint/no-explicit-any": "off"
21
+ }
22
+ }
@@ -1,5 +1,5 @@
1
1
 
2
- > @axiom-lattice/pg-stores@1.0.75 build /home/runner/work/agentic/agentic/packages/pg-stores
2
+ > @axiom-lattice/pg-stores@1.0.77 build /home/runner/work/agentic/agentic/packages/pg-stores
3
3
  > tsup src/index.ts --format cjs,esm --dts --sourcemap
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -8,13 +8,13 @@
8
8
  CLI Target: es2020
9
9
  CJS Build start
10
10
  ESM Build start
11
- CJS dist/index.js 231.21 KB
12
- CJS dist/index.js.map 427.90 KB
13
- CJS ⚡️ Build success in 497ms
14
- ESM dist/index.mjs 225.59 KB
15
- ESM dist/index.mjs.map 427.71 KB
16
- ESM ⚡️ Build success in 498ms
11
+ CJS dist/index.js 231.17 KB
12
+ CJS dist/index.js.map 427.83 KB
13
+ CJS ⚡️ Build success in 644ms
14
+ ESM dist/index.mjs 225.55 KB
15
+ ESM dist/index.mjs.map 427.64 KB
16
+ ESM ⚡️ Build success in 644ms
17
17
  DTS Build start
18
- DTS ⚡️ Build success in 15121ms
18
+ DTS ⚡️ Build success in 17518ms
19
19
  DTS dist/index.d.ts 53.28 KB
20
20
  DTS dist/index.d.mts 53.28 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @axiom-lattice/pg-stores
2
2
 
3
+ ## 1.0.77
4
+
5
+ ### Patch Changes
6
+
7
+ - 4db8e10: lint issue
8
+ - Updated dependencies [4db8e10]
9
+ - @axiom-lattice/protocols@2.1.44
10
+ - @axiom-lattice/core@2.1.86
11
+
12
+ ## 1.0.76
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [9571787]
17
+ - @axiom-lattice/core@2.1.85
18
+
3
19
  ## 1.0.75
4
20
 
5
21
  ### Patch Changes
package/dist/index.js CHANGED
@@ -178,8 +178,6 @@ var MigrationManager = class {
178
178
  } finally {
179
179
  await client.query("SELECT pg_advisory_unlock($1)", [lockId]);
180
180
  }
181
- } catch (error) {
182
- throw error;
183
181
  } finally {
184
182
  client.release();
185
183
  }