@mastra/upstash 1.1.0 → 1.1.1-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/upstash
2
2
 
3
+ ## 1.1.1-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Track `suspendedAt` and `suspendPayload` on background tasks. SQL adapters auto-migrate the new columns via `alterTable`. ([#16260](https://github.com/mastra-ai/mastra/pull/16260))
8
+
9
+ - Updated dependencies [[`9f17410`](https://github.com/mastra-ai/mastra/commit/9f1741080def23d42ee50b39887a385ae316a3c6), [`c6eb39e`](https://github.com/mastra-ai/mastra/commit/c6eb39ea6dca381c6563cb240237fbe608e02f93), [`900d086`](https://github.com/mastra-ai/mastra/commit/900d086bb737b9cf2fcf68f11b0389b801a2738c), [`4c0e286`](https://github.com/mastra-ai/mastra/commit/4c0e28637c9cfb4f416549b55e97ebfa13319dfc), [`25184ff`](https://github.com/mastra-ai/mastra/commit/25184ffaf1293ec95119426eb1a1f8d38831b96c), [`aebde9c`](https://github.com/mastra-ai/mastra/commit/aebde9cfacf56592c6b6350cae721740fe090b8a)]:
10
+ - @mastra/core@1.33.0-alpha.4
11
+
3
12
  ## 1.1.0
4
13
 
5
14
  ### Minor Changes
@@ -3,7 +3,7 @@ name: mastra-upstash
3
3
  description: Documentation for @mastra/upstash. Use when working with @mastra/upstash APIs, configuration, or implementation.
4
4
  metadata:
5
5
  package: "@mastra/upstash"
6
- version: "1.1.0"
6
+ version: "1.1.1-alpha.0"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.1.0",
2
+ "version": "1.1.1-alpha.0",
3
3
  "package": "@mastra/upstash",
4
4
  "exports": {
5
5
  "RedisServerCache": {
package/dist/index.cjs CHANGED
@@ -171,11 +171,13 @@ function toStorageRecord(task) {
171
171
  args: task.args,
172
172
  result: task.result ?? null,
173
173
  error: task.error ?? null,
174
+ suspend_payload: task.suspendPayload ?? null,
174
175
  retry_count: task.retryCount,
175
176
  max_retries: task.maxRetries,
176
177
  timeout_ms: task.timeoutMs,
177
178
  createdAt: task.createdAt.toISOString(),
178
179
  startedAt: task.startedAt?.toISOString() ?? null,
180
+ suspendedAt: task.suspendedAt?.toISOString() ?? null,
179
181
  completedAt: task.completedAt?.toISOString() ?? null
180
182
  };
181
183
  }
@@ -192,11 +194,13 @@ function fromStorageRecord(record) {
192
194
  runId: record.run_id ?? "",
193
195
  result: record.result ?? void 0,
194
196
  error: record.error ?? void 0,
197
+ suspendPayload: record.suspend_payload ?? void 0,
195
198
  retryCount: Number(record.retry_count ?? 0),
196
199
  maxRetries: Number(record.max_retries ?? 0),
197
200
  timeoutMs: Number(record.timeout_ms ?? 3e5),
198
201
  createdAt: new Date(record.createdAt),
199
202
  startedAt: record.startedAt ? new Date(record.startedAt) : void 0,
203
+ suspendedAt: record.suspendedAt ? new Date(record.suspendedAt) : void 0,
200
204
  completedAt: record.completedAt ? new Date(record.completedAt) : void 0
201
205
  };
202
206
  }
@@ -224,8 +228,10 @@ var BackgroundTasksUpstash = class extends storage.BackgroundTasksStorage {
224
228
  if ("status" in update) merged.status = update.status;
225
229
  if ("result" in update) merged.result = update.result;
226
230
  if ("error" in update) merged.error = update.error;
231
+ if ("suspendPayload" in update) merged.suspendPayload = update.suspendPayload;
227
232
  if ("retryCount" in update) merged.retryCount = update.retryCount;
228
233
  if ("startedAt" in update) merged.startedAt = update.startedAt;
234
+ if ("suspendedAt" in update) merged.suspendedAt = update.suspendedAt;
229
235
  if ("completedAt" in update) merged.completedAt = update.completedAt;
230
236
  const record = toStorageRecord(merged);
231
237
  const { key, processedRecord } = processRecord(storage.TABLE_BACKGROUND_TASKS, record);
@@ -265,6 +271,9 @@ var BackgroundTasksUpstash = class extends storage.BackgroundTasksStorage {
265
271
  if (filter.toolName) {
266
272
  tasks = tasks.filter((t) => t.toolName === filter.toolName);
267
273
  }
274
+ if (filter.toolCallId) {
275
+ tasks = tasks.filter((t) => t.toolCallId === filter.toolCallId);
276
+ }
268
277
  const dateCol = filter.dateFilterBy ?? "createdAt";
269
278
  if (filter.fromDate) {
270
279
  tasks = tasks.filter((t) => {