Synced from monorepo
Changes: - Persist submitter identity for /feedback - Let custom models use rotating tokens from named auth providers - Template stale tool/param name literals in server-native descriptions - Minimal mode commits thinking in full, lookups as one-liners - Tighten durable append internals - Nudge model to end turn on no-op bash commands - Per-fetch signing nonce in the managed-config envelope, with a server-side replay probe - Include working tree in startup status
This commit is contained in:
parent
ba76b0a683
commit
a881e6703f
140 changed files with 6746 additions and 2377 deletions
|
|
@ -3807,11 +3807,14 @@ mod tests {
|
|||
)
|
||||
.unwrap();
|
||||
assert!(s.items.iter().any(|it| matches!(it,
|
||||
SeqItem::Message { text: Some(t), .. } if t.contains("call <svc>") && !t.contains("<"))));
|
||||
SeqItem::Message { text: Some(t), .. }
|
||||
if t.contains("call <svc>") && !t.contains("<"))));
|
||||
assert!(s.items.iter().any(|it| matches!(it,
|
||||
SeqItem::Note { text, .. } if text.contains("memo <o>") && !text.contains("<"))));
|
||||
SeqItem::Note { text, .. }
|
||||
if text.contains("memo <o>") && !text.contains("<"))));
|
||||
assert!(s.items.iter().any(|it| matches!(it,
|
||||
SeqItem::Divider { text } if text.contains("c <x>") && !text.contains("<"))));
|
||||
SeqItem::Divider { text }
|
||||
if text.contains("c <x>") && !text.contains("<"))));
|
||||
|
||||
// Class members and ER attributes have no clean quoted form (splitter
|
||||
// fragments unquoted `;`; ER drops quoted text as a comment), so exercise
|
||||
|
|
|
|||
Loading…
Reference in a new issue