@oh-my-pi/pi-mnemopi 17.3.2 → 17.3.4
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 +6 -0
- package/package.json +5 -5
- package/src/core/beam/recall.ts +0 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [17.3.4] - 2026-08-14
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Fixed `recall()` silently dropping `scope='global'` rows whenever a `channelId` filter was active: `buildWhere()` appended a redundant hard `channel_id = ?` clause on top of the `(session_id = ? OR scope = 'global' OR channel_id = ?)` visibility clause, so global rows whose `channel_id` didn't match (e.g. imported rows with `channel_id NULL`) were excluded. Channel isolation is preserved by the visibility clause alone. This made imported/global episodic memory permanently unrecallable through callers that always pass a channel (such as the coding-agent memory backend). ([#8525](https://github.com/can1357/oh-my-pi/issues/8525))
|
|
10
|
+
|
|
5
11
|
## [17.2.11] - 2026-08-07
|
|
6
12
|
|
|
7
13
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@oh-my-pi/pi-mnemopi",
|
|
4
|
-
"version": "17.3.
|
|
4
|
+
"version": "17.3.4",
|
|
5
5
|
"description": "Local SQLite memory engine for Oh My Pi agents",
|
|
6
6
|
"homepage": "https://omp.sh",
|
|
7
7
|
"author": "Can Boluk",
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"fmt": "biome format --write ."
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@oh-my-pi/pi-ai": "17.3.
|
|
43
|
-
"@oh-my-pi/pi-catalog": "17.3.
|
|
44
|
-
"@oh-my-pi/pi-natives": "17.3.
|
|
45
|
-
"@oh-my-pi/pi-utils": "17.3.
|
|
42
|
+
"@oh-my-pi/pi-ai": "17.3.4",
|
|
43
|
+
"@oh-my-pi/pi-catalog": "17.3.4",
|
|
44
|
+
"@oh-my-pi/pi-natives": "17.3.4",
|
|
45
|
+
"@oh-my-pi/pi-utils": "17.3.4"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"fastembed": "2.1.0",
|
package/src/core/beam/recall.ts
CHANGED
|
@@ -527,10 +527,6 @@ function buildWhere(
|
|
|
527
527
|
clauses.push(`${prefix}author_type = ?`);
|
|
528
528
|
params.push(authorType);
|
|
529
529
|
}
|
|
530
|
-
if (channelId !== null && channelId !== "") {
|
|
531
|
-
clauses.push(`${prefix}channel_id = ?`);
|
|
532
|
-
params.push(channelId);
|
|
533
|
-
}
|
|
534
530
|
return { where: clauses.join(" AND "), params };
|
|
535
531
|
}
|
|
536
532
|
|