@mastra/pg 1.9.3-alpha.0 → 1.9.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @mastra/pg
2
2
 
3
+ ## 1.9.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Fixed auto-migration for the `mastra_observational_memory` table to include the `reflectedObservationLineCount` column. Previously, upgrading from older versions would crash on `Memory.cloneThread()` because this column was missing from the `ifNotExists` migration list. ([#15892](https://github.com/mastra-ai/mastra/pull/15892))
8
+
9
+ - Updated dependencies [[`6db978c`](https://github.com/mastra-ai/mastra/commit/6db978c42e94e75540a504f7230086f0b5cd35f9), [`512a013`](https://github.com/mastra-ai/mastra/commit/512a013f285aa9c0aa8f08a35b2ce09f9938b017), [`e9becde`](https://github.com/mastra-ai/mastra/commit/e9becdeed9176b9f8392e557bde12b933f99cf7a), [`703a443`](https://github.com/mastra-ai/mastra/commit/703a44390c587d9c0b8ae94ec4edd8afb2a74044), [`808df1b`](https://github.com/mastra-ai/mastra/commit/808df1b39358b5f10b7317107e42b1fda7c87185)]:
10
+ - @mastra/core@1.29.1
11
+
3
12
  ## 1.9.3-alpha.0
4
13
 
5
14
  ### Patch Changes
@@ -3,7 +3,7 @@ name: mastra-pg
3
3
  description: Documentation for @mastra/pg. Use when working with @mastra/pg APIs, configuration, or implementation.
4
4
  metadata:
5
5
  package: "@mastra/pg"
6
- version: "1.9.3-alpha.0"
6
+ version: "1.9.3"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.9.3-alpha.0",
2
+ "version": "1.9.3",
3
3
  "package": "@mastra/pg",
4
4
  "exports": {},
5
5
  "modules": {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/pg",
3
- "version": "1.9.3-alpha.0",
3
+ "version": "1.9.3",
4
4
  "description": "Postgres provider for Mastra - includes both vector and db storage capabilities",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -31,12 +31,12 @@
31
31
  "@vitest/ui": "4.1.5",
32
32
  "eslint": "^10.2.1",
33
33
  "tsup": "^8.5.1",
34
- "typescript": "^5.9.3",
34
+ "typescript": "^6.0.3",
35
35
  "vitest": "4.1.5",
36
- "@internal/lint": "0.0.87",
37
- "@internal/storage-test-utils": "0.0.83",
38
- "@internal/types-builder": "0.0.62",
39
- "@mastra/core": "1.29.1-alpha.1"
36
+ "@internal/lint": "0.0.88",
37
+ "@internal/storage-test-utils": "0.0.84",
38
+ "@mastra/core": "1.29.1",
39
+ "@internal/types-builder": "0.0.63"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "@mastra/core": ">=1.4.0-0 <2.0.0-0"