mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-27 01:41:40 +00:00
fix(plugins): enforce minimum host versions for installable plugins (#52094)
* fix(plugins): enforce min host versions * fix(plugins): tighten min host version validation * chore(plugins): trim dead min host version code * fix(plugins): handle malformed min host metadata * fix(plugins): key manifest cache by host version
This commit is contained in:
@@ -42,7 +42,8 @@
|
||||
"install": {
|
||||
"npmSpec": "@openclaw/bluebubbles",
|
||||
"localPath": "extensions/bluebubbles",
|
||||
"defaultChoice": "npm"
|
||||
"defaultChoice": "npm",
|
||||
"minHostVersion": ">=2026.3.14"
|
||||
},
|
||||
"release": {
|
||||
"publishToNpm": true
|
||||
|
||||
@@ -39,7 +39,8 @@
|
||||
"install": {
|
||||
"npmSpec": "@openclaw/discord",
|
||||
"localPath": "extensions/discord",
|
||||
"defaultChoice": "npm"
|
||||
"defaultChoice": "npm",
|
||||
"minHostVersion": ">=2026.3.14"
|
||||
},
|
||||
"bundle": {
|
||||
"stageRuntimeDependencies": true
|
||||
|
||||
@@ -41,7 +41,8 @@
|
||||
"install": {
|
||||
"npmSpec": "@openclaw/feishu",
|
||||
"localPath": "extensions/feishu",
|
||||
"defaultChoice": "npm"
|
||||
"defaultChoice": "npm",
|
||||
"minHostVersion": ">=2026.3.14"
|
||||
},
|
||||
"bundle": {
|
||||
"stageRuntimeDependencies": true
|
||||
|
||||
@@ -40,7 +40,8 @@
|
||||
"install": {
|
||||
"npmSpec": "@openclaw/googlechat",
|
||||
"localPath": "extensions/googlechat",
|
||||
"defaultChoice": "npm"
|
||||
"defaultChoice": "npm",
|
||||
"minHostVersion": ">=2026.3.14"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,6 +10,9 @@
|
||||
"extensions": [
|
||||
"./index.ts"
|
||||
],
|
||||
"install": {
|
||||
"minHostVersion": ">=2026.3.14"
|
||||
},
|
||||
"setupEntry": "./setup-entry.ts",
|
||||
"channel": {
|
||||
"id": "irc",
|
||||
|
||||
@@ -33,7 +33,8 @@
|
||||
"install": {
|
||||
"npmSpec": "@openclaw/line",
|
||||
"localPath": "extensions/line",
|
||||
"defaultChoice": "npm"
|
||||
"defaultChoice": "npm",
|
||||
"minHostVersion": ">=2026.3.14"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -40,7 +40,8 @@
|
||||
"install": {
|
||||
"npmSpec": "@openclaw/matrix",
|
||||
"localPath": "extensions/matrix",
|
||||
"defaultChoice": "npm"
|
||||
"defaultChoice": "npm",
|
||||
"minHostVersion": ">=2026.3.14"
|
||||
},
|
||||
"releaseChecks": {
|
||||
"rootDependencyMirrorAllowlist": [
|
||||
|
||||
@@ -35,7 +35,8 @@
|
||||
"install": {
|
||||
"npmSpec": "@openclaw/mattermost",
|
||||
"localPath": "extensions/mattermost",
|
||||
"defaultChoice": "npm"
|
||||
"defaultChoice": "npm",
|
||||
"minHostVersion": ">=2026.3.14"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -15,7 +15,8 @@
|
||||
"install": {
|
||||
"npmSpec": "@openclaw/memory-lancedb",
|
||||
"localPath": "extensions/memory-lancedb",
|
||||
"defaultChoice": "npm"
|
||||
"defaultChoice": "npm",
|
||||
"minHostVersion": ">=2026.3.14"
|
||||
},
|
||||
"release": {
|
||||
"publishToNpm": true
|
||||
|
||||
@@ -39,7 +39,8 @@
|
||||
"install": {
|
||||
"npmSpec": "@openclaw/msteams",
|
||||
"localPath": "extensions/msteams",
|
||||
"defaultChoice": "npm"
|
||||
"defaultChoice": "npm",
|
||||
"minHostVersion": ">=2026.3.14"
|
||||
},
|
||||
"release": {
|
||||
"publishToNpm": true
|
||||
|
||||
@@ -39,7 +39,8 @@
|
||||
"install": {
|
||||
"npmSpec": "@openclaw/nextcloud-talk",
|
||||
"localPath": "extensions/nextcloud-talk",
|
||||
"defaultChoice": "npm"
|
||||
"defaultChoice": "npm",
|
||||
"minHostVersion": ">=2026.3.14"
|
||||
},
|
||||
"release": {
|
||||
"publishToNpm": true
|
||||
|
||||
@@ -36,7 +36,8 @@
|
||||
"install": {
|
||||
"npmSpec": "@openclaw/nostr",
|
||||
"localPath": "extensions/nostr",
|
||||
"defaultChoice": "npm"
|
||||
"defaultChoice": "npm",
|
||||
"minHostVersion": ">=2026.3.14"
|
||||
},
|
||||
"release": {
|
||||
"publishToNpm": true
|
||||
|
||||
@@ -23,7 +23,8 @@
|
||||
"install": {
|
||||
"npmSpec": "@openclaw/synology-chat",
|
||||
"localPath": "extensions/synology-chat",
|
||||
"defaultChoice": "npm"
|
||||
"defaultChoice": "npm",
|
||||
"minHostVersion": ">=2026.3.14"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -39,7 +39,8 @@
|
||||
"install": {
|
||||
"npmSpec": "@openclaw/tlon",
|
||||
"localPath": "extensions/tlon",
|
||||
"defaultChoice": "npm"
|
||||
"defaultChoice": "npm",
|
||||
"minHostVersion": ">=2026.3.14"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -13,6 +13,9 @@
|
||||
"extensions": [
|
||||
"./index.ts"
|
||||
],
|
||||
"install": {
|
||||
"minHostVersion": ">=2026.3.14"
|
||||
},
|
||||
"channel": {
|
||||
"id": "twitch",
|
||||
"label": "Twitch",
|
||||
|
||||
@@ -24,6 +24,9 @@
|
||||
"extensions": [
|
||||
"./index.ts"
|
||||
],
|
||||
"install": {
|
||||
"minHostVersion": ">=2026.3.14"
|
||||
},
|
||||
"release": {
|
||||
"publishToNpm": true
|
||||
}
|
||||
|
||||
@@ -35,7 +35,8 @@
|
||||
"install": {
|
||||
"npmSpec": "@openclaw/whatsapp",
|
||||
"localPath": "extensions/whatsapp",
|
||||
"defaultChoice": "npm"
|
||||
"defaultChoice": "npm",
|
||||
"minHostVersion": ">=2026.3.14"
|
||||
},
|
||||
"release": {
|
||||
"publishToNpm": true
|
||||
|
||||
@@ -39,7 +39,8 @@
|
||||
"install": {
|
||||
"npmSpec": "@openclaw/zalo",
|
||||
"localPath": "extensions/zalo",
|
||||
"defaultChoice": "npm"
|
||||
"defaultChoice": "npm",
|
||||
"minHostVersion": ">=2026.3.14"
|
||||
},
|
||||
"release": {
|
||||
"publishToNpm": true
|
||||
|
||||
@@ -40,7 +40,8 @@
|
||||
"install": {
|
||||
"npmSpec": "@openclaw/zalouser",
|
||||
"localPath": "extensions/zalouser",
|
||||
"defaultChoice": "npm"
|
||||
"defaultChoice": "npm",
|
||||
"minHostVersion": ">=2026.3.14"
|
||||
},
|
||||
"release": {
|
||||
"publishToNpm": true
|
||||
|
||||
Reference in New Issue
Block a user