@mastra/turso 0.1.3-alpha.2 → 0.1.3-alpha.3

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @mastra/turso
2
2
 
3
- A Mastra storage adapter for local [Turso Database](https://github.com/tursodatabase/turso) files.
3
+ Use the Turso storage adapter to persist Mastra agents, workflows, memory, and other storage domains in a local database file.
4
4
 
5
5
  ## Installation
6
6
 
@@ -21,16 +21,14 @@ const storage = new TursoStore({
21
21
  await storage.init();
22
22
  ```
23
23
 
24
- The adapter supports macOS arm64, Windows x64, and glibc-based Linux on x64 and arm64. Call `getTursoDatabaseSupport()` before construction when an application needs to select a fallback on unsupported systems.
24
+ ## Documentation
25
25
 
26
- Experimental Turso Database features are disabled by default. Enable them explicitly when required:
26
+ - [Turso Storage](https://mastra.ai/reference/storage/turso)
27
27
 
28
- ```typescript
29
- const storage = new TursoStore({
30
- id: 'multiprocess-storage',
31
- path: './mastra.db',
32
- experimental: ['multiprocess_wal'],
33
- });
34
- ```
28
+ ## Changelog
29
+
30
+ See the [package changelog](https://github.com/mastra-ai/mastra/blob/main/stores/turso/CHANGELOG.md) for version history and release notes.
31
+
32
+ ## Support
35
33
 
36
- This package provides Mastra storage domains only. It does not include a vector store.
34
+ We have an [open community Discord](https://discord.gg/mastra-ai). Come and say hello and let us know if you have any questions or need any help getting things running.
@@ -3,7 +3,7 @@ name: mastra-turso
3
3
  description: Documentation for @mastra/turso. Use when working with @mastra/turso APIs, configuration, or implementation.
4
4
  metadata:
5
5
  package: "@mastra/turso"
6
- version: "0.1.3-alpha.2"
6
+ version: "0.1.3-alpha.3"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.3-alpha.2",
2
+ "version": "0.1.3-alpha.3",
3
3
  "package": "@mastra/turso",
4
4
  "exports": {},
5
5
  "modules": {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/turso",
3
- "version": "0.1.3-alpha.2",
3
+ "version": "0.1.3-alpha.3",
4
4
  "description": "Turso Database storage provider for Mastra",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -22,7 +22,7 @@
22
22
  "dependencies": {
23
23
  "@tursodatabase/database": "0.7.0",
24
24
  "detect-libc": "^2.1.2",
25
- "@mastra/libsql": "1.22.3-alpha.2"
25
+ "@mastra/libsql": "1.22.3-alpha.3"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/node": "22.20.1",
@@ -33,10 +33,10 @@
33
33
  "tsx": "^4.23.1",
34
34
  "typescript": "^7.0.2",
35
35
  "vitest": "4.1.10",
36
- "@internal/lint": "0.0.129",
37
36
  "@internal/storage-test-utils": "0.0.125",
38
- "@internal/types-builder": "0.0.104",
39
- "@mastra/core": "1.64.0-alpha.6"
37
+ "@mastra/core": "1.64.0-alpha.7",
38
+ "@internal/lint": "0.0.129",
39
+ "@internal/types-builder": "0.0.104"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "@mastra/core": ">=1.63.1-0 <2.0.0-0"