-
-
Notifications
You must be signed in to change notification settings - Fork 30
fix(codex): catch up to rust-v0.123.0 (experimental_thread_store_endpoint) #772
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -152,6 +152,7 @@ const KNOWN_CONFIG_TOP_LEVEL_KEYS: &[&str] = &[ | |||||||||||||||
| "experimental_realtime_ws_base_url", | ||||||||||||||||
| "experimental_realtime_ws_model", | ||||||||||||||||
| "experimental_realtime_ws_startup_context", | ||||||||||||||||
| "experimental_thread_store_endpoint", | ||||||||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The addition of References
|
||||||||||||||||
| "experimental_use_freeform_apply_patch", | ||||||||||||||||
| "experimental_use_unified_exec_tool", | ||||||||||||||||
| "features", | ||||||||||||||||
|
|
@@ -2204,6 +2205,15 @@ mod tests { | |||||||||||||||
| ) | ||||||||||||||||
| } | ||||||||||||||||
|
|
||||||||||||||||
| fn validate_config_json(content: &str) -> Vec<Diagnostic> { | ||||||||||||||||
| let validator = CodexValidator; | ||||||||||||||||
| validator.validate( | ||||||||||||||||
| Path::new(".codex/config.json"), | ||||||||||||||||
| content, | ||||||||||||||||
| &LintConfig::default(), | ||||||||||||||||
| ) | ||||||||||||||||
|
Comment on lines
+2209
to
+2214
|
||||||||||||||||
| let validator = CodexValidator; | |
| validator.validate( | |
| Path::new(".codex/config.json"), | |
| content, | |
| &LintConfig::default(), | |
| ) | |
| validate_config_at_path(".codex/config.json", content) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changelog bullet uses "(#765)", but #765 is the issue being closed; elsewhere in this file the parentheses appear to reference the PR number (e.g., #766, #748, #752). Please update this reference to the actual PR number (or remove the parentheses) to keep the changelog cross-references consistent.