@simbimbo/memory-ocmemog 0.1.9 → 0.1.10
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 +8 -0
- package/ocmemog/sidecar/app.py +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.10 — 2026-03-19
|
|
4
|
+
|
|
5
|
+
Release alignment follow-up.
|
|
6
|
+
|
|
7
|
+
### Highlights
|
|
8
|
+
- normalized npm repository metadata to the canonical `git+https` form
|
|
9
|
+
- aligned repo `main`, git tag/release, and npm package version after the 0.1.9 publish
|
|
10
|
+
|
|
3
11
|
## 0.1.9 — 2026-03-19
|
|
4
12
|
|
|
5
13
|
Memory quality, governance, and review release.
|
package/ocmemog/sidecar/app.py
CHANGED
|
@@ -20,7 +20,7 @@ from ocmemog.sidecar.transcript_watcher import watch_forever
|
|
|
20
20
|
|
|
21
21
|
DEFAULT_CATEGORIES = tuple(store.MEMORY_TABLES)
|
|
22
22
|
|
|
23
|
-
app = FastAPI(title="ocmemog sidecar", version="0.1.
|
|
23
|
+
app = FastAPI(title="ocmemog sidecar", version="0.1.10")
|
|
24
24
|
|
|
25
25
|
API_TOKEN = os.environ.get("OCMEMOG_API_TOKEN")
|
|
26
26
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simbimbo/memory-ocmemog",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"description": "Advanced OpenClaw memory plugin with durable recall, transcript-backed continuity, and sidecar APIs",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "https://github.com/simbimbo/ocmemog.git"
|
|
8
|
+
"url": "git+https://github.com/simbimbo/ocmemog.git"
|
|
9
9
|
},
|
|
10
10
|
"homepage": "https://github.com/simbimbo/ocmemog",
|
|
11
11
|
"keywords": [
|