@deeplake/hivemind 0.7.28 → 0.7.29
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.
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
},
|
|
7
7
|
"metadata": {
|
|
8
8
|
"description": "Cloud-backed persistent shared memory for AI agents powered by Deeplake",
|
|
9
|
-
"version": "0.7.
|
|
9
|
+
"version": "0.7.29"
|
|
10
10
|
},
|
|
11
11
|
"plugins": [
|
|
12
12
|
{
|
|
13
13
|
"name": "hivemind",
|
|
14
14
|
"description": "Persistent shared memory powered by Deeplake — captures all session activity and provides cross-session, cross-agent memory search",
|
|
15
|
-
"version": "0.7.
|
|
15
|
+
"version": "0.7.29",
|
|
16
16
|
"source": "./claude-code",
|
|
17
17
|
"homepage": "https://github.com/activeloopai/hivemind"
|
|
18
18
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hivemind",
|
|
3
3
|
"description": "Cloud-backed persistent memory powered by Deeplake — read, write, and share memory across Claude Code sessions and agents",
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.29",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Activeloop",
|
|
7
7
|
"url": "https://deeplake.ai"
|
package/openclaw/dist/index.js
CHANGED
|
@@ -1108,7 +1108,7 @@ function extractLatestVersion(body) {
|
|
|
1108
1108
|
return typeof v === "string" && v.length > 0 ? v : null;
|
|
1109
1109
|
}
|
|
1110
1110
|
function getInstalledVersion() {
|
|
1111
|
-
return "0.7.
|
|
1111
|
+
return "0.7.29".length > 0 ? "0.7.29" : null;
|
|
1112
1112
|
}
|
|
1113
1113
|
function isNewer(latest, current) {
|
|
1114
1114
|
const parse = (v) => v.replace(/-.*$/, "").split(".").map(Number);
|
|
@@ -1120,7 +1120,7 @@ async function checkForUpdate(logger) {
|
|
|
1120
1120
|
try {
|
|
1121
1121
|
const current = getInstalledVersion();
|
|
1122
1122
|
if (!current) return;
|
|
1123
|
-
const res = await fetch(VERSION_URL, { signal: AbortSignal.timeout(
|
|
1123
|
+
const res = await fetch(VERSION_URL, { signal: AbortSignal.timeout(1e4) });
|
|
1124
1124
|
if (!res.ok) return;
|
|
1125
1125
|
const latest = extractLatestVersion(await res.json());
|
|
1126
1126
|
if (latest && isNewer(latest, current)) {
|
|
@@ -1576,7 +1576,7 @@ Manual fix: open ${result.configPath} and add "hivemind" to the "alsoAllow" arra
|
|
|
1576
1576
|
const current = getInstalledVersion();
|
|
1577
1577
|
if (!current) return { text: "Could not determine installed version." };
|
|
1578
1578
|
try {
|
|
1579
|
-
const res = await fetch(VERSION_URL, { signal: AbortSignal.timeout(
|
|
1579
|
+
const res = await fetch(VERSION_URL, { signal: AbortSignal.timeout(1e4) });
|
|
1580
1580
|
if (!res.ok) return { text: `Current version: ${current}. Could not check for updates.` };
|
|
1581
1581
|
const latest = extractLatestVersion(await res.json());
|
|
1582
1582
|
if (!latest) return { text: `Current version: ${current}. Could not parse latest version.` };
|
package/openclaw/package.json
CHANGED