@mastra/cloudflare-d1 0.13.1-alpha.1 → 0.13.1-alpha.2

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/cloudflare-d1
2
2
 
3
+ ## 0.13.1-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - clean up console logs in monorepo ([#7926](https://github.com/mastra-ai/mastra/pull/7926))
8
+
9
+ - Updated dependencies [[`197cbb2`](https://github.com/mastra-ai/mastra/commit/197cbb248fc8cb4bbf61bf70b770f1388b445df2), [`6590763`](https://github.com/mastra-ai/mastra/commit/65907630ef4bf4127067cecd1cb21b56f55d5f1b), [`c2eade3`](https://github.com/mastra-ai/mastra/commit/c2eade3508ef309662f065e5f340d7840295dd53), [`222965a`](https://github.com/mastra-ai/mastra/commit/222965a98ce8197b86673ec594244650b5960257), [`0324ceb`](https://github.com/mastra-ai/mastra/commit/0324ceb8af9d16c12a531f90e575f6aab797ac81), [`0f9d227`](https://github.com/mastra-ai/mastra/commit/0f9d227890a98db33865abbea39daf407cd55ef7), [`de056a0`](https://github.com/mastra-ai/mastra/commit/de056a02cbb43f6aa0380ab2150ea404af9ec0dd), [`c93532a`](https://github.com/mastra-ai/mastra/commit/c93532a340b80e4dd946d4c138d9381de5f70399), [`6cb1fcb`](https://github.com/mastra-ai/mastra/commit/6cb1fcbc8d0378ffed0d17784c96e68f30cb0272), [`2685a78`](https://github.com/mastra-ai/mastra/commit/2685a78f224b8b04e20d4fab5ac1adb638190071), [`239b5a4`](https://github.com/mastra-ai/mastra/commit/239b5a497aeae2e8b4d764f46217cfff2284788e)]:
10
+ - @mastra/core@0.17.0-alpha.6
11
+
3
12
  ## 0.13.1-alpha.1
4
13
 
5
14
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -1885,7 +1885,7 @@ var TracesStorageD1 = class extends storage.TracesStorage {
1885
1885
  const allDataResult = await this.operations.executeQuery(
1886
1886
  createSqlBuilder().select("*").from(fullTableName).where("1=1").build()
1887
1887
  );
1888
- console.log("allDataResult", allDataResult);
1888
+ console.info("allDataResult", allDataResult);
1889
1889
  const countResult = await this.operations.executeQuery(countQuery.build());
1890
1890
  const total = Number(countResult?.[0]?.count ?? 0);
1891
1891
  dataQuery.orderBy("startTime", "DESC").limit(perPage).offset(page * perPage);