Upgrade Harbor patch set onto v2026.3.13-1#8
Merged
Conversation
…claw#45518) * test: preserve wrapper behavior for targeted runs * test: tighten targeted wrapper routing
…openclaw#43762) * fix(feishu): add early event-level dedup to prevent duplicate replies Add synchronous in-memory dedup at EventDispatcher handler level using message_id as key with 5-minute TTL and 2000-entry cap. This catches duplicate events immediately when they arrive from the Lark SDK — before the inbound debouncer or processing queue — preventing the race condition where two concurrent dispatches enter the pipeline before either records the messageId in the downstream dedup layer. Fixes the root cause reported in openclaw#42687. * fix(feishu): correct inverted dedup condition check() returns false on first call (new key) and true on subsequent calls (duplicate). The previous `!check()` guard was inverted — dropping every first delivery and passing all duplicates. Remove the negation so the guard correctly drops duplicates. * fix(feishu): simplify eventDedup key — drop redundant accountId prefix eventDedup is already scoped per account (one instance per registerEventHandlers call), so the accountId prefix in the cache key is redundant. Use `evt:${messageId}` instead. * fix(feishu): share inbound processing claim dedupe --------- Co-authored-by: Tak Hoffman <[email protected]>
…vider (openclaw#42435) * fix(models): apply Gemini model-id normalization to google-vertex provider The existing normalizeGoogleModelId() (which maps e.g. gemini-3.1-flash-lite to gemini-3.1-flash-lite-preview) was only applied when the provider was "google". Users configuring google-vertex/gemini-3.1-flash-lite would get a "missing" model because the -preview suffix was never appended. Extend the normalization to google-vertex in both model-selection (parseModelRef path) and normalizeProviders (config normalization path). Ref: openclaw#36838 Ref: openclaw#36918 (comment) * fix(models): normalize google-vertex flash-lite * fix(models): place unreleased changelog entry last * fix(models): place unreleased changelog entry before releases
…claw#45622) * Gateway: treat scope-limited probe RPC as degraded * Docs: clarify gateway probe degraded scope output * test: fix CI type regressions in gateway and outbound suites * Tests: fix Node24 diffs theme loading and Windows assertions * Tests: fix extension typing after main rebase * Tests: fix Windows CI regressions after rebase * Tests: normalize executable path assertions on Windows * Tests: remove duplicate gateway daemon result alias * Tests: stabilize Windows approval path assertions * Tests: fix Discord rate-limit startup fixture typing * Tests: use Windows-friendly relative exec fixtures --------- Co-authored-by: Mainframe <[email protected]>
* fix(gateway): bound unanswered client requests * fix(gateway): skip default timeout for expectFinal requests * fix(gateway): preserve gateway call timeouts * fix(gateway): localize request timeout policy * fix(gateway): clamp explicit request timeouts * fix(gateway): clamp default request timeout
* 'main' of https://github.com/openclaw/openclaw: (640 commits) ci: add npm token fallback for npm releases build: prepare 2026.3.13-beta.1 docs: reorder unreleased changelog by impact fix: keep windows onboarding logs ascii-safe test: harden parallels all-os smoke harness chore: bump pi to 0.58.0 fix(browser): prefer user profile over chrome relay build: upload Android native debug symbols Gateway: treat scope-limited probe RPC as degraded reachability (openclaw#45622) build: shrink Android app release bundle fix: keep exec summaries inline docs: fix changelog formatting test(discord): align rate limit error mock with carbon build(android): strip unused dnsjava resolver service before R8 build(android): add auto-bump signed aab release script fix(browser): add browser session selection fix(models): apply Gemini model-id normalization to google-vertex provider (openclaw#42435) fix(feishu): add early event-level dedup to prevent duplicate replies (openclaw#43762) fix: unblock discord startup on deploy rate limits fix: default Android TLS setup codes to port 443 ... # Conflicts: # src/browser/pw-tools-core.interactions.batch.test.ts # src/browser/pw-tools-core.interactions.ts
* origin/main: fix(gateway): bound unanswered client requests (openclaw#45689)
This reverts commit aaeb348.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Context
This is the minimal Harbor patch set that still appears necessary on top of upstream
v2026.3.13-1. The older Codex forward-compat patch is upstream now, and Harbor no longer depends on the legacysuppressToolErrorWarningsschema alias during normal startup.