@mastra/memory 0.15.7-alpha.0 → 0.15.7-alpha.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/CHANGELOG.md +14 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @mastra/memory
2
2
 
3
+ ## 0.15.7-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - feat(pg): add flexible PostgreSQL configuration with shared types ([#8103](https://github.com/mastra-ai/mastra/pull/8103))
8
+ - Add support for multiple connection methods: connectionString, host/port/database, and Cloud SQL
9
+ - Introduce shared PostgresConfig type with generic SSL support (ISSLConfig for pg-promise, ConnectionOptions for pg)
10
+ - Add pgPoolOptions support to PgVector for advanced pool configuration
11
+ - Create shared validation helpers to reduce code duplication
12
+ - Maintain backward compatibility with existing configurations
13
+
14
+ - Updated dependencies [[`1ed9670`](https://github.com/mastra-ai/mastra/commit/1ed9670d3ca50cb60dc2e517738c5eef3968ed27), [`158381d`](https://github.com/mastra-ai/mastra/commit/158381d39335be934b81ef8a1947bccace492c25), [`fb703b9`](https://github.com/mastra-ai/mastra/commit/fb703b9634eeaff1a6eb2b5531ce0f9e8fb04727), [`37a2314`](https://github.com/mastra-ai/mastra/commit/37a23148e0e5a3b40d4f9f098b194671a8a49faf), [`05a9dee`](https://github.com/mastra-ai/mastra/commit/05a9dee3d355694d28847bfffb6289657fcf7dfa), [`e3c1077`](https://github.com/mastra-ai/mastra/commit/e3c107763aedd1643d3def5df450c235da9ff76c), [`1bccdb3`](https://github.com/mastra-ai/mastra/commit/1bccdb33eb90cbeba2dc5ece1c2561fb774b26b6), [`5ef944a`](https://github.com/mastra-ai/mastra/commit/5ef944a3721d93105675cac2b2311432ff8cc393), [`d6b186f`](https://github.com/mastra-ai/mastra/commit/d6b186fb08f1caf1b86f73d3a5ee88fb999ca3be), [`65493b3`](https://github.com/mastra-ai/mastra/commit/65493b31c36f6fdb78f9679f7e1ecf0c250aa5ee), [`a998b8f`](https://github.com/mastra-ai/mastra/commit/a998b8f858091c2ec47683e60766cf12d03001e4), [`8a37bdd`](https://github.com/mastra-ai/mastra/commit/8a37bddb6d8614a32c5b70303d583d80c620ea61)]:
15
+ - @mastra/core@0.21.0-alpha.1
16
+
3
17
  ## 0.15.7-alpha.0
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/memory",
3
- "version": "0.15.7-alpha.0",
3
+ "version": "0.15.7-alpha.1",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -61,9 +61,9 @@
61
61
  "typescript": "^5.8.3",
62
62
  "typescript-eslint": "^8.38.0",
63
63
  "vitest": "^3.2.4",
64
- "@mastra/core": "0.21.0-alpha.0",
64
+ "@internal/lint": "0.0.48",
65
65
  "@internal/types-builder": "0.0.23",
66
- "@internal/lint": "0.0.48"
66
+ "@mastra/core": "0.21.0-alpha.1"
67
67
  },
68
68
  "peerDependencies": {
69
69
  "@mastra/core": ">=0.20.1-0 <0.22.0-0",