fix(plugins): scan installed dependency runtime code [AI] (#81066) · openclaw/openclaw@39bcd1e
pgondhi987
·
2026-05-13
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -6,6 +6,7 @@ Docs: https://docs.openclaw.ai
|
6 | 6 | |
7 | 7 | ### Fixes |
8 | 8 | |
| 9 | +- fix(plugins): scan installed dependency runtime code [AI]. (#81066) Thanks @pgondhi987. |
9 | 10 | - Inherit tool restrictions for delegated sessions [AI]. (#80979) Thanks @pgondhi987. |
10 | 11 | - Telegram: discard legacy long-poll update offsets that cannot be tied to the current bot token, so token rotation no longer leaves bots silently skipping new messages. (#80671) Thanks @sxxtony. |
11 | 12 | - browser: enforce navigation checks for act interactions [AI]. (#81070) Thanks @pgondhi987. |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -181,4 +181,4 @@ export function guardSessionManager(
|
181 | 181 | (sessionManager as GuardedSessionManager).flushPendingToolResults = guard.flushPendingToolResults; |
182 | 182 | (sessionManager as GuardedSessionManager).clearPendingToolResults = guard.clearPendingToolResults; |
183 | 183 | return sessionManager as GuardedSessionManager; |
184 | | -} |
| 184 | +} |
| Original file line number | Diff line number | Diff line change |
|---|
@@ -821,4 +821,4 @@ describe("before_message_write hook", () => {
|
821 | 821 | appendToolCallAndResult(sm); |
822 | 822 | expectPersistedToolResultTextCapped(sm); |
823 | 823 | }); |
824 | | -}); |
| 824 | +}); |
| Original file line number | Diff line number | Diff line change |
|---|
@@ -707,4 +707,4 @@ export function installSessionToolResultGuard(
|
707 | 707 | clearPendingToolResults, |
708 | 708 | getPendingIds: pendingState.getPendingIds, |
709 | 709 | }; |
710 | | -} |
| 710 | +} |
| Original file line number | Diff line number | Diff line change |
|---|
@@ -567,4 +567,4 @@ describe("redactSensitiveLines", () => {
|
567 | 567 | expect(joined).toContain("…redacted…"); |
568 | 568 | expect(joined).not.toContain("ABCDEF1234567890"); |
569 | 569 | }); |
570 | | -}); |
| 570 | +}); |
| Original file line number | Diff line number | Diff line change |
|---|
@@ -360,4 +360,4 @@ export function redactSensitiveLines(lines: string[], resolved: ResolvedRedactOp
|
360 | 360 | return lines; |
361 | 361 | } |
362 | 362 | return redactText(lines.join("\n"), resolved.patterns).split("\n"); |
363 | | -} |
| 363 | +} |
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。