Marc J Saint-jour
b9fc0b94ca
Merge branch 'main' into codex/cortex-openclaw-integration
2026-03-13 17:40:48 -04:00
Vincent Koc
28b0d8e8bd
fix(cron): prevent isolated cron nested lane deadlocks ( #45459 )
...
* fix(cron): resolve isolated session deadlock (#44805 )
Map cron lane to nested in resolveGlobalLane to prevent deadlock when
isolated cron jobs trigger inner operations (e.g. compaction). Outer
execution holds the cron lane slot; inner work now uses nested lane.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* docs(changelog): add cron isolated deadlock note
---------
Co-authored-by: zhujian <zhujianxyz@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 14:19:40 -07:00
Peter Steinberger
b84c7037de
fix: repair ci audit and type drift
2026-03-13 21:02:19 +00:00
Peter Steinberger
fff514c7f2
refactor: share cron and ollama test helpers
2026-03-13 20:19:39 +00:00
Peter Steinberger
c74e5210f6
refactor: share embedded runner e2e fixtures
2026-03-13 20:19:39 +00:00
Peter Steinberger
92dbb59b79
refactor: share stream payload patch helper
2026-03-13 20:19:39 +00:00
Peter Steinberger
e731974da1
refactor: share approval id test helpers
2026-03-13 20:19:39 +00:00
Peter Steinberger
df2bda63c6
refactor: share compact hook success harness
2026-03-13 20:19:39 +00:00
Peter Steinberger
0625547800
refactor: share approval unavailable fixtures
2026-03-13 20:19:38 +00:00
Peter Steinberger
ad52724d9a
refactor: share fallback skip assertions
2026-03-13 20:19:38 +00:00
Peter Steinberger
0652b885df
refactor: share gemini preview model fixtures
2026-03-13 20:19:38 +00:00
Peter Steinberger
5067d06f55
refactor: share session status sandbox helpers
2026-03-13 20:19:38 +00:00
Peter Steinberger
b1b6c7a982
refactor: share models config envvar fixtures
2026-03-13 20:19:38 +00:00
Peter Steinberger
44cd3674dd
refactor: share ollama stream test assertions
2026-03-13 20:19:38 +00:00
Peter Steinberger
565dc0d17b
refactor: share exec approval registration context
2026-03-13 18:38:12 +00:00
Peter Steinberger
e003038261
refactor: share agent snapshot and scope test fixtures
2026-03-13 18:38:12 +00:00
Peter Steinberger
07dacec904
refactor: share embedded attempt test harness
2026-03-13 18:38:12 +00:00
Peter Steinberger
7cb6553ce8
fix: pass injected config to session tools
2026-03-13 18:38:12 +00:00
Peter Steinberger
88b87d893d
refactor: share temp dir test helper
2026-03-13 18:38:12 +00:00
Peter Steinberger
87c447ed46
test: tighten failover classifier coverage
2026-03-13 17:51:36 +00:00
Peter Steinberger
f5b006f6a1
test: simplify model ref normalization coverage
2026-03-13 17:49:32 +00:00
Junebugg1214
ce1db6e425
fix: restore oauth and multimodal memory config types
2026-03-13 13:43:28 -04:00
Frank Yang
7778627b71
fix(ollama): hide native reasoning-only output ( #45330 ) Thanks @xi7ang
...
Co-authored-by: xi7ang <266449609+xi7ang@users.noreply.github.com>
Co-authored-by: Frank Yang <vibespecs@gmail.com>
2026-03-14 01:38:06 +08:00
Marc J Saint-jour
03bc084e46
Merge branch 'main' into codex/cortex-openclaw-integration
2026-03-13 13:20:28 -04:00
Peter Steinberger
394fd87c2c
fix: clarify gated core tool warnings
2026-03-13 15:38:07 +00:00
Max aka Mosheh
55e79adf69
fix: resolve target agent workspace for cross-agent subagent spawns ( #40176 )
...
Merged via squash.
Prepared head SHA: 2378e40383f194557c582b8e28976e57dfe03e8a
Co-authored-by: moshehbenavraham <17122072+moshehbenavraham@users.noreply.github.com>
Co-authored-by: mcaxtr <7562095+mcaxtr@users.noreply.github.com>
Reviewed-by: @mcaxtr
2026-03-13 12:09:51 -03:00
정우용
72b6a11a83
fix: preserve persona and language continuity in compaction summaries ( #10456 )
...
Merged via squash.
Prepared head SHA: 4518fb20e1037f87493e3668621cb1a45ab8233e
Co-authored-by: keepitmello <71975659+keepitmello@users.noreply.github.com>
Co-authored-by: jalehman <550978+jalehman@users.noreply.github.com>
Reviewed-by: @jalehman
2026-03-13 07:40:32 -07:00
cheapestinference
60cb1d683c
fix(agents): respect explicit user compat overrides for non-native openai-completions ( #44432 )
...
Reviewed-by: @frankekn
2026-03-13 17:30:24 +08:00
Jealous
a3eed2b70f
fix(agents): avoid injecting memory file twice on case-insensitive mounts ( #26054 )
...
* fix(agents): avoid injecting memory file twice on case-insensitive mounts
On case-insensitive file systems mounted into Docker from macOS, both
MEMORY.md and memory.md pass fs.access() even when they are the same
underlying file. The previous dedup via fs.realpath() failed in this
scenario because realpath does not normalise case through the Docker
mount layer, so both paths were treated as distinct entries and the
same content was injected into the bootstrap context twice, wasting
tokens.
Fix by replacing the collect-then-dedup approach with an early-exit:
try MEMORY.md first; fall back to memory.md only when MEMORY.md is
absent. This makes the function return at most one entry regardless
of filesystem case-sensitivity.
* docs: clarify singular memory bootstrap fallback
* fix: note memory bootstrap fallback docs and changelog (#26054 ) (thanks @Lanfei)
---------
Co-authored-by: Ayaan Zaidi <hi@obviy.us>
2026-03-13 14:39:51 +05:30
Frank Yang
5ca0233db0
fix(agents): drop Anthropic thinking blocks on replay ( #44843 )
...
* agents: drop Anthropic thinking blocks on replay
* fix: extend anthropic replay sanitization openclaw#44429 thanks @jmcte
* fix: extend anthropic replay sanitization openclaw#44843 thanks @jmcte
* test: add bedrock replay sanitization coverage openclaw#44843
* test: cover anthropic provider drop-thinking hints openclaw#44843
---------
Co-authored-by: johnmteneyckjr <john.m.teneyck@gmail.com>
2026-03-13 16:57:56 +08:00
Frank Yang
f07033ed3f
fix: address delivery dedupe review follow-ups ( #44666 )
...
Merged via squash.
Prepared head SHA: 8e6d254cc4781df66ee02b683c4ad72b5a633502
Co-authored-by: frankekn <4488090+frankekn@users.noreply.github.com>
Co-authored-by: frankekn <4488090+frankekn@users.noreply.github.com>
Reviewed-by: @frankekn
2026-03-13 16:18:01 +08:00
Frank Yang
80e6701959
test: stabilize sanitize session history smoke checks
2026-03-13 14:50:03 +08:00
Efe Büken
771066d122
fix(compaction): use full-session token count for post-compaction sanity check ( #28347 )
...
Merged via squash.
Prepared head SHA: cf4eab1c51e6b8890e23c2d7172313c40cd2fe04
Co-authored-by: efe-arv <259833796+efe-arv@users.noreply.github.com>
Co-authored-by: jalehman <550978+jalehman@users.noreply.github.com>
Reviewed-by: @jalehman
2026-03-12 21:26:30 -07:00
Junebugg1214
a2b0d03cbb
fix: scan full cortex history for conversation matches
2026-03-12 22:47:19 -04:00
Junebugg1214
d52d6c97a2
fix: update onPayload wrappers for pi-ai 0.57
2026-03-12 22:39:34 -04:00
Dinakar Sarbada
23c7fc745f
refactor(agents): replace console.warn with SubsystemLogger in compaction-safeguard.ts ( #9974 )
...
Merged via squash.
Prepared head SHA: 35dcc5ba354ad7f058d796846bda9d1f8a416e04
Co-authored-by: dinakars777 <250428393+dinakars777@users.noreply.github.com>
Co-authored-by: jalehman <550978+jalehman@users.noreply.github.com>
Reviewed-by: @jalehman
2026-03-12 19:34:55 -07:00
Junebugg1214
e5e493abcf
fix: resolve remaining CI regressions
2026-03-12 22:18:37 -04:00
Peter Steinberger
c8439f6587
fix: import oauth types from the oauth entrypoint
2026-03-13 02:17:00 +00:00
Marc J Saint-jour
98ac50f798
Merge branch 'main' into codex/cortex-openclaw-integration
2026-03-12 21:55:02 -04:00
Peter Steinberger
268a8592de
fix: avoid ineffective dynamic imports
2026-03-13 01:33:37 +00:00
Peter Steinberger
9bbdb5ca94
test(live): add codex instructions to spark probe
2026-03-13 00:53:21 +00:00
Peter Steinberger
d5b3f2ed71
fix(models): keep codex spark codex-only
2026-03-13 00:53:21 +00:00
Marc J Saint-jour
8d3eee1a55
Merge branch 'main' into codex/cortex-openclaw-integration
2026-03-12 20:45:16 -04:00
Marc J Saint-jour
001918eb9e
fix: preserve post-compaction memory sync setting
2026-03-12 20:30:32 -04:00
Marc J Saint-jour
5b4a9016bd
fix: preserve post-compaction memory sync setting
2026-03-12 20:30:31 -04:00
Marc J Saint-jour
dfe9ab163a
fix: avoid blocking gateway snapshots on cortex history reads
2026-03-12 20:21:48 -04:00
Marc J Saint-jour
0bb7abd3ee
fix: avoid blocking gateway snapshots on cortex history reads
2026-03-12 20:21:47 -04:00
Marc J Saint-jour
29d9ed06d8
fix: throttle Cortex conflict probes without conflicts
2026-03-12 20:09:17 -04:00
Marc J Saint-jour
98db8cce7b
fix: throttle Cortex conflict probes without conflicts
2026-03-12 20:09:16 -04:00
Marc J Saint-jour
750a67b991
fix: restore memory search output dimensionality
2026-03-12 20:04:14 -04:00