@mastra/lance 0.3.11 → 0.3.12-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,15 @@
1
1
  # @mastra/lance
2
2
 
3
+ ## 0.3.12-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Add restart method to workflow run that allows restarting an active workflow run ([#10703](https://github.com/mastra-ai/mastra/pull/10703))
8
+ Add status filter to `getWorkflowRuns`
9
+ Add automatic restart to restart active workflow runs when server starts
10
+ - Updated dependencies [[`5cc85aa`](https://github.com/mastra-ai/mastra/commit/5cc85aa4329773cac8314f3aa0146227b6b158e4), [`c53f8e6`](https://github.com/mastra-ai/mastra/commit/c53f8e68df42464935f9a63eb0fc765a65aacb83), [`386ab43`](https://github.com/mastra-ai/mastra/commit/386ab4350cf2a814fb4ac0a5fc6983ca93158ffe), [`2b62302`](https://github.com/mastra-ai/mastra/commit/2b623027a9d65c1dbc963bf651e9e6a9d09da1fa), [`7d85da4`](https://github.com/mastra-ai/mastra/commit/7d85da42a5fab56009a959a9c20328558d14f4b5), [`3d7c5bd`](https://github.com/mastra-ai/mastra/commit/3d7c5bdbee1b2693cd45bf207b960dd9b7277680), [`31b381e`](https://github.com/mastra-ai/mastra/commit/31b381efb48e031c0ecc46bc6e410ae6e67b88e5), [`e77a5f9`](https://github.com/mastra-ai/mastra/commit/e77a5f9718dc418e29e3c8a389299ed6dc0a6401), [`b069af5`](https://github.com/mastra-ai/mastra/commit/b069af514c4dcfc4fdcb164303569bfff1c26e3d), [`7dc8304`](https://github.com/mastra-ai/mastra/commit/7dc830420296db516b86dcec663e54d0309b8fb8), [`6942109`](https://github.com/mastra-ai/mastra/commit/694210903c70e3c26b5ce8ca4f4637ca2d9eb369), [`62d13f4`](https://github.com/mastra-ai/mastra/commit/62d13f4d1db1c16742831f210fe4c2caf8a26d57), [`358ab98`](https://github.com/mastra-ai/mastra/commit/358ab98024c388e383aca15616e8988bf4a5b66e)]:
11
+ - @mastra/core@0.24.7-alpha.1
12
+
3
13
  ## 0.3.11
4
14
 
5
15
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -1885,11 +1885,13 @@ var StoreWorkflowsLance = class extends storage.WorkflowsStorage {
1885
1885
  } else {
1886
1886
  createdAt = now;
1887
1887
  }
1888
+ const { status, value, ...rest } = snapshot;
1888
1889
  const record = {
1889
1890
  workflow_name: workflowName,
1890
1891
  run_id: runId,
1891
1892
  resourceId,
1892
- snapshot: JSON.stringify(snapshot),
1893
+ snapshot: JSON.stringify({ status, value, ...rest }),
1894
+ // this is to ensure status is always just before value, for when querying the db by status
1893
1895
  createdAt,
1894
1896
  updatedAt: now
1895
1897
  };
@@ -1959,6 +1961,10 @@ var StoreWorkflowsLance = class extends storage.WorkflowsStorage {
1959
1961
  if (args?.workflowName) {
1960
1962
  conditions.push(`workflow_name = '${args.workflowName.replace(/'/g, "''")}'`);
1961
1963
  }
1964
+ if (args?.status) {
1965
+ const escapedStatus = args.status.replace(/\\/g, "\\\\").replace(/'/g, "''").replace(/%/g, "\\%").replace(/_/g, "\\_");
1966
+ conditions.push(`\`snapshot\` LIKE '%"status":"${escapedStatus}","value"%'`);
1967
+ }
1962
1968
  if (args?.resourceId) {
1963
1969
  conditions.push(`\`resourceId\` = '${args.resourceId}'`);
1964
1970
  }
@@ -1992,7 +1998,7 @@ var StoreWorkflowsLance = class extends storage.WorkflowsStorage {
1992
1998
  id: "LANCE_STORE_GET_WORKFLOW_RUNS_FAILED",
1993
1999
  domain: error.ErrorDomain.STORAGE,
1994
2000
  category: error.ErrorCategory.THIRD_PARTY,
1995
- details: { namespace: args?.namespace ?? "", workflowName: args?.workflowName ?? "" }
2001
+ details: { resourceId: args?.resourceId ?? "", workflowName: args?.workflowName ?? "" }
1996
2002
  },
1997
2003
  error$1
1998
2004
  );