@mastra/pg 1.14.2 → 1.14.3-alpha.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @mastra/pg
2
2
 
3
+ ## 1.14.3-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Fixed buffered observation extraction metadata so stored OM chunks keep extracted values and extraction failures across memory storage adapters. ([#18655](https://github.com/mastra-ai/mastra/pull/18655))
8
+
9
+ - Updated dependencies [[`6f578ac`](https://github.com/mastra-ai/mastra/commit/6f578acba84930b406b2a0700b17cfdfaf5aae56), [`c01012f`](https://github.com/mastra-ai/mastra/commit/c01012f50368d29eb3fc3764df42d48291973d23), [`be875ed`](https://github.com/mastra-ai/mastra/commit/be875ed43f856742ce58529f531b5ea0ae6911f3), [`9eefdc0`](https://github.com/mastra-ai/mastra/commit/9eefdc0ac03f989718c6d835334940a977938895), [`7d112ca`](https://github.com/mastra-ai/mastra/commit/7d112ca17078479b2659b88ba1c85b936cfc111c)]:
10
+ - @mastra/core@1.48.0-alpha.10
11
+
3
12
  ## 1.14.2
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.14.2"
6
+ version: "1.14.3-alpha.0"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.14.2",
2
+ "version": "1.14.3-alpha.0",
3
3
  "package": "@mastra/pg",
4
4
  "exports": {},
5
5
  "modules": {}
@@ -6,6 +6,8 @@ Think of it as the agent's active thoughts or scratchpad – the key information
6
6
 
7
7
  This is useful for maintaining ongoing state that's always relevant and should always be available to the agent.
8
8
 
9
+ If you use [Observational Memory](https://mastra.ai/docs/memory/observational-memory), `observationalMemory.observation.manageWorkingMemory` lets OM update working memory for the agent.
10
+
9
11
  Working memory can persist at two different scopes:
10
12
 
11
13
  - **Resource-scoped** (default): Memory persists across all conversation threads for the same user
package/dist/index.cjs CHANGED
@@ -10503,7 +10503,9 @@ var MemoryPG = class _MemoryPG extends storage.MemoryStorage {
10503
10503
  createdAt: /* @__PURE__ */ new Date(),
10504
10504
  suggestedContinuation: input.chunk.suggestedContinuation,
10505
10505
  currentTask: input.chunk.currentTask,
10506
- threadTitle: input.chunk.threadTitle
10506
+ threadTitle: input.chunk.threadTitle,
10507
+ extractedValues: input.chunk.extractedValues,
10508
+ extractionFailures: input.chunk.extractionFailures
10507
10509
  };
10508
10510
  const lastBufferedAtTime = input.lastBufferedAtTime ? input.lastBufferedAtTime.toISOString() : null;
10509
10511
  const result = await this.#db.client.query(