Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
a0841c9
Add thread settings update API
etraut-openai May 19, 2026
d0f3b95
Fix thread settings CI failures
etraut-openai May 19, 2026
9330899
Sync TUI thread settings with app server
etraut-openai May 19, 2026
fad779c
test thread settings update semantics
etraut-openai May 19, 2026
5fa5684
Merge branch 'main' into etraut/thread-settings-update-api
etraut-openai May 19, 2026
f4b4f87
Merge remote-tracking branch 'origin/etraut/thread-settings-update-ap…
etraut-openai May 19, 2026
72ce25e
address thread settings review feedback
etraut-openai May 19, 2026
735dd1c
Merge branch 'etraut/thread-settings-update-api' into etraut/tui-thre…
etraut-openai May 19, 2026
b934377
Preserve thread settings update notification delivery
etraut-openai May 19, 2026
72d7966
Merge remote-tracking branch 'origin/etraut/thread-settings-update-ap…
etraut-openai May 19, 2026
2028328
Merge remote-tracking branch 'origin/etraut/tui-thread-settings-sync'…
etraut-openai May 19, 2026
c38fe16
Preserve default mode settings after plan updates
etraut-openai May 19, 2026
057989b
Fix clippy redundant clone in settings sync
etraut-openai May 19, 2026
07a91f3
Merge branch 'main' into etraut/thread-settings-update-api
etraut-openai May 20, 2026
4662941
Merge branch 'etraut/thread-settings-update-api' into etraut/tui-thre…
etraut-openai May 20, 2026
f28c0dd
Preserve cached collaboration mode settings
etraut-openai May 20, 2026
03836e3
Handle unsupported thread settings updates
etraut-openai May 20, 2026
f5c2d45
Reset user message dedupe after turn completion
etraut-openai May 20, 2026
0169c2f
Merge branch 'main' into etraut/thread-settings-update-api
etraut-openai May 20, 2026
21a0f93
Merge branch 'etraut/thread-settings-update-api' into etraut/tui-thre…
etraut-openai May 20, 2026
395bbec
Simplify TUI thread settings sync
etraut-openai May 20, 2026
48e7535
Add thread settings update coverage
etraut-openai May 20, 2026
9bd935c
Merge branch 'etraut/thread-settings-update-api' into etraut/tui-thre…
etraut-openai May 20, 2026
e5c890f
Clear stale thread settings on read
etraut-openai May 20, 2026
47fd7c3
Clear stale collaboration mask on session restore
etraut-openai May 20, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions codex-rs/app-server-client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ pub(crate) fn server_notification_requires_delivery(notification: &ServerNotific
matches!(
notification,
ServerNotification::TurnCompleted(_)
| ServerNotification::ThreadSettingsUpdated(_)
| ServerNotification::ItemCompleted(_)
| ServerNotification::AgentMessageDelta(_)
| ServerNotification::PlanDelta(_)
Expand Down
Loading
Loading