@aeriondyseti/vector-memory-mcp 2.1.0 → 2.1.1
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 +31 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -114,6 +114,37 @@ CLI flags:
|
|
|
114
114
|
|
|
115
115
|
---
|
|
116
116
|
|
|
117
|
+
## Release Channels
|
|
118
|
+
|
|
119
|
+
The stable release is what you get by default:
|
|
120
|
+
|
|
121
|
+
```bash
|
|
122
|
+
bun install -g @aeriondyseti/vector-memory-mcp
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
Pre-release channels are available for testing upcoming changes. **These are unstable and may break without notice — use at your own risk.**
|
|
126
|
+
|
|
127
|
+
| Channel | Install | Description |
|
|
128
|
+
|---------|---------|-------------|
|
|
129
|
+
| `@latest` | *(default)* | Stable releases |
|
|
130
|
+
| `@rc` | `@aeriondyseti/vector-memory-mcp@rc` | Release candidates — final testing before stable |
|
|
131
|
+
| `@dev` | `@aeriondyseti/vector-memory-mcp@dev` | Development builds — latest features, least stable |
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
# Install the dev channel
|
|
135
|
+
bun install -g @aeriondyseti/vector-memory-mcp@dev
|
|
136
|
+
|
|
137
|
+
# Pin to a specific pre-release version
|
|
138
|
+
bun install -g @aeriondyseti/vector-memory-mcp@2.1.0-dev.1
|
|
139
|
+
|
|
140
|
+
# Go back to stable
|
|
141
|
+
bun install -g @aeriondyseti/vector-memory-mcp@latest
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
> **Warning:** Pre-release versions may include breaking changes, incomplete features, or data migration requirements that haven't been finalized. Do not use them in production workflows you depend on.
|
|
145
|
+
|
|
146
|
+
---
|
|
147
|
+
|
|
117
148
|
## Migrating from 1.x (LanceDB)
|
|
118
149
|
|
|
119
150
|
Version 2.0 replaced LanceDB with SQLite (sqlite-vec) for storage. If you have existing data from 1.x, the server will detect it automatically and prompt you to migrate:
|