From d09728b3afb61d016260f9b5620c3ac539dce204 Mon Sep 17 00:00:00 2001 From: Yvette Carlisle Date: Fri, 5 Jun 2026 17:13:37 +0800 Subject: [PATCH 1/3] {"schema":"decodex/commit/1","summary":"Update Codex release publishing gates","authority":"manual"} --- apps/decodex/src/radar.rs | 78 +- .../openai-codex-app-26-602.json | 59 + ...ust-v0-138-0-alpha-4-prerelease-delta.json | 87 + ...8-0-alpha-4-structured-read-text-only.json | 104 + ...alpha-4-structured-read-upload-failed.json | 96 + dev/skills/codex-release-analysis/SKILL.md | 131 +- dev/skills/x-post-publisher/SKILL.md | 127 +- dev/skills/x-post-quality-system/SKILL.md | 177 +- docs/runbook/social-publishing-workflow.md | 50 + docs/spec/social-candidate.md | 39 +- docs/spec/social-publishing.md | 84 +- scripts/github/contracts.py | 33 + scripts/github/social_post.schema.json | 86 + .../release-deltas/openai-codex-latest.json | 10861 +++------------- 14 files changed, 2553 insertions(+), 9459 deletions(-) create mode 100644 artifacts/github/social-candidates/openai-codex-app-26-602.json create mode 100644 artifacts/github/social-candidates/openai-codex-rust-v0-138-0-alpha-4-prerelease-delta.json create mode 100644 artifacts/social/x/posts/2026-06-05/openai-codex-rust-v0-138-0-alpha-4-structured-read-text-only.json create mode 100644 artifacts/social/x/posts/2026-06-05/openai-codex-rust-v0-138-0-alpha-4-structured-read-upload-failed.json diff --git a/apps/decodex/src/radar.rs b/apps/decodex/src/radar.rs index 87444e6..0755226 100644 --- a/apps/decodex/src/radar.rs +++ b/apps/decodex/src/radar.rs @@ -74,6 +74,13 @@ const SOCIAL_POST_MODES: &[&str] = &[ const SOCIAL_POST_PRIORITIES: &[&str] = &["critical", "high", "low", "normal"]; const SOCIAL_POST_STATUSES: &[&str] = &["blocked", "failed", "published", "skipped"]; const SOCIAL_POST_WORTHINESS: &[&str] = &["block", "publish", "skip"]; +const SOCIAL_POST_LIFECYCLE_STATES: &[&str] = &[ + "deleted_by_operator", + "live", + "superseded_failed_attempt", + "superseded_published", + "superseded_text_only", +]; const SOURCE_ITEM_KINDS: &[&str] = &["commit", "pull_request"]; const UPSTREAM_IMPACT_KINDS: &[&str] = &["browser_observation", "changelog", "commit", "pull_request", "release", "signal"]; @@ -5172,7 +5179,7 @@ fn validate_social_candidate(entry: &Map, errors: &mut Vec, errors: &mut Vec) { validate_social_post_claims(entry.get("claims"), errors); validate_social_post_decision(entry, errors); validate_social_post_status_payload(entry, errors); + validate_social_post_lifecycle(entry, errors); for field in ["caveats", "media_refs"] { validate_optional_string_list(entry.get(field), field, errors); @@ -5386,6 +5394,53 @@ fn validate_social_post_status_payload(entry: &Map, errors: &mut } } +fn validate_social_post_lifecycle(entry: &Map, errors: &mut Vec) { + let Some(lifecycle) = entry.get("post_lifecycle") else { + return; + }; + let Some(lifecycle) = lifecycle.as_object() else { + errors.push("post_lifecycle must be an object when present".into()); + + return; + }; + + if !matches_one_of(lifecycle.get("current_state"), SOCIAL_POST_LIFECYCLE_STATES) { + errors.push(format!( + "post_lifecycle.current_state must be one of {}", + choices(SOCIAL_POST_LIFECYCLE_STATES) + )); + } + if lifecycle.get("quote_eligible").and_then(Value::as_bool).is_none() { + errors.push("post_lifecycle.quote_eligible must be boolean".into()); + } + if !is_non_empty_string(lifecycle.get("reason")) { + errors.push("post_lifecycle.reason must be a non-empty string".into()); + } + if lifecycle + .get("superseded_by_candidate") + .is_some_and(|value| !is_non_empty_string(Some(value))) + { + errors.push("post_lifecycle.superseded_by_candidate must be non-empty when present".into()); + } + + let current_state = string_field(lifecycle, "current_state"); + let quote_eligible = lifecycle.get("quote_eligible").and_then(Value::as_bool); + + if quote_eligible == Some(true) + && (string_field(entry, "status") != Some("published") || current_state != Some("live")) + { + errors + .push("post_lifecycle.quote_eligible can be true only for live published posts".into()); + } + if current_state.is_some_and(|state| state.starts_with("superseded")) + && lifecycle.get("superseded_by_candidate").is_none() + { + errors.push( + "post_lifecycle.superseded_by_candidate is required for superseded states".into(), + ); + } +} + fn validate_social_post_publication(publication: Option<&Value>, errors: &mut Vec) { let Some(publication) = publication.and_then(Value::as_object) else { errors.push("publication is required when status is published".into()); @@ -5868,6 +5923,27 @@ mod tests { assert_errors(&social_post, ["decision.daily_limit must be 8"]); } + #[test] + fn accepts_deleted_social_post_lifecycle_and_rejects_quote_eligible_deleted_post() { + let mut social_post = valid_social_post(); + + social_post["post_lifecycle"] = serde_json::json!({ + "current_state": "deleted_by_operator", + "quote_eligible": false, + "superseded_by_candidate": "artifacts/github/social-candidates/openai-codex-alpha4.json", + "reason": "The operator deleted this post and superseded it with a corrected candidate." + }); + + assert_errors(&social_post, []); + + social_post["post_lifecycle"]["quote_eligible"] = serde_json::json!(true); + + assert_errors( + &social_post, + ["post_lifecycle.quote_eligible can be true only for live published posts"], + ); + } + #[test] fn default_github_token_falls_back_to_workflow_token() { let _env = TestEnvVars::set(&[ diff --git a/artifacts/github/social-candidates/openai-codex-app-26-602.json b/artifacts/github/social-candidates/openai-codex-app-26-602.json new file mode 100644 index 0000000..98c5cbe --- /dev/null +++ b/artifacts/github/social-candidates/openai-codex-app-26-602.json @@ -0,0 +1,59 @@ +{ + "schema": "social_candidate/v1", + "slug": "openai-codex-app-26-602", + "repo": "openai/codex", + "channel": "x", + "target_account": "decodexspace", + "mode": "release_pulse", + "priority": "high", + "audience": "Codex app users and Decodex operators", + "candidate_text": [ + "Codex app 26.602 is out.\n\nWhat changed:\n- Profile activity insights and share cards\n- Better Computer Use startup and appshot errors\n- Browser/review UI fixes plus expanded onboarding\n\nChangelog: https://developers.openai.com/codex/changelog" + ], + "source_refs": { + "urls": [ + "https://developers.openai.com/codex/changelog", + "https://x.com/CodexReleases/status/2062672204207366488", + "https://x.com/Codex_Changelog/status/2062678248790589520" + ] + }, + "evidence_notes": [ + "The official Codex changelog lists Codex app updates 26.602 on 2026-06-04.", + "The changelog says activity insights and share cards were added to the Profile section, with sharing available on consumer ChatGPT plans.", + "The changelog says Computer Use startup readiness and appshot error reporting improved.", + "The changelog says browser and review UI issues were fixed and onboarding was expanded with more role choices.", + "Read-only X benchmark sampling on 2026-06-05 showed @CodexReleases and @Codex_Changelog both covered Codex app 26.602 quickly; those posts were used for format and coverage calibration only." + ], + "claims": [ + { + "text": "Codex app 26.602 includes Profile activity insights and share cards.", + "evidence": "https://developers.openai.com/codex/changelog", + "confidence": "confirmed" + }, + { + "text": "Codex app 26.602 improves Computer Use startup readiness and appshot error reporting.", + "evidence": "https://developers.openai.com/codex/changelog", + "confidence": "confirmed" + }, + { + "text": "Codex app 26.602 includes browser and review UI fixes plus expanded onboarding role choices.", + "evidence": "https://developers.openai.com/codex/changelog", + "confidence": "confirmed" + } + ], + "decision": { + "worthiness": "publish", + "reason": "The official changelog has concrete user-visible app changes, and benchmark readback shows this update is timely enough for a source-led release pulse.", + "idempotency_key": "x:decodexspace:codex-app-26-602:release_pulse" + }, + "caveats": [ + "Sharing for profile cards is described as available on consumer ChatGPT plans.", + "Do not use X benchmark posts as technical evidence for the listed changes." + ], + "media_refs": [ + "/Users/x/.codex/decodex/social-media/codex-app-26-602.png" + ], + "next_steps": [ + "Hand this candidate to decodex-x-publisher for a source-led Codex app update post using the visually reviewed decodex_signal_card media at /Users/x/.codex/decodex/social-media/codex-app-26-602.png." + ] +} diff --git a/artifacts/github/social-candidates/openai-codex-rust-v0-138-0-alpha-4-prerelease-delta.json b/artifacts/github/social-candidates/openai-codex-rust-v0-138-0-alpha-4-prerelease-delta.json new file mode 100644 index 0000000..318098a --- /dev/null +++ b/artifacts/github/social-candidates/openai-codex-rust-v0-138-0-alpha-4-prerelease-delta.json @@ -0,0 +1,87 @@ +{ + "schema": "social_candidate/v1", + "slug": "openai-codex-rust-v0-138-0-alpha-4-prerelease-delta", + "repo": "openai/codex", + "channel": "x", + "target_account": "decodexspace", + "mode": "thread", + "priority": "high", + "audience": "Codex CLI alpha testers and Decodex Radar readers", + "candidate_text": [ + "Codex CLI 0.138.0-alpha.4 prerelease read\n\nIncrement: alpha.3 -> alpha.4, 8 commits.\n\nMain theme: reasoning-effort and app-server protocol cleanup.\n\nAlpha caveat: metadata read, not stable release notes.", + "Protocol/API changes:\n\n- reasoning efforts become model-defined\nhttps://github.com/openai/codex/pull/26444\n\n- model-advertised order is preserved\nhttps://github.com/openai/codex/pull/26446", + "Cleanup to watch:\n\n- response.processed websocket request removed\nhttps://github.com/openai/codex/pull/26447\n\n- experimentalFeature/enablement/set trims stale keys\nhttps://github.com/openai/codex/pull/26312", + "Why this prerelease matters:\n\nThis is not a broad feature-drop read. It is a tight alpha delta around protocol shape, model metadata, and client compatibility.\n\nCompare:\nhttps://github.com/openai/codex/compare/rust-v0.138.0-alpha.3...rust-v0.138.0-alpha.4" + ], + "source_refs": { + "release_deltas": [ + "site/src/content/release-deltas/openai-codex-latest.json" + ], + "urls": [ + "https://github.com/openai/codex/releases/tag/rust-v0.138.0-alpha.3", + "https://github.com/openai/codex/releases/tag/rust-v0.138.0-alpha.4", + "https://github.com/openai/codex/compare/rust-v0.138.0-alpha.3...rust-v0.138.0-alpha.4", + "https://github.com/openai/codex/pull/26444", + "https://github.com/openai/codex/pull/26446", + "https://github.com/openai/codex/pull/26447", + "https://github.com/openai/codex/pull/26312", + "https://x.com/CodexReleases", + "https://x.com/Codex_Changelog" + ] + }, + "evidence_notes": [ + "GitHub release metadata shows rust-v0.138.0-alpha.4 was published as a prerelease on 2026-06-04T22:01:10Z.", + "The prerelease channel baseline is the adjacent previous prerelease rust-v0.138.0-alpha.3, not stable rust-v0.137.0.", + "GitHub compare metadata for rust-v0.138.0-alpha.3...rust-v0.138.0-alpha.4 showed 8 ahead commits.", + "This is not the first prerelease after a stable release, but local social_post/v1 records did not contain a previous alpha.3 Decodex prerelease post URL to quote.", + "The missing alpha.3 quote target is a historical Publisher coverage gap; the candidate must not invent a quote URL.", + "The alpha.3 -> alpha.4 commit titles cluster around model-defined reasoning efforts, model-advertised effort order, response.processed websocket removal, experimentalFeature/enablement/set cleanup, AGENTS.md environment filesystem routing, Windows sandbox lint, and release binary ThinLTO.", + "Public copy uses direct GitHub PR URLs on first mention instead of raw PR-number-only references.", + "A fresh candidate-specific Decodex signal card was generated and visually reviewed at /Users/x/.codex/decodex/social-media/codex-cli-0-138-alpha3-alpha4.svg.png.", + "Read-only X benchmark sampling on 2026-06-05 showed @CodexReleases and @Codex_Changelog covering Codex app 26.602 and CLI 0.137.0, but not visible prerelease interpretation for 0.138.0-alpha.4." + ], + "claims": [ + { + "text": "rust-v0.138.0-alpha.4 is the latest observed openai/codex prerelease checkpoint.", + "evidence": "https://github.com/openai/codex/releases/tag/rust-v0.138.0-alpha.4", + "confidence": "confirmed" + }, + { + "text": "The prerelease-channel comparison for alpha.4 is rust-v0.138.0-alpha.3 to rust-v0.138.0-alpha.4.", + "evidence": "https://github.com/openai/codex/compare/rust-v0.138.0-alpha.3...rust-v0.138.0-alpha.4", + "confidence": "confirmed" + }, + { + "text": "The alpha.3 to alpha.4 compare window has 8 ahead commits.", + "evidence": "https://github.com/openai/codex/compare/rust-v0.138.0-alpha.3...rust-v0.138.0-alpha.4", + "confidence": "confirmed" + }, + { + "text": "The alpha.3 to alpha.4 compare window includes model-defined reasoning effort and model-advertised effort ordering work.", + "evidence": "https://github.com/openai/codex/pull/26444 and https://github.com/openai/codex/pull/26446", + "confidence": "confirmed" + }, + { + "text": "The alpha.3 to alpha.4 compare window removes response.processed websocket request handling and trims stale experimentalFeature/enablement/set keys.", + "evidence": "https://github.com/openai/codex/pull/26447 and https://github.com/openai/codex/pull/26312", + "confidence": "confirmed" + } + ], + "decision": { + "worthiness": "publish", + "reason": "Benchmark accounts are not visibly covering prerelease interpretation, and the adjacent alpha.3 -> alpha.4 compare supports a useful, formatted prerelease delta read with clickable PR URLs and explicit channel-lineage caveats.", + "idempotency_key": "x:decodexspace:openai-codex-rust-v0-138-0-alpha-4:alpha3-alpha4:thread" + }, + "caveats": [ + "Do not compare this prerelease post against stable rust-v0.137.0; that belongs to the homepage release-delta index or first-prerelease baseline only.", + "Do not quote a previous alpha.3 post unless a real previous Decodex post URL is found.", + "Upgrade or testing guidance should point readers to the exact prerelease tag until source review catches up." + ], + "media_refs": [ + "/Users/x/.codex/decodex/social-media/codex-cli-0-138-alpha3-alpha4.svg.png" + ], + "next_steps": [ + "Publish as a prerelease-channel alpha.3 -> alpha.4 delta read with /Users/x/.codex/decodex/social-media/codex-cli-0-138-alpha3-alpha4.svg.png after media upload reliability is fixed or an explicit text-only fallback is approved.", + "For the next prerelease in this train, compare alpha.4 -> alpha.5 and quote the previous alpha.4 prerelease post URL when one exists." + ] +} diff --git a/artifacts/social/x/posts/2026-06-05/openai-codex-rust-v0-138-0-alpha-4-structured-read-text-only.json b/artifacts/social/x/posts/2026-06-05/openai-codex-rust-v0-138-0-alpha-4-structured-read-text-only.json new file mode 100644 index 0000000..379621d --- /dev/null +++ b/artifacts/social/x/posts/2026-06-05/openai-codex-rust-v0-138-0-alpha-4-structured-read-text-only.json @@ -0,0 +1,104 @@ +{ + "schema": "social_post/v1", + "slug": "openai-codex-rust-v0-138-0-alpha-4-structured-read-text-only", + "channel": "x", + "target_account": "decodexspace", + "controller_account": "hackink", + "mode": "thread", + "status": "published", + "audience": "Codex CLI alpha testers and Decodex Radar readers", + "text": [ + "Codex CLI 0.138.0-alpha.4 prerelease read\n\nWorth watching:\n- #25469 adds app-server accountSession/* protocol\n- #25638 adds /app handoff from CLI to Codex Desktop\n\nAlpha caveat: metadata read, not stable release notes.", + "Protocol/API changes in the alpha window:\n- #26444 supports model-defined reasoning efforts\n- #26446 preserves model-advertised effort order\n- #26447 removes response.processed websocket request\n- #26312 trims stale experimentalFeature keys", + "Developer/operator surface:\n- #26272 loads plugin hooks without every plugin capability\n- #26417 adds marketplaceSource to plugin list JSON\n- #25944 exposes local image paths to models\n- #25947 adds saved-image path hints for standalone imagegen", + "Why track prereleases?\n\nStable notes say what shipped. Alpha metadata shows where Codex is moving: Desktop handoff, app-server protocol, model metadata, plugins, and image flows.\n\nCompare:\nhttps://github.com/openai/codex/compare/rust-v0.137.0...rust-v0.138.0-alpha.4" + ], + "source_refs": { + "urls": [ + "https://github.com/openai/codex/releases/tag/rust-v0.138.0-alpha.4", + "https://github.com/openai/codex/compare/rust-v0.137.0...rust-v0.138.0-alpha.4", + "https://github.com/openai/codex/pull/25469", + "https://github.com/openai/codex/pull/25638", + "https://github.com/openai/codex/pull/26444", + "https://github.com/openai/codex/pull/26446", + "https://github.com/openai/codex/pull/26447", + "https://github.com/openai/codex/pull/26312", + "https://github.com/openai/codex/pull/26272", + "https://github.com/openai/codex/pull/26417", + "https://github.com/openai/codex/pull/25944", + "https://github.com/openai/codex/pull/25947", + "https://x.com/decodexspace/status/2062727471146152223", + "https://x.com/decodexspace/status/2062727473121616190", + "https://x.com/decodexspace/status/2062727474933547147", + "https://x.com/decodexspace/status/2062727476753895425" + ] + }, + "evidence_notes": [ + "GitHub release metadata was rechecked immediately before posting and rust-v0.138.0-alpha.4 remained the latest observed openai/codex prerelease.", + "The thread was revised after operator feedback to focus on important PR/commit clusters, anticipated workflow changes, protocol/API changes, and scan-friendly line breaks.", + "Chrome account readback showed @decodexspace before composing.", + "The X composer accepted all four thread posts and exposed Post all before submission.", + "X returned Your posts were sent after Post all.", + "Timeline readback showed the four newly published Decodex posts with matching text and four status URLs.", + "No media was attached because the previous X file upload path stalled the Chrome extension control channel; this run intentionally avoided file upload to validate text and layout only.", + "The operator later deleted this text-only thread after pointing out missing media, channel-lineage, and raw PR-number issues.", + "Follow-up review found this thread mixed stable-to-prerelease comparison into a prerelease-channel post; it is retained as audit evidence only and must not be used as a previous prerelease quote target." + ], + "claims": [ + { + "text": "rust-v0.138.0-alpha.4 is the latest observed openai/codex prerelease checkpoint.", + "evidence": "https://github.com/openai/codex/releases/tag/rust-v0.138.0-alpha.4", + "confidence": "confirmed" + }, + { + "text": "The rust-v0.137.0 to rust-v0.138.0-alpha.4 compare window has 45 ahead commits.", + "evidence": "https://github.com/openai/codex/compare/rust-v0.137.0...rust-v0.138.0-alpha.4", + "confidence": "confirmed" + }, + { + "text": "The compare window includes app-server accountSession/* protocol work and /app Desktop handoff work.", + "evidence": "https://github.com/openai/codex/pull/25469 and https://github.com/openai/codex/pull/25638", + "confidence": "confirmed" + }, + { + "text": "The compare window includes protocol/API changes around reasoning efforts, websocket request shape, and experimentalFeature keys.", + "evidence": "https://github.com/openai/codex/pull/26444, https://github.com/openai/codex/pull/26446, https://github.com/openai/codex/pull/26447, and https://github.com/openai/codex/pull/26312", + "confidence": "confirmed" + } + ], + "decision": { + "worthiness": "publish", + "priority": "high", + "idempotency_key": "x:decodexspace:openai-codex-rust-v0-138-0-alpha-4:structured-thread:text-only", + "reason": "Operator deleted the rough prerelease thread and requested a fresh run to inspect the improved structure; media upload remained unreliable, so this publication intentionally validated text structure only.", + "daily_limit": 8, + "daily_count_before": 3, + "daily_count_after": 7, + "day": "2026-06-05", + "timezone": "Asia/Shanghai" + }, + "publication": { + "posted_at": "2026-06-05T02:46:39Z", + "published_urls": [ + "https://x.com/decodexspace/status/2062727471146152223", + "https://x.com/decodexspace/status/2062727473121616190", + "https://x.com/decodexspace/status/2062727474933547147", + "https://x.com/decodexspace/status/2062727476753895425" + ], + "publisher": "chrome", + "account_verified": true, + "made_with_ai": false + }, + "post_lifecycle": { + "current_state": "deleted_by_operator", + "quote_eligible": false, + "superseded_by_candidate": "artifacts/github/social-candidates/openai-codex-rust-v0-138-0-alpha-4-prerelease-delta.json", + "reason": "The text-only thread was deleted by the operator and superseded by the adjacent alpha.3 to alpha.4 prerelease candidate with media expectation and clickable PR URLs." + }, + "caveats": [ + "No media was attached to this published thread.", + "A candidate-specific image exists locally at /Users/x/.codex/decodex/social-media/codex-cli-0-138-alpha-4-structured.svg.png, but X upload was intentionally avoided because it previously stalled the Chrome control channel.", + "This thread is a prerelease metadata read, not stable-release guidance.", + "This record is not a live quote target for future prerelease-chain posts." + ] +} diff --git a/artifacts/social/x/posts/2026-06-05/openai-codex-rust-v0-138-0-alpha-4-structured-read-upload-failed.json b/artifacts/social/x/posts/2026-06-05/openai-codex-rust-v0-138-0-alpha-4-structured-read-upload-failed.json new file mode 100644 index 0000000..e7c3795 --- /dev/null +++ b/artifacts/social/x/posts/2026-06-05/openai-codex-rust-v0-138-0-alpha-4-structured-read-upload-failed.json @@ -0,0 +1,96 @@ +{ + "schema": "social_post/v1", + "slug": "openai-codex-rust-v0-138-0-alpha-4-structured-read-upload-failed", + "channel": "x", + "target_account": "decodexspace", + "controller_account": "hackink", + "mode": "thread", + "status": "failed", + "audience": "Codex CLI alpha testers and Decodex Radar readers", + "text": [ + "Codex CLI 0.138.0-alpha.4 prerelease read\n\nWorth watching:\n- #25469 adds app-server accountSession/* protocol\n- #25638 adds /app handoff from CLI to Codex Desktop\n\nAlpha caveat: metadata read, not stable release notes.", + "Protocol/API changes in the alpha window:\n- #26444 supports model-defined reasoning efforts\n- #26446 preserves model-advertised effort order\n- #26447 removes response.processed websocket request\n- #26312 trims stale experimentalFeature keys", + "Developer/operator surface:\n- #26272 loads plugin hooks without every plugin capability\n- #26417 adds marketplaceSource to plugin list JSON\n- #25944 exposes local image paths to models\n- #25947 adds saved-image path hints for standalone imagegen", + "Why track prereleases?\n\nStable notes say what shipped. Alpha metadata shows where Codex is moving: Desktop handoff, app-server protocol, model metadata, plugins, and image flows.\n\nCompare:\nhttps://github.com/openai/codex/compare/rust-v0.137.0...rust-v0.138.0-alpha.4" + ], + "source_refs": { + "urls": [ + "https://github.com/openai/codex/releases/tag/rust-v0.138.0-alpha.4", + "https://github.com/openai/codex/compare/rust-v0.137.0...rust-v0.138.0-alpha.4", + "https://github.com/openai/codex/pull/25469", + "https://github.com/openai/codex/pull/25638", + "https://github.com/openai/codex/pull/26444", + "https://github.com/openai/codex/pull/26446", + "https://github.com/openai/codex/pull/26447", + "https://github.com/openai/codex/pull/26312", + "https://github.com/openai/codex/pull/26272", + "https://github.com/openai/codex/pull/26417", + "https://github.com/openai/codex/pull/25944", + "https://github.com/openai/codex/pull/25947" + ] + }, + "evidence_notes": [ + "The structured prerelease candidate was prepared after operator feedback that the earlier prerelease post was too generic and lacked readable line breaks.", + "GitHub release metadata shows rust-v0.138.0-alpha.4 was published as a prerelease on 2026-06-04T22:01:10Z.", + "GitHub compare metadata for rust-v0.137.0...rust-v0.138.0-alpha.4 showed 45 ahead commits and 44 PRs.", + "The revised thread maps bullets to concrete PRs for Desktop handoff, app-server account sessions, protocol/API changes, plugins, and image flows.", + "A fresh candidate-specific Decodex signal card was generated locally at /Users/x/.codex/decodex/social-media/codex-cli-0-138-alpha-4-structured.svg.png and visually reviewed before upload.", + "Chrome account readback before composing showed the active account as Decodex @decodexspace.", + "The first structured thread post was filled in the X compose dialog, but the first upload attempt hit an ambiguous X file-input strict-mode error before any file was attached.", + "A follow-up upload attempt and later Chrome lightweight reconnects timed out after the X file chooser/upload path was exercised.", + "Chrome troubleshooting checks after the stall showed Google Chrome running, the Codex Chrome Extension installed and enabled, and the native host manifest correct, so the failure is localized to the upload/control-channel path rather than missing extension installation.", + "No final Post or Post all action was clicked for this structured follow-up thread." + ], + "claims": [ + { + "text": "The structured follow-up thread was not published.", + "evidence": "No final Post or Post all action was clicked after the upload/control-channel stall.", + "confidence": "confirmed" + }, + { + "text": "The rust-v0.137.0 to rust-v0.138.0-alpha.4 compare window has 45 ahead commits.", + "evidence": "https://github.com/openai/codex/compare/rust-v0.137.0...rust-v0.138.0-alpha.4", + "confidence": "confirmed" + }, + { + "text": "The compare window includes app-server accountSession/* protocol work and /app Desktop handoff work.", + "evidence": "https://github.com/openai/codex/pull/25469 and https://github.com/openai/codex/pull/25638", + "confidence": "confirmed" + }, + { + "text": "The compare window includes protocol/API changes around reasoning efforts, websocket request shape, and experimentalFeature keys.", + "evidence": "https://github.com/openai/codex/pull/26444, https://github.com/openai/codex/pull/26446, https://github.com/openai/codex/pull/26447, and https://github.com/openai/codex/pull/26312", + "confidence": "confirmed" + } + ], + "decision": { + "worthiness": "publish", + "priority": "high", + "idempotency_key": "x:decodexspace:openai-codex-rust-v0-138-0-alpha-4:structured-thread", + "reason": "The structured prerelease read is worth publishing, but media upload made the Chrome control path unreliable and Publisher policy requires fail-closed behavior unless the operator explicitly approves a text-only fallback.", + "daily_limit": 8, + "daily_count_before": 3, + "daily_count_after": 3, + "day": "2026-06-05", + "timezone": "Asia/Shanghai" + }, + "failure": { + "reason": "chrome_media_upload_control_channel_stalled", + "details": "X file upload caused the Chrome extension control channel to time out after the structured post was drafted. The Publisher stopped before final submit and did not downgrade to text-only publication without explicit operator approval." + }, + "post_lifecycle": { + "current_state": "superseded_failed_attempt", + "quote_eligible": false, + "superseded_by_candidate": "artifacts/github/social-candidates/openai-codex-rust-v0-138-0-alpha-4-prerelease-delta.json", + "reason": "This failed attempt used the earlier stable-to-prerelease draft and is superseded by the adjacent alpha.3 to alpha.4 prerelease candidate." + }, + "media_refs": [ + "/Users/x/.codex/decodex/social-media/codex-cli-0-138-alpha-4-structured.svg.png" + ], + "caveats": [ + "The earlier rough prerelease thread had already been submitted before this structured follow-up attempt.", + "This record intentionally does not claim a published URL for the structured follow-up.", + "Retry publication only after Chrome/X media upload can complete without stalling, or after the operator explicitly approves text-only publication.", + "Do not use this failed attempt as a previous prerelease quote target." + ] +} diff --git a/dev/skills/codex-release-analysis/SKILL.md b/dev/skills/codex-release-analysis/SKILL.md index 391c7ac..40c118a 100644 --- a/dev/skills/codex-release-analysis/SKILL.md +++ b/dev/skills/codex-release-analysis/SKILL.md @@ -24,7 +24,13 @@ evidence. - Release tag, changelog URL, or app update URL - Existing `release_delta/v1`, `upstream_review/v1`, `upstream_impact/v1`, and `signal_entry/v1` artifacts -- GitHub compare metadata for gap detection, not as a substitute for source review +- GitHub compare metadata for gap detection and PR/commit-title grouping, not as a + substitute for source review +- Official Codex changelog entries from `https://developers.openai.com/codex/changelog` + when the update is app-shaped, mobile-shaped, or otherwise not represented by an + `openai/codex` GitHub release +- Current read-only benchmark observations from `@CodexReleases` and + `@Codex_Changelog` for format and coverage gaps only, never as technical evidence This advisory pass does not replace deterministic `release_delta/v1` generation. @@ -37,33 +43,106 @@ source-backed artifacts plus release/compare metadata. ## Release Reading Rules -- Treat release and prerelease tags as checkpoints over the commit/PR stream. +- Treat release and prerelease tags as reporting checkpoints over the commit/PR stream, + not as a separate higher-priority intake lane. +- Keep release and prerelease channels separate: + - Stable release posts compare the current stable release against the previous stable + release in the same tag channel. + - Prerelease posts compare the current prerelease against the previous prerelease in + the same upcoming release train, such as `0.138.0-alpha.3` -> + `0.138.0-alpha.4`. + - The first prerelease after a stable release compares against that stable release + and does not quote a prior prerelease post. +- Do not use the homepage top-level stable-versus-prerelease `release_delta/v1` pair + as the copy basis for every prerelease post. It is an index. Select the adjacent + channel pair that matches the post being written. - Treat release notes as discovery, not proof, when they are sparse. +- Treat official Codex app and mobile changelog entries as first-class release-shaped + sources. They can support a `release_pulse` or `watch_note` without GitHub compare + evidence when the post only summarizes the changelog entry and links that source. - Use GitHub compare data and PR mappings to explain what changed between stable and - prerelease tags. + prerelease tags. For prerelease posts, extract named PR/commit clusters first: + user-visible or anticipated workflow changes, protocol/API/schema changes, + plugin/config/tooling changes, and removals/deprecations. A generic theme summary + is not enough when the compare window contains named PRs or commit titles. +- When a candidate names important PRs in public copy, include direct GitHub PR URLs + on first mention. Raw `#12345` shorthand is allowed only as secondary notation after + the URL is already present or when the exact compare URL is the sole source link. - Prefer already-published `signal_entry/v1` items when they match the compare commit or PR evidence. - Do not imply a feature is broadly available when the source says alpha, beta, rollout, platform-gated, or config-gated. -- Do not duplicate a release bot; add accumulated Decodex analysis or caveats. +- Do not write a release recap that only duplicates a release bot. Prefer a summary + built from accumulated Decodex signal, upstream-impact, and commit/PR analysis. +- Do not let sparse prerelease bodies disappear silently. If a new prerelease is the + latest checkpoint but source analysis is incomplete, emit an explicit watch decision: + either a source-backed `watch_note` candidate that says only what is proven, or a + durable `needs_upstream_analysis` / no-op record with the gap list. +- Treat prerelease interpretation as Decodex's differentiated lane. Benchmark accounts + often cover stable releases and app changelogs quickly but usually do not explain + prerelease direction. Decodex should use release metadata, compare metadata, PR + titles, and existing Radar artifacts to produce early theme reads that are better + than release-bot reposts while keeping alpha caveats explicit. ## Release Rollup Path -When the target is an OpenAI Codex release or prerelease: +When the target is an OpenAI Codex stable release: + +1. Refresh or read release metadata. +2. Select the current stable release and the immediately previous stable release in + the same tag channel. +3. Compare current stable against previous stable. Do not mix prerelease-only + checkpoint copy into the stable release post unless it is already part of the + stable release delta. +4. Start from existing `signal_entry/v1`, `upstream_impact/v1`, and recent commit/PR + analyses that match the stable-to-stable compare range. +5. Use `release_rollup` only after accumulated evidence explains the useful changes. + +When the target is an OpenAI Codex prerelease: 1. Refresh or read `release_delta/v1`. -2. Select the top-level `stable_release` -> `prerelease` comparison unless the user - asks for a specific tag pair. -3. Start from matching `signal_entry/v1`, `upstream_impact/v1`, and recent analyses. -4. Run `decodex radar backfill-release-range --dry-run` to find unreviewed gaps. -5. Group useful, Control Plane, deprecated/removed, and watch-only changes. -6. If material gaps remain, stop with `upstream_analysis_required` instead of filling - them inside this skill. -7. Write `social_candidate/v1` with `decision.worthiness = "publish"`, `"defer"`, or - `"skip"` when the checkpoint needs a durable Publisher decision. -8. Refresh `release_delta/v1` after new signals are rendered so the homepage can map +2. Select the adjacent prerelease comparison for the same train. For example, if the + current checkpoint is `0.138.0-alpha.4`, prefer `0.138.0-alpha.3` -> + `0.138.0-alpha.4`. If it is the first prerelease after a stable release, compare + the current stable release -> first prerelease. +3. Start from existing `signal_entry/v1`, `upstream_impact/v1`, and recent + commit/PR analyses that match the compare range. +4. Use `decodex radar backfill-release-range --dry-run` to find `compare.pr_numbers` + gaps that still need code analysis. +5. Group findings by reader value: useful now, important for Decodex Control Plane, + anticipated user workflow changes, protocol/API changes, deprecated/removed + behavior, and watch-only changes. +6. Publish `release_rollup` only after the summary is grounded in those historical + analyses and passes the daily cap. +7. Publish a prerelease `watch_note` only when the latest checkpoint itself is useful + to readers and every claim is limited to release metadata, compare metadata, PR + titles, source URLs, and explicit caveats. Do not summarize unreviewed code behavior + in this mode. +8. Prefer a short prerelease-read thread when there is enough metadata to identify + themes. The first post should name the highest-value PR/commit cluster, follow-ups + should separate protocol/API changes from user-facing workflow changes, and the + final post should carry source and alpha caveats. +9. Record the channel lineage in candidate evidence: previous checkpoint, current + checkpoint, compare URL, previous prerelease post URL when one exists, and whether + this is the first prerelease after a stable release. +10. If material gaps remain, stop with `upstream_analysis_required` instead of filling + them inside this skill. +11. Write `social_candidate/v1` with `decision.worthiness = "publish"`, `"defer"`, or + `"skip"` when the checkpoint needs a durable Publisher decision. +12. Refresh `release_delta/v1` after new signals are rendered so the homepage can map the release window to tracked signals. +When the target is an official Codex app or mobile changelog entry: + +1. Read the current official changelog entry and preserve the version/date. +2. Check whether `@CodexReleases` or `@Codex_Changelog` already covered it; use that + only to calibrate format and urgency. +3. Use `release_pulse` for a source-led update card when the changelog lists concrete + user-visible changes. +4. Use `watch_note` when the changelog is useful but platform, plan, or rollout limits + should be highlighted. +5. Do not require GitHub compare evidence unless the post claims repository behavior. + ## Analysis Modes Use exactly one primary mode: @@ -77,6 +156,12 @@ Use exactly one primary mode: ## Prerelease Intro Path +For sparse Codex prereleases, prefer `delta_explainer`, `operator_impact`, or a +source-backed release rollup over `release_pulse`; the release version alone is rarely +the useful story. A timely prerelease-read `watch_note` is acceptable when it tells +readers what direction the metadata suggests, what is not yet reviewed, and where to +follow the exact checkpoint. + Do not treat sparse prerelease notes as automatic silence. For every new prerelease checkpoint, choose one outcome: @@ -91,6 +176,22 @@ checkpoint, choose one outcome: The intro must name the tag, source, timing, and evidence gap. Do not invent feature claims from the tag name, sparse body, or social style references. +Style constraints: + +- Release-bot style is useful for speed: version, three bullets, source link. +- Human analysis style is useful for value: what changes in a real workflow, why it + matters, what to try, and where the limit remains. +- Decodex should prefer the human-analysis shape whenever source evidence supports it. +- For app updates, the best shape is a concise update card: version/date, three + concrete user-visible changes, rollout caveat if present, and the official changelog. +- For prerelease alpha checkpoints, avoid excitement language. Use a careful watch + shape that names the exact tag, compare window, metadata-derived themes, and analysis + gap. +- Preserve scan-friendly formatting in every X draft: short headline, blank line, + two to four compact bullets or lines, then source/caveat. Do not publish a dense + paragraph when the source naturally splits into important commits, features, protocol + changes, and caveats. + ## Output Return: diff --git a/dev/skills/x-post-publisher/SKILL.md b/dev/skills/x-post-publisher/SKILL.md index 6352ec7..04ccd35 100644 --- a/dev/skills/x-post-publisher/SKILL.md +++ b/dev/skills/x-post-publisher/SKILL.md @@ -25,14 +25,65 @@ Decodex plugin skill. - Do not read upstream Codex source, patches, or PR files here. - Do not create fresh analysis. Consume checked artifacts and the candidate or operator handoff only. -- Use Chrome only for this low-frequency publishing workflow. -- Before posting, verify the logged-in X account is `@decodexspace`. -- If account state, X compose/readback, upload, duplicate detection, or final URL - readback is unreliable, do not post; write `blocked` or `failed`. - Treat X style observations as format input only. Technical claims must come from GitHub, changelog, signal, upstream-review, upstream-impact, release-delta, or candidate evidence. +## Browser Boundary + +Use `@Chrome` for X publication only inside this low-frequency Publisher workflow. +Before composing, verify the logged-in account is `@decodexspace`. If account +verification, Chrome availability, X page structure, media upload, duplicate detection, +or final URL readback is unreliable, do not post. Write `status = "failed"` or +`status = "blocked"` with evidence instead. + +Treat Chrome tabs as scoped resources. After account verification, compose, upload, +and final URL readback are done, close or release all tabs opened for the workflow. +Keep a tab only as an explicit human handoff, such as login, CAPTCHA, account approval, +or an unfinished operator-controlled page, and record that handoff in the result. + +Style observations from X are not technical evidence. They can shape format and tone, +but every technical claim must point back to GitHub, changelog, signal, upstream-review, +or upstream-impact evidence. + +## Benchmark Patterns + +Use these as format patterns only: + +| Pattern | Good for | Decodex adaptation | +| --- | --- | --- | +| Release/update card | `release_pulse` or high-value `release_rollup` posts. | Product/version/theme headline, two or three reader-visible changes, source link, optional thread details. | +| High-density changelog | One-post summaries from a source changelog or release. | Headline, three high-signal bullets, source card; no extra commentary. | +| Release rollup | `release_rollup` posts after a release or prerelease. | Summarize what prior commit/PR analysis found: useful now, Control Plane impact, deprecations, and watch-only gaps. | +| Human workflow read | `practical_explainer` and `operator_impact`. | Start with the concrete workflow change, then explain why it matters and what caveat remains. | +| Watch note | Interesting but incomplete evidence. | Say what changed, why Radar is watching, and what evidence is still missing. | + +Refresh the benchmark sample when publishing about a current Codex app, mobile, CLI, or +prerelease update. `@CodexReleases` and `@Codex_Changelog` often cover the same updates +quickly; Decodex must either add sharper source-backed value or publish a concise, +honest watch note. Do not skip an official app update just because the source is the +OpenAI changelog rather than GitHub. + +For prereleases, Decodex should try to be better than the benchmark accounts. If they +do not cover prereleases, publish a careful prerelease read when compare metadata and +PR titles reveal useful direction. Keep it as a thread when necessary, but make the +thread concrete: important PR/commit clusters, anticipated workflow changes, +protocol/API/schema changes, operator-facing changes, then source/caveat. + +Keep release and prerelease channels separate. Stable release posts compare the current +stable release to the previous stable release. Prerelease posts compare the current +prerelease to the previous prerelease in the same train; only the first prerelease after +a stable release compares against the stable release baseline. + +For prerelease posts after the first checkpoint in a train, quote the previous +`@decodexspace` prerelease post when a previous-post URL exists. This creates a visible +history of the prerelease sequence before the stable release. If the previous +prerelease checkpoint exists but Decodex has no previous post URL, treat that as a +Publisher coverage gap, record it in evidence/caveats, and do not invent a quote. +When a previous `social_post/v1` record has `post_lifecycle.quote_eligible = false`, +do not quote it even if `publication.published_urls` exists; deleted, failed, text-only +test, or superseded posts are lineage evidence, not quote targets. + ## Publish Modes Choose one mode: `release_pulse`, `release_rollup`, `practical_explainer`, @@ -50,14 +101,57 @@ Publish only when all are true: Radar artifacts. - The post is in English and passes `x-post-quality-system`. - The source evidence is enough for every technical claim. -- The item is `critical` or `high`, or it is a release/prerelease rollup, intro, or - watch note with clear reader value. +- For `social_candidate/v1` input, `decision.worthiness` is `publish`; do not require + non-schema fields such as `status = publishable` or `decision.outcome = publishable`. +- `dev/skills/x-post-quality-system/SKILL.md` passes the candidate as externally + valuable. +- The candidate answers in one screen: what changed, who can use or observe it, and what + source proves it. +- The item is `critical` or `high`, or it is a release/app/prerelease update with clear + reader value. +- The post is useful to Codex users, Decodex operators, or builders tracking the Codex + app-server ecosystem. - The idempotency key has not already been published or blocked for the same source. - The daily cap of 8 posts for `@decodexspace` in `Asia/Shanghai` is not reached. -Skip low-value internal churn. Do not publish a single-PR rename, trace-only note, -low-context operator caution, or internal audit reminder unless it rolls up into a -broader release/update story or concrete external operator decision. +For official Codex app changelog updates, source-backed reader-visible changes are +enough for a `release_pulse` when the post stays within the changelog facts. For sparse +Codex prereleases, publish only as a caveated prerelease-read `watch_note` unless +existing release-window analysis supports a stronger rollup. Metadata-derived themes +are allowed; unreviewed implementation claims are not. + +For prerelease-read threads, formatting is a publishability gate. Do not publish a +single dense paragraph that buries evidence. Use explicit line breaks and compact +bullets so readers can scan: + +- what is worth watching +- which PR/commit names support it +- what protocol/API contracts changed +- what remains alpha or unreviewed +- which previous prerelease checkpoint or quoted post this post follows + +Use clickable PR references. Important PRs should appear as direct GitHub PR URLs when +first introduced in the thread. Raw `#12345` references are secondary shorthand; do not +make readers manually search for the PR. + +Skip low-value internal churn. Do not post just because a signal exists. In particular, +do not publish single-PR renames, trace-only compatibility notes, low-context operator +cautions, or Decodex-internal audit reminders unless they roll up into a broader +release/update story or concrete external operator decision. + +## Daily Cap + +The daily cap is 8 X posts for `@decodexspace`, counted by `Asia/Shanghai` calendar day +unless the operator supplies another timezone. + +If publishing the candidate would exceed the cap: + +- do not post +- write `social_post/v1` with `status = "blocked"` +- set `block.reason = "daily_cap_exceeded"` +- preserve candidate text, source refs, priority, worthiness reason, and daily counts +- report the block in the automation result so the operator can analyze why volume + exceeded the cap ## Image Generation @@ -68,11 +162,26 @@ storage by default, not Git. After upload, record the X status URL, any `/photo/ readback URL, and a short prompt/hash note when useful. If text-only is still valuable with the source link card, publish text-only; otherwise skip or fail closed. +If the X file chooser, media upload, or post-upload Chrome control channel stalls, +stop the publication attempt. Do not keep retrying upload in the same run, and do not +downgrade to text-only publication unless the operator explicitly approves that +fallback for the current candidate. Write a `status = "failed"` `social_post/v1` +record when the prepared candidate or failure mode has durable audit value. + ## Claim Review Before publishing: - Map every sentence to evidence. +- Map every prerelease bullet to a PR number, commit title, compare URL, or release + URL when the claim names a concrete change. +- Check that important PR references in public copy are clickable URLs on first + mention, unless the thread includes the exact compare URL as the only practical link + target due to length. +- For prerelease posts, verify the adjacent channel pair and previous-post quote state: + current prerelease, previous prerelease or stable baseline, compare URL, and previous + prerelease post URL when one exists. Read `post_lifecycle.quote_eligible` before + deciding that a historical prerelease post is safe to quote. - Remove claims based only on social posts or engagement. - Make beta, rollout, platform, and config gates explicit. - Avoid local paths, credentials, private issue details, or internal runtime state. diff --git a/dev/skills/x-post-quality-system/SKILL.md b/dev/skills/x-post-quality-system/SKILL.md index 84c5985..e0de911 100644 --- a/dev/skills/x-post-quality-system/SKILL.md +++ b/dev/skills/x-post-quality-system/SKILL.md @@ -20,15 +20,27 @@ started. ## Benchmarks Studied -The current standard comes from live-readback sampling on 2026-06-03: - -- `@CodexReleases`: 55 visible posts/thread nodes from 2026-06-03 back to +The standard comes from live-readback sampling, but recurring automation must refresh +the sample before deciding publishability. Do not rely only on stale benchmark memory +when the user is asking about current release coverage. + +Recent samples: + +- 2026-06-05: `@CodexReleases` covered Codex app `26.602` with a release/update card, + thread split, and media; it also covered Codex CLI `0.137.0`. +- 2026-06-05: `@Codex_Changelog` covered Codex app `26.602` and Codex CLI `0.137.0` + with dense source-led bullets and changelog links. +- 2026-06-05: neither benchmark account's visible sample emphasized + `rust-v0.138.0-alpha.4` prerelease interpretation. This is a Decodex opportunity, + not a reason to skip. +- 2026-06-03: `@CodexReleases`: 55 visible posts/thread nodes from 2026-06-03 back to 2026-04-24. -- `@Codex_Changelog`: 34 visible posts from 2026-06-03 back to 2026-02-18. +- 2026-06-03: `@Codex_Changelog`: 34 visible posts from 2026-06-03 back to + 2026-02-18. Treat these accounts as operational benchmarks, not as technical evidence for claims. -Every technical claim still needs source-backed GitHub, changelog, release, signal, -upstream-review, or upstream-impact evidence. +Every technical claim still needs source-backed GitHub, official OpenAI changelog, +release, signal, upstream-review, or upstream-impact evidence. ## Editorial Bar @@ -51,6 +63,34 @@ Those items can still be tracked in Radar artifacts. They should not become X po unless they roll up into a broader release, product update, concrete workflow change, or external operator decision. +Do not reject a current official app update solely because Decodex has no matching +GitHub compare artifact. If the official changelog gives concrete user-visible changes, +the correct gate is source-led `release_pulse` or caveated `watch_note`, not +`needs_upstream_analysis`. + +Do reject a sparse prerelease candidate if it tries to infer implementation behavior +from unreviewed code. A sparse prerelease can pass as a precise prerelease-read watch +note: exact tag, source link, compare/backfill status, metadata-derived themes, and a +caveat that release-window source analysis is still open. + +For prerelease threads, reject generic "platform plumbing" prose when the compare +window contains named PRs or commit titles. The draft must surface at least two of: + +- important PR/commit cluster names or numbers +- anticipated user workflow changes +- protocol/API/schema changes +- removals, deprecations, or compatibility boundaries +- plugin, config, sandbox, tool, or release-engineering changes + +Formatting is part of the quality bar. Reject drafts that read as one dense paragraph +when bullets or line breaks would make the source evidence easier to scan. + +For public X copy, do not leave important PR references as raw `#12345` only. Prefer +direct clickable PR URLs the first time a PR is used in a thread. Short PR numbers are +acceptable only when the same post or an adjacent source post already provides the URL +or when character budget makes the URL impossible and the final source link covers the +exact compare range. + ## Good Post Shapes Prefer concise release/update cards, dense changelog summaries, practical workflow @@ -66,6 +106,102 @@ Use threads only when the first post is valuable alone. Follow-ups should be foc buckets such as highlights, fixed, added, security, availability, caveats, or source; do not split a weak candidate into a thread to make it look substantial. +### Release Or Update Card + +Use when a release, prerelease, app update, or changelog entry is the story. + +Pattern: + +```text +Codex update: + +What changed: +- +- +- + +Source: +``` + +Use a short thread only when the main post already has enough value and details would not +fit cleanly. Follow-up posts should be `details`, `fixed`, `availability`, or `source`; +do not fragment weak material into a thread. + +For Codex app updates, prefer this shape when the official changelog has three or more +reader-visible changes. Include the version and the official changelog URL. + +For sparse prereleases, use this shape only as a prerelease-read watch note. Replace +"What changed" with "What the metadata suggests" plus "What is still being reviewed" +when needed. + +### Prerelease Read Thread + +Use when a prerelease is sparse but the compare window carries useful direction. + +Pattern: + +```text +Codex CLI prerelease read + +Worth watching: +- +- + +Alpha caveat: +``` + +```text +Protocol/API changes: +- +- +- +``` + +```text +Developer/operator surface: +- +- + +Source: +``` + +Keep each thread node visually comfortable: one idea per post, a blank line after the +headline, compact bullets, and no wall-of-text paragraph. + +### High-Density Changelog + +Use when the value is a concise summary of a known source. + +Pattern: + +```text +Codex is out. + +- +- +- + +Changelog: +``` + +This shape should be dense and source-led. Do not add commentary that hides the actual +change. + +### Operator Decision + +Use `operator_impact` sparingly. It must read as an external operator decision, not a +Decodex maintenance note. + +Good operator-impact posts name a concrete action: + +- enable or avoid a provider/config/path +- update an integration assumption +- plan a rollout or migration +- watch a beta/availability boundary + +Do not publish an operator-impact post if the action is only "Decodex should audit this +internally." + ## Visual System `decodex_signal_card` is a visual system, not a fixed image. Publish media only when a @@ -82,6 +218,7 @@ Required shared elements: - deterministic title/source/date overlay when text is needed - no AI-rendered long text - no mascots, people, logos, noisy gradients, generic orbs, or stock-like abstraction +- no reused live-test image, old generic release card, or source-agnostic placeholder Allowed subject variations: @@ -108,12 +245,28 @@ when useful, and any media caveat. ## Image Prompt Contract -Start from the `docs/spec/social-publishing.md` base prompt, then add `subject`, -`source`, `visual_metaphor`, `palette`, and `forbidden` slots. Before upload, verify the -image is candidate-specific, visually consistent, not generic or off-brand, useful with -the post text, and independent of AI-rendered readable text. Record the prompt summary, -content hash or final X media URL, and quality-check outcome in `social_post/v1` -evidence notes or caveats. +Start from the `docs/spec/social-publishing.md` base prompt, then add source-specific +slots: + +- `subject`: the concrete release/update/workflow being explained +- `source`: GitHub release, OpenAI changelog, PR, or signal artifact +- `visual_metaphor`: release card, source card, UI/workflow preview, or operator diagram +- `palette`: near-black or off-white with restrained magenta, lime, and blue accents +- `forbidden`: generic abstract art, long text, unreadable labels, people, mascots, + decorative blobs, unrelated UI + +Before upload, perform a visual quality check. The image must pass all: + +- It is specific to this candidate. +- It is visually consistent with the Decodex system. +- It is not ugly, noisy, generic, or off-brand. +- It still makes sense if the post text is read first. +- It does not rely on AI-rendered readable text. +- It has enough negative space and contrast for a deterministic overlay or X preview. +- It avoids false UI screenshots, fake OpenAI branding, and unreadable pseudo-text. + +Record the prompt, media path, and quality-check outcome in `social_post/v1` evidence +notes or caveats. Include a content hash or final X media URL when available. ## Failure Rules diff --git a/docs/runbook/social-publishing-workflow.md b/docs/runbook/social-publishing-workflow.md index bd3dfb0..9346818 100644 --- a/docs/runbook/social-publishing-workflow.md +++ b/docs/runbook/social-publishing-workflow.md @@ -44,6 +44,7 @@ for technical claims. | Account | Useful pattern | Decodex stance | | --- | --- | --- | +| `@CodexReleases` | Fast release/update cards, media, and short thread splits for Codex app, mobile, and CLI updates. | Use as coverage and format benchmark; do not let it replace official source evidence. | | `@Codex_Changelog` | Fast release-aware bullets with a changelog link. | Useful for `release_pulse`, but Decodex should not become a duplicate release bot. | | `@CodexReleases` | Version/update cards and short release threads. | Useful for timely release or prerelease intros, but Decodex should add evidence, caveats, and operator framing instead of only mirroring a tag. | | `@LLMJunky` | Practical user interpretation: how a feature changes real workflows, what is worth trying, and where limits remain. | Prefer this style when Radar evidence can support the claim quickly. | @@ -59,11 +60,48 @@ Live Chrome readback on 2026-06-04 confirmed two useful benchmark shapes: when the release needs structure, but keep Decodex-specific caveats and evidence in the lead instead of burying them in the thread. +For current release/app automation, refresh `@CodexReleases` and +`@Codex_Changelog` readback before deciding that Decodex should skip. A missed official +Codex app or mobile changelog entry is a Publisher coverage failure, not an upstream +GitHub analysis gap. + +For current prereleases, lack of benchmark-account coverage is a Decodex advantage. +Use compare and PR-title metadata to publish an early prerelease read when the direction +is useful, while labeling the post as alpha metadata interpretation instead of a stable +feature summary. + +Keep release and prerelease channels separate: + +- release channel: compare the current stable release to the previous stable release +- prerelease channel: compare the current prerelease to the previous prerelease in the + same train +- first prerelease after a stable release: compare stable release to first prerelease, + and do not quote a previous prerelease post +- later prereleases: quote the previous `@decodexspace` prerelease post when a previous + post URL exists, so readers can follow the full prerelease history before stable + release + +For prerelease reads, do not write a single generic theme paragraph. First group the +compare window into reader-facing buckets: + +- important PR/commit clusters +- anticipated user workflow changes +- protocol/API/schema changes +- removals, deprecations, or compatibility boundaries +- plugin, config, sandbox, image/tool, or release-engineering changes + +Use those buckets to shape a short thread with line breaks and compact bullets. +Put direct GitHub PR URLs on the first public mention of important PRs. Use raw PR +numbers only as secondary shorthand after readers already have a clickable URL or when +one exact compare URL intentionally carries the detailed PR list. + ## Workflow 1. Start from source evidence. - Prefer a source-backed `upstream_review/v1`, merged PR bundle, release-delta compare entry, already-rendered `signal_entry/v1`, or `upstream_impact/v1`. + - For Codex app and mobile updates, the official Codex changelog is source + evidence. Use GitHub only for repository behavior claims. - Do not start from social engagement alone. - Publisher automation is an artifact consumer. It must not perform fresh upstream Codex source analysis; if the checked artifacts do not support the claim, keep the @@ -90,6 +128,15 @@ Live Chrome readback on 2026-06-04 confirmed two useful benchmark shapes: 4. Decide whether to publish. - Publish only when the change has a clear `release_pulse`, `practical_explainer`, `release_rollup`, `operator_impact`, or valuable `watch_note` angle. + - For `social_candidate/v1`, use `decision.worthiness = "publish"` as the + schema-defined handoff signal. Do not require non-schema `status` or + `decision.outcome` fields. + - For prerelease candidates, require scan-friendly text that names concrete + PRs/commits or source-backed buckets. Treat dense one-paragraph drafts as + quality failures even when the technical claims are source-backed. + - For prerelease candidates, verify adjacent channel lineage and quote state before + composing: previous checkpoint, current checkpoint, compare URL, first-prerelease + status, and previous prerelease post URL when available. - Skip when the change is internal cleanup, too weakly sourced, too private, too vague, or not useful enough for a reader. @@ -115,6 +162,9 @@ Live Chrome readback on 2026-06-04 confirmed two useful benchmark shapes: - Attach generated media when it is useful and available. - Fail closed if account verification, duplicate detection, media upload, or final URL readback is unreliable. + - If X file upload stalls the Chrome control channel, stop after one failed upload + path. Do not keep retrying and do not publish text-only unless the operator + explicitly approves that fallback for the current candidate. - Close or release Chrome tabs before the automation ends. Keep a tab only when it is an explicit human handoff such as login, CAPTCHA, or account approval. diff --git a/docs/spec/social-candidate.md b/docs/spec/social-candidate.md index e9078aa..d8b1a48 100644 --- a/docs/spec/social-candidate.md +++ b/docs/spec/social-candidate.md @@ -58,6 +58,8 @@ automation may consume it to decide whether and when to write `social_post/v1`. Optional fields: - `caveats`: rollout limits, version gates, uncertainty, or platform limits. +- `media_refs`: checked-in or local generated assets intended for downstream Publisher + review. - `next_steps`: concrete downstream Publisher or editorial follow-up actions. ## Source References @@ -83,12 +85,47 @@ candidate comes from continuous Radar. | `reason` | string | Short source-backed reason. | | `idempotency_key` | string | Stable key derived from account, source, and mode. | +`social_candidate/v1` does not define top-level `status` or `decision.outcome` +fields. Downstream Publisher automation must use `decision.worthiness = "publish"` as +the schema-defined handoff signal, plus source refs and quality-system review, when +deciding whether to write a `social_post/v1` record. + +Candidate producers may add explanatory `next_steps`, but they must not rely on +non-schema publishability fields that the validator does not require. + +Prerelease candidates must preserve enough structure for downstream Publisher review. +When compare metadata includes named PRs or commit titles, `candidate_text` should not +collapse the release into a generic theme paragraph. It should separate important +PR/commit clusters, anticipated user-facing changes, protocol/API/schema changes, and +caveats across thread nodes or compact bullets. + +Public candidate text should make important PR references clickable on first mention. +Use direct GitHub PR URLs in `candidate_text` for the PRs that carry the reader-facing +claim. Raw `#12345` shorthand is acceptable only after the URL has appeared or when a +single exact compare URL intentionally covers many small PR references within the X +length limit. + +Prerelease candidates must also preserve channel lineage. Evidence notes or source refs +must identify the previous checkpoint, current checkpoint, adjacent compare URL, whether +the checkpoint is the first prerelease after a stable release, and the previous live +and quote-eligible `@decodexspace` prerelease post URL when one exists. Do not hand off +a prerelease candidate that only compares the latest stable release to the latest +prerelease when an adjacent prerelease-to-prerelease comparison is available. + ## Boundary Rules - Do not write `social_post/v1` from the upstream source-analysis automation. - Do not publish to X from a `social_candidate/v1` producer. - Do not include claims that are not backed by `upstream_review/v1`, `upstream_impact/v1`, - `signal_entry/v1`, `release_delta/v1`, or source URLs. + `signal_entry/v1`, `release_delta/v1`, official changelog entries, release metadata, + compare metadata, or source URLs. - Do not imply Decodex runtime support unless Control Plane evidence exists. +- Do not use dense prose that hides concrete prerelease evidence when the source can be + expressed as PR/commit bullets, protocol/API changes, and alpha caveats. +- Do not leave important public PR references as raw PR-number-only text when direct + GitHub PR URLs fit in the candidate. +- Do not mix stable release and prerelease channels. Release candidates use + stable-to-stable comparison; prerelease candidates use adjacent prerelease comparison, + except the first prerelease after a stable release. - Use `social_candidate` as the upstream-review next action for public Publisher opportunities that are not yet publication records. diff --git a/docs/spec/social-publishing.md b/docs/spec/social-publishing.md index c219ac4..27f1da9 100644 --- a/docs/spec/social-publishing.md +++ b/docs/spec/social-publishing.md @@ -69,7 +69,10 @@ Optional fields: - `skip`: required when `status = "skipped"`. - `caveats`: rollout limits, uncertainty, platform limits, or version gates. - `media_refs`: optional X media readback URLs, external media pointers, content - hashes, or explicitly operator-approved checked-in sample paths. + hashes, local generated assets, or explicitly operator-approved checked-in sample + paths. +- `post_lifecycle`: current live/deleted/superseded state used to decide whether a + previous post is eligible as a future quote target. ## Post Modes @@ -109,6 +112,26 @@ Rules: - Do not use a social post to replace the site signal or upstream-impact artifact. - Do not quote third-party posts at length. Summarize style or public reaction unless the quoted text is short and necessary. +- Treat official OpenAI Codex changelog entries as evidence for app, mobile, and + product-surface claims when the post stays within that changelog. +- Treat X benchmark accounts as format and coverage evidence only, not as proof for a + technical claim. +- For prerelease reads, map concrete bullets to PR numbers, commit titles, compare + metadata, or release URLs. Do not publish a generic theme paragraph when the evidence + can name important commits, anticipated features, protocol/API changes, removals, or + operator-facing changes. +- Important PR references in public copy should be clickable on first mention. Prefer + direct GitHub PR URLs over raw `#12345` shorthand unless the post relies on a single + exact compare URL to cover many small PR references within X length limits. +- Keep release and prerelease channels separate. Stable release posts must compare the + current stable release with the previous stable release. Prerelease posts must compare + the current prerelease with the previous prerelease in the same train, except the + first prerelease after a stable release, which compares against that stable baseline. +- For prerelease posts after the first checkpoint in a train, include the previous + live, quote-eligible prerelease post URL in `source_refs.urls` when it exists and + publish as a quote of that previous post. This keeps the prerelease history visible + before the stable release ships. Deleted, superseded, failed, or text-only test posts + must not become quote targets for the next prerelease. ## Decision Object @@ -169,6 +192,26 @@ release research, compose, upload, and readback tabs after the `social_post/v1` captures the result. A tab may stay open only as an explicit human handoff, such as login, CAPTCHA, account approval, or a page that still requires operator input. +## Post Lifecycle + +`post_lifecycle` records state that can change after the original publication or +publish attempt. It is optional for ordinary live posts, but required when a post is +deleted, superseded, failed after drafting, or otherwise must not become the next +prerelease quote target. + +Fields: + +| Field | Type | Notes | +| --- | --- | --- | +| `current_state` | string | `live`, `deleted_by_operator`, `superseded_published`, `superseded_text_only`, or `superseded_failed_attempt`. | +| `quote_eligible` | boolean | May be true only for live published posts that should be quoted by a later prerelease post. | +| `superseded_by_candidate` | string | Required for superseded states; points to the corrected candidate or replacement artifact. | +| `reason` | string | Short operator-readable reason for the lifecycle state. | + +Deleted, failed, skipped, blocked, or superseded posts must set `quote_eligible = +false`. Publisher automation must follow this field when building prerelease quote +chains; it must not quote a post just because a previous `published_urls` entry exists. + ## Generated Image Contract Generated media is optional. Use it only when it adds reader value beyond the text and @@ -215,17 +258,40 @@ prune old cache entries according to operator policy; the cache is not source co Release and prerelease publishing is separate from continuous six-hour Radar review. Release checkpoint automation may poll upstream releases more frequently than the -commit review loop, but it must publish only when a new release or prerelease checkpoint -appears and enough evidence exists for the selected mode. +commit review loop, but it must record an explicit terminal outcome whenever a new +release, prerelease, app update, or changelog checkpoint appears. Rollups must use prior `upstream_review/v1`, `upstream_impact/v1`, `signal_entry/v1`, -and compare evidence. Sparse Codex prerelease bodies are not sufficient proof. -However, a prerelease intro does not need to pretend to be a full rollup: it may publish -a cautious `release_pulse` or `watch_note` from public release metadata, compare -metadata, and a clear caveat about what Radar has not analyzed yet. If the only fact is -the tag name with no reader value, automation should write a `social_candidate/v1` with -`decision.worthiness = "defer"` or `"skip"` instead of posting. +and compare evidence. Sparse Codex prerelease bodies are not sufficient proof for +feature claims. + +However, a prerelease intro does not need to pretend to be a full rollup. A sparse +prerelease may still produce a `watch_note` when the post is useful as a timely +prerelease read and every claim is limited to source-backed release metadata, compare +metadata, PR-title metadata, exact source URLs, and explicit caveats. If the only fact +is the tag name with no reader value, automation should write a `social_candidate/v1` +with `decision.worthiness = "defer"` or `"skip"` instead of posting. + +Official Codex app or mobile changelog entries may produce `release_pulse` posts when +the changelog itself contains concrete user-visible changes. Release checkpoint automation should normally write `social_candidate/v1` first. X Publisher consumes only candidates whose `decision.worthiness = "publish"` and writes the terminal `social_post/v1` record. + +Prerelease posts are incremental. They must record: + +- previous checkpoint and current checkpoint +- compare URL for that adjacent pair +- whether this is the first prerelease after a stable release +- previous prerelease post URL when one exists, or a caveat when the prior checkpoint + has no Decodex post to quote +- whether any previous post record is deleted, superseded, or otherwise ineligible as a + quote target + +Prerelease threads must stay scan-friendly: + +- one idea per post +- blank line after the headline when the post has details +- compact bullets for PR/commit clusters, protocol/API changes, and caveats +- source URL in the final post or the post that makes the source-backed claim diff --git a/scripts/github/contracts.py b/scripts/github/contracts.py index 15a1330..a55a8a3 100644 --- a/scripts/github/contracts.py +++ b/scripts/github/contracts.py @@ -44,6 +44,13 @@ SOCIAL_POST_STATUSES = {"published", "blocked", "failed", "skipped"} SOCIAL_POST_PRIORITIES = {"critical", "high", "normal", "low"} SOCIAL_POST_WORTHINESS = {"publish", "skip", "block"} +SOCIAL_POST_LIFECYCLE_STATES = { + "deleted_by_operator", + "live", + "superseded_failed_attempt", + "superseded_published", + "superseded_text_only", +} SOCIAL_BLOCK_REASONS = { "daily_cap_exceeded", "duplicate", @@ -858,6 +865,32 @@ def validate_social_post(entry: dict[str, Any]) -> ValidationResult: elif status == "skipped" and not isinstance(entry.get("skip"), dict): errors.append("skip is required when status is skipped") + lifecycle = entry.get("post_lifecycle") + if lifecycle is not None: + if not isinstance(lifecycle, dict): + errors.append("post_lifecycle must be an object when present") + else: + current_state = lifecycle.get("current_state") + quote_eligible = lifecycle.get("quote_eligible") + if current_state not in SOCIAL_POST_LIFECYCLE_STATES: + errors.append( + "post_lifecycle.current_state must be one of " + f"{sorted(SOCIAL_POST_LIFECYCLE_STATES)}" + ) + if not isinstance(quote_eligible, bool): + errors.append("post_lifecycle.quote_eligible must be boolean") + if not isinstance(lifecycle.get("reason"), str) or not lifecycle["reason"]: + errors.append("post_lifecycle.reason must be a non-empty string") + superseded_by = lifecycle.get("superseded_by_candidate") + if superseded_by is not None and (not isinstance(superseded_by, str) or not superseded_by): + errors.append("post_lifecycle.superseded_by_candidate must be non-empty when present") + if quote_eligible is True and (status != "published" or current_state != "live"): + errors.append("post_lifecycle.quote_eligible can be true only for live published posts") + if isinstance(current_state, str) and current_state.startswith("superseded") and superseded_by is None: + errors.append( + "post_lifecycle.superseded_by_candidate is required for superseded states" + ) + for list_field in ("caveats", "media_refs"): values = entry.get(list_field, []) if values is not None and ( diff --git a/scripts/github/social_post.schema.json b/scripts/github/social_post.schema.json index 0883e4e..3195cbc 100644 --- a/scripts/github/social_post.schema.json +++ b/scripts/github/social_post.schema.json @@ -291,6 +291,70 @@ "type": "string", "minLength": 1 } + }, + "post_lifecycle": { + "type": "object", + "additionalProperties": false, + "required": ["current_state", "quote_eligible", "reason"], + "properties": { + "current_state": { + "type": "string", + "enum": [ + "live", + "deleted_by_operator", + "superseded_published", + "superseded_text_only", + "superseded_failed_attempt" + ] + }, + "quote_eligible": { + "type": "boolean" + }, + "superseded_by_candidate": { + "type": "string", + "minLength": 1 + }, + "reason": { + "type": "string", + "minLength": 1 + } + }, + "allOf": [ + { + "if": { + "properties": { + "quote_eligible": { + "const": true + } + }, + "required": ["quote_eligible"] + }, + "then": { + "properties": { + "current_state": { + "const": "live" + } + } + } + }, + { + "if": { + "properties": { + "current_state": { + "enum": [ + "superseded_published", + "superseded_text_only", + "superseded_failed_attempt" + ] + } + }, + "required": ["current_state"] + }, + "then": { + "required": ["superseded_by_candidate"] + } + } + ] } }, "allOf": [ @@ -341,6 +405,28 @@ "then": { "required": ["skip"] } + }, + { + "if": { + "properties": { + "post_lifecycle": { + "properties": { + "quote_eligible": { + "const": true + } + }, + "required": ["quote_eligible"] + } + }, + "required": ["post_lifecycle"] + }, + "then": { + "properties": { + "status": { + "const": "published" + } + } + } } ] } diff --git a/site/src/content/release-deltas/openai-codex-latest.json b/site/src/content/release-deltas/openai-codex-latest.json index 8288366..957e4b2 100644 --- a/site/src/content/release-deltas/openai-codex-latest.json +++ b/site/src/content/release-deltas/openai-codex-latest.json @@ -1,9508 +1,1545 @@ { "compare": { - "ahead_by": 1, + "ahead_by": 45, "commit_shas": [ - "4eac96bb3e1e35fa99242b44eb87494750dc0f7a" + "99c9be1d30ea78fad24d9eca8daa3526592a77b5", + "8030c3697019b32dd0fc2b232cea0c2c2574fe9d", + "a2a9e767f7fc5c4fa9dc6c91c6907612dda72cf3", + "52b359b24913ddab5d12d42f2f113b0e63843063", + "2d5c264ebc26c276ca6cc312389abde453ca69aa", + "10b408080a1009ca99be50cf8bc3fe45dfe7223b", + "aeac226d16523875a3fc77f61d6edcd2943155fc", + "57ab4c89e05d13b81722780ffc50eee0ea6cf445", + "a2ebe07b39823945aaedd4e1acbd70316ca13f1d", + "d8121f93c8df2e9066e929128886cae2fc81782b", + "0eb7e6d79b44b95d4aa6b22759322efcccde3521", + "2ca3810005f61bb033ccf6c48111e2aa4536b0e4", + "11bceb8f8bfdd8723da10bdcaa767a19d92a2a57", + "4231472c03e6c6e3374b1c19ef096ee28476f9dd", + "14272b21e95ed9a54fae21c27d33d3771a9ee30f", + "0ed2735d195d149766b242d972f95f3173ebc984", + "4d4837c4951375c877986e239304c95ebbe14633", + "8285cd278babadc98458194fb2dbc3ae7f00429c", + "80b65e99457344f5f05fb4948eb35c6b1d320e3f", + "6bcccb0ee6b875a41ed9e8fb7e299a6b98dd3faa", + "c143a86de8c5da3ae5127565b9ffe7094d2e5c28", + "ad2012d645b7146d31bb03f98e2bd9371635d11a", + "16d02ec77c6337ccea02a8c909e05bf3d905f887", + "d297616d3e6a27865fb327e7b4ea3d548f7fdb45", + "d46a98d31a9c32949580e6e3ce65b85772f3470d", + "7da4af622ffc68d7b687e61ba8f19163af50fab8", + "d81fcdf8ef3f2857db1a51b83a012638a7ecf0fb", + "4ae7930f58c980c1064f5c2f7a2e38b1058e0410", + "68db0bb5ec67635d3052ddae2ecb35cdea48263e", + "12e8764a9c61dfc8cc8ba2520a2b7cf3e0500edd", + "cbf62f64cbfdca160e7303536ec6ea464d371281", + "cdc1d592df7f066c141025cc8ae80bb3202580b6", + "881cf191d72da0edfc90cbc9fd5b3c30cb6eb9bc", + "c8fdc74b421fb904e11c07886a3a7dc22fa56ed6", + "9e41f8ddbe087ae6b9bdfb8d5821ab2f09f8c5fe", + "8b1238856b0839cfdb345ee2af9f02e4ee2959f9", + "c3fcb0e7457dc53aa4422ae4356e1fcc2a206ce6", + "e64b469bbcf2c2a6bb575ef0a58368f02147e899", + "555f8caeff42073fcdc52755491d785adcc81e4a", + "f97d5c327538a8fe8580fa4dd9ee22c213780a59", + "d312a53e2a4419c339c890b79f02b56c19abac85", + "4a70e0ac1b39c6da6863069bebc82ce3513bc8b5", + "8ac304c2997529d3b6fe4be4ba032e0f2dac16af", + "f6e529656f7ce4af6d146f4b0c8500a6d89221c2", + "2ec687715d2316fb1d32c79f5c942bcfd2356e8a" + ], + "pr_numbers": [ + 23710, + 25469, + 25623, + 25638, + 25700, + 25887, + 25925, + 25944, + 25945, + 25946, + 25947, + 25960, + 26002, + 26047, + 26074, + 26075, + 26147, + 26172, + 26175, + 26179, + 26189, + 26205, + 26216, + 26226, + 26248, + 26251, + 26252, + 26254, + 26260, + 26265, + 26272, + 26291, + 26312, + 26313, + 26320, + 26367, + 26396, + 26417, + 26435, + 26436, + 26444, + 26445, + 26446, + 26447 ], - "pr_numbers": [], "status": "diverged", - "total_commits": 1, - "url": "https://github.com/openai/codex/compare/rust-v0.136.0...rust-v0.136.0-alpha.2" + "total_commits": 45, + "url": "https://github.com/openai/codex/compare/rust-v0.137.0...rust-v0.138.0-alpha.4" }, "comparisons": [ { "compare": { - "ahead_by": 1, - "commit_shas": [ - "4eac96bb3e1e35fa99242b44eb87494750dc0f7a" - ], - "pr_numbers": [], - "status": "diverged", - "total_commits": 1, - "url": "https://github.com/openai/codex/compare/rust-v0.136.0...rust-v0.136.0-alpha.2" - }, - "prerelease_tag_name": "rust-v0.136.0-alpha.2", - "stable_tag_name": "rust-v0.136.0", - "tracked_signal_slugs": [] - }, - { - "compare": { - "ahead_by": 158, - "commit_shas": [ - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "14f95db57b269a06c8b56b62a280ae54c7bf819b", - "b15c918836ae114f9706e24532465e864f5506c4", - "af8a9d2d2ba84a1dafad6fa51fe3d63e96aceb75", - "cc8fd0ff65b603133304db268dd4b7a86b304dc3", - "a3b3e7a6cc1725b6210250ef5eaf02dfcdef3457", - "0f7394883e59c2a183b707cedbb7e640893d6245", - "1cc87019b413f38664f1248ca954ac872a5a9149", - "a71fc47cf8a7ade4ca7c1823d9affa02749c9ecd", - "0ab8eda375b60dbefd9bf30f2c37d090643866ee", - "faab4d39e18465f6111b9ba5b2ee0dbbae600bd2", - "dc07108af8b0c92adc0bcb320d62db774a06c900", - "1d4b5f130c772ad04bc0ee6c25403f74e56e98fc", - "3d8cdac7978d6414a6164399d7b0d6c9f44c8b33", - "567d2603b8f8ea0cc5c1140a235aaa81d532f5dd", - "a70aee1a1e778a534df85ae3f3257530249aa86c", - "4b8bab6ad3d80d2d20d17f18e4120dbc86681972", - "eaf12beacf748a8275ebaa9752ab537075382bc7", - "f263607c60e5e4dc42d4be14374fae171d4da5bb", - "8d1964686196b7231e7fc2a2f522d715476b5b0c", - "91ca49e53c43455db78d97337ec9647a7e3eedde", - "e4f1b3a65e06a74e2716b01e695a6c1d37a8fdbd", - "13d828d236c05ac1a72570cf49a67b69b28bc139", - "6edb865cc63c607d10014b60981a58e34fce439b", - "8a19dbb1776d5a99df3ddb6d79ace2a7b2b93620", - "c9e706f8b67531f305b0df5ed3d4f5d66ddfa301", - "3a22e101722db9d8e9ade26f0b4260c2291d5f32", - "39097ab65dceda9327a81852b19a8c0e449af0a1", - "9e19004bc2c445bcb0e67b931541f4401d93a9a3", - "cca36c5681d16c7dac6e3f385589b8cd4d3e78cd", - "4fd5c35c4f6f51048f47c8680ed0f6a26c608f68", - "152b676597821063f1ae7c8860fef5d2a1e1aa32", - "b5edeb98a0f3a7a0f43243f6ae06bc7de6cfacc0", - "d9b899309dbba0921350bb7f8d947dbf3efec48d", - "e65ee385793bf0b82cc958b9fc5081f81110706b", - "624c69e8406cd79e8afb29e4b268ca3fede8634a", - "82b061afb21a87b6b3ed3b4e79480ed1e8bf4d9e", - "ab58141e22512bec1c47714502c9396b1921ace1", - "fb41a79f3769381a14a5cf1d4b4ec75352bf7856", - "4294031a93b14d71f613dd089df3ef711ede3da3", - "f44eb29181ad5a3425f5d187558064a2fa56a22a", - "54dbbb839ece332c68558829d45e5cc493e03cc4", - "4ce97cef0216118c86ae9f76b10ce6043a7b1874", - "ded559680df03ebf944d01d8fd19be1debb51d04", - "2b4cc221df31d43e63a6bc818b7529a7477313d5", - "0225479f0d213e8363656fb4bd6bba12e0d8532f", - "4eabc3dcb1b1e902c9f97b97008499acb27bd5d0", - "bd30bad96f92de4d6b7f2429ddfc322937bc670a", - "9bb813353ec73e8116ddea74de0d73fb80106b2d", - "46b7e4fb2cfca7e376f167b51dd9c1eac5e9c70e", - "1525bbdb9a77ce7a817b19465a6cce8e2c0800bf", - "756ba8baae8b033e02fa8f26b5d16ad5b06adc02", - "03c07956cfa1e729dde24d767a2ced322455cdb2", - "73dab2046fdcd38fe6cf98ee4afe8de87d3124f6", - "36cd1635048d678e6f70474a253f57b5eb8ac911", - "03edd4fbee45e1f4fa736f1077b2df312d286f60", - "e62d645e6721825fbae3bd2292f77957275c1bd5", - "54faa769604ed0d62e4b7500f21991d3923b51e3", - "e88c2cf4d79c9bfe4fd75b8335b866ce35ab15a3", - "756c45ec61257d33e72f1e726e9f97872d67f353", - "9f737c28dd5dce0eeb6865eb98fcd106c625c26f", - "bf668aea7a4f41882568b504fb3ddbb0dbb0e30b" - ], - "pr_numbers": [ - 15690, - 15771, - 15772, - 15915, - 15919, - 15951, - 16184, - 16191, - 16192, - 16194, - 16201, - 16202, - 16238, - 16273, - 16284, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16450, - 16455, - 16456, - 16457, - 16462, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16528, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16626, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16638, - 16648, - 16658, - 16662, - 16665, - 16667, - 16668, - 16670, - 16674, - 16699, - 16700, - 16701, - 16707, - 16709, - 16710, - 16711, - 16715, - 16720, - 16722, - 16725, - 16735, - 16737, - 16740, - 16744, - 16745, - 16746, - 16753, - 16755, - 16757, - 16758, - 16763, - 16764, - 16795, - 16810, - 16813, - 16822, - 16823, - 16825, - 16827, - 16829, - 16831, - 16833, - 16876, - 16877, - 16881, - 16888, - 16923, - 16924, - 16925, - 16926, - 16928, - 16939, - 16945, - 16947, - 16952 - ], - "status": "diverged", - "total_commits": 158, - "url": "https://github.com/openai/codex/compare/rust-v0.118.0...rust-v0.119.0-alpha.13" - }, - "prerelease_tag_name": "rust-v0.119.0-alpha.13", - "stable_tag_name": "rust-v0.118.0", - "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter" - ] - }, - { - "compare": { - "ahead_by": 254, - "commit_shas": [ - "86764af684e9091963085f361daa3c521649bb76", - "b23789b770039bca614ac109f3600919c381fbcb", - "dfb36573cd0c6aed5a61d6e11ed6d34a34e160ff", - "609019c6e5a055914dc7d51b111d93db4bd342e1", - "b52abff279ffe57de90cabc536e30737002b7a73", - "5906c6a658d6b91ccd0963ee6741bdb559b8f78e", - "aea82c63eac85f5d5fd85de5ac79a0b1ff8369d4", - "c264c6eef975d4abaf67beefd60added71c90950", - "a27cd2d28150b71882847a8bfdc03d275e29a1eb", - "44d28f500f7f21fa13f0e9eea87544a6269efde7", - "e6e2999209a9a0c3c25a4d2f37aa73d0c400862e", - "81fa04783a551d7e2fc5cfdfc91921aaec3e64bb", - "d76124d656424cd9a15c9ef9e901fc1a9f3679c1", - "d838c23867f6fe2e3e43a0c82d25c17cb3730b1d", - "be5afc65d31728c11d67c589cebbc64a87979e74", - "41fe98b18538c60feeb779f8fad685a1b048da7b", - "21a03f16718dae1ca2f810c33b50c99b5634c931", - "dd30c8eedd171d2dda71c43fac27dc42f457da5f", - "47a9e2e084e21542821ab65aae91f2bd6bf17c07", - "2e849703cd8a2eaebff094ef2a5108a1393d02ed", - "2ef91b71406da6c88cad959d647915b4e7909f1f", - "6a0c4709ca2154e9f3ebb07e58fb156386630188", - "270b7655cd46e8f7573aea122f87b619b225a754", - "7d5d9f041b3c7817abf7874b386b1f68ec6872b4", - "2c85ca68429539ce27b346e573fbd07a18616c53", - "37b057f0030ab34f66dbb6eb6f8e7e7a3443407c", - "f044ca64df3f13faa679341aeb4469706c458f4d", - "2b71717ccf43e36453c2dbac3f02a4dd04e062be", - "426f28ca99a809134bbc9d4879789582f80093c1", - "ec089fd22aba2c8df074b8abfd42d286b38b399c", - "617475e54be4ac4bc3aca3868c979f157f5ca7ae", - "2616c7cf122d97514bf67dd2cc740fba9236d083", - "caee620a530bf65ad4a440909ef5dc64f2c8a3ae", - "15fbf9d4f5fcc224c4c97e015253aeef52939ed4", - "95845cf6ceb85a5793aeb227b5a03056cb508756", - "8002594ee3ad32bc7dd9c2465949212bef1c017d", - "81abb44f686359719da32974fc3ceec5c1c52db6", - "82e8031338a5a94172d985662ca1f0cd0a0d3bfb", - "16d4ea9ca8dd2f6ce586168467b568b2ac6973c1", - "c5778dfca27fe977e714aedc28997e5dce11cd86", - "465897dd0f3ab0732227ca2736c103f675f5d292", - "5b71e5104fec88a9982c55a6cf39623c28144540", - "307e427a9b82f47021ad1939dcf9c5d7495c2552", - "d65deec61718f291cba5a51de9489603865779df", - "f4f6eca871c3983dfee7c7873816179535534997", - "2ffb32db98b2c1ac83cb811e7ce1c0de2320c09d", - "8e24d5aaea1ca44bde08fe7f9b7a2541a4469fe6", - "ed977b42ac4f0b71ea218546153a751866f25b5b", - "61dfe0b86c75bb4e6c173a70ca9fb2f2daac2f67", - "71923f43a7ef8ed02531a885228257e9c5b87c7b", - "142681ef932eab1da27c2a501c60bc857e755a0e", - "5037a2d19924f2e49490453ab2a913da938afbe5", - "343d1af3da64fcfd52260149855159048e9c5178", - "f4d0cbfda61ad81559cb8d7b800b67fef2034748", - "e02fd6e1d3d0ee7a47780ab3efc1c769cd373337", - "b94366441ee80f4c583e321ebb181c4805dad736", - "e39ddc61b14a8c645124f5d45ab912989a02e5fb", - "bede1d9e23202e2fce23b2ad6d154255672a675b", - "3d1abf3f3d5c9f9bcc7b1d93ce509ae75e01214b", - "61429a6c1047244c91732e87b5898867853705f0", - "65f631c3d671d0328271b4462656d47f5003cde5", - "fce0f76d577b5070f1e2b4a2abaa8350acfc38ff", - "48144a7fa41e2343c7622f01e82eb6065e29b7b7", - "178d2b00b1da55e24a16695337bb1b78d6f5883c", - "bc53d42fd98c3e7bc74ece9ac31ddbe894b7a942", - "ae8a3be9585d0918fe38fa199c963aeb80ee4f55", - "4e27a87ec6e1ac95e5bc8a56e5687829e809270c", - "313fb959896b257ab1df2aa32adb8efc789806aa", - "c25c0d6e9efb143df91fe91e56c1bb05f09359bd", - "2238c16a914c9b7337b2bd87bc65972f8daf06d1", - "a16a9109d7c464be03c463074fbe2daaa465b727", - "f7ef9599eddade2c4d1763fcc04581315994dbc6", - "46b653e73c7900cc7fb2e06effc5cf305541aa76", - "4e119a3b38e4a4decfccb003acecabc4614142b6", - "3bbc1ce00395b6b31ed5940814a2dc4cf633228f", - "3807807f911532dffa64c25b66163b0f06360d47", - "7880414a2728514ea4aaa619cb5db0ffa807556d", - "54d3ad1edea9414ba87ffe164191fed69d79ed96", - "38e648ca67802d5f2fb23f9b3bd3f200cdb067fa", - "af568afdd5b18e06098f327850f8da351bf20350", - "bb95ec3ec602dfc7762fd92e2746606df9dfea21", - "213756c9ab22b567d426fe1be9757705fb5862c9", - "c74190a622667158e53b6d10fbfc0387ec43b964", - "716f7b0428de021cc03bfe88c4b5fadd122edd52", - "258ba436f1f784aa058625aec6b6653df83fe9c6", - "9313c49e4c0480189070a149da03b7b6164ebdce", - "28a9807f8403befd318fc6022872b087b2931ddb", - "390b644b212602ee58689e9d305ea50ee4a89d5a", - "19f0d196d11dcf31e02a4d022d099e6d3bcfad6e", - "ea650a91b31eef5b3b376ca4282686df242b9132", - "007196882993dbb987905acf30d450279cc8d560", - "20f43c1e05b2b3890a20521a8138aa53ddaf9837", - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "14f95db57b269a06c8b56b62a280ae54c7bf819b", - "b15c918836ae114f9706e24532465e864f5506c4", - "af8a9d2d2ba84a1dafad6fa51fe3d63e96aceb75", - "cc8fd0ff65b603133304db268dd4b7a86b304dc3", - "a3b3e7a6cc1725b6210250ef5eaf02dfcdef3457", - "0f7394883e59c2a183b707cedbb7e640893d6245", - "1cc87019b413f38664f1248ca954ac872a5a9149", - "a71fc47cf8a7ade4ca7c1823d9affa02749c9ecd", - "0ab8eda375b60dbefd9bf30f2c37d090643866ee", - "faab4d39e18465f6111b9ba5b2ee0dbbae600bd2", - "dc07108af8b0c92adc0bcb320d62db774a06c900", - "1d4b5f130c772ad04bc0ee6c25403f74e56e98fc", - "3d8cdac7978d6414a6164399d7b0d6c9f44c8b33", - "567d2603b8f8ea0cc5c1140a235aaa81d532f5dd", - "a70aee1a1e778a534df85ae3f3257530249aa86c", - "4b8bab6ad3d80d2d20d17f18e4120dbc86681972", - "eaf12beacf748a8275ebaa9752ab537075382bc7", - "f263607c60e5e4dc42d4be14374fae171d4da5bb", - "8d1964686196b7231e7fc2a2f522d715476b5b0c", - "91ca49e53c43455db78d97337ec9647a7e3eedde", - "e4f1b3a65e06a74e2716b01e695a6c1d37a8fdbd", - "13d828d236c05ac1a72570cf49a67b69b28bc139", - "6edb865cc63c607d10014b60981a58e34fce439b", - "8a19dbb1776d5a99df3ddb6d79ace2a7b2b93620", - "c9e706f8b67531f305b0df5ed3d4f5d66ddfa301", - "3a22e101722db9d8e9ade26f0b4260c2291d5f32", - "39097ab65dceda9327a81852b19a8c0e449af0a1", - "9e19004bc2c445bcb0e67b931541f4401d93a9a3", - "cca36c5681d16c7dac6e3f385589b8cd4d3e78cd", - "4fd5c35c4f6f51048f47c8680ed0f6a26c608f68", - "152b676597821063f1ae7c8860fef5d2a1e1aa32", - "b5edeb98a0f3a7a0f43243f6ae06bc7de6cfacc0", - "d9b899309dbba0921350bb7f8d947dbf3efec48d", - "e65ee385793bf0b82cc958b9fc5081f81110706b", - "624c69e8406cd79e8afb29e4b268ca3fede8634a", - "82b061afb21a87b6b3ed3b4e79480ed1e8bf4d9e", - "ab58141e22512bec1c47714502c9396b1921ace1", - "fb41a79f3769381a14a5cf1d4b4ec75352bf7856", - "4294031a93b14d71f613dd089df3ef711ede3da3", - "f44eb29181ad5a3425f5d187558064a2fa56a22a", - "54dbbb839ece332c68558829d45e5cc493e03cc4", - "4ce97cef0216118c86ae9f76b10ce6043a7b1874", - "ded559680df03ebf944d01d8fd19be1debb51d04", - "2b4cc221df31d43e63a6bc818b7529a7477313d5", - "0225479f0d213e8363656fb4bd6bba12e0d8532f", - "4eabc3dcb1b1e902c9f97b97008499acb27bd5d0", - "bd30bad96f92de4d6b7f2429ddfc322937bc670a", - "9bb813353ec73e8116ddea74de0d73fb80106b2d", - "46b7e4fb2cfca7e376f167b51dd9c1eac5e9c70e", - "1525bbdb9a77ce7a817b19465a6cce8e2c0800bf", - "756ba8baae8b033e02fa8f26b5d16ad5b06adc02", - "03c07956cfa1e729dde24d767a2ced322455cdb2", - "73dab2046fdcd38fe6cf98ee4afe8de87d3124f6", - "36cd1635048d678e6f70474a253f57b5eb8ac911", - "03edd4fbee45e1f4fa736f1077b2df312d286f60", - "e62d645e6721825fbae3bd2292f77957275c1bd5", - "54faa769604ed0d62e4b7500f21991d3923b51e3", - "e88c2cf4d79c9bfe4fd75b8335b866ce35ab15a3", - "756c45ec61257d33e72f1e726e9f97872d67f353", - "9f737c28dd5dce0eeb6865eb98fcd106c625c26f", - "bf668aea7a4f41882568b504fb3ddbb0dbb0e30b" - ], - "pr_numbers": [ - 12220, - 14495, - 15067, - 15120, - 15522, - 15525, - 15690, - 15771, - 15772, - 15828, - 15876, - 15897, - 15898, - 15903, - 15906, - 15909, - 15910, - 15915, - 15917, - 15918, - 15919, - 15921, - 15922, - 15923, - 15928, - 15931, - 15933, - 15934, - 15944, - 15946, - 15948, - 15951, - 15952, - 15953, - 15954, - 15955, - 15973, - 15985, - 15986, - 15995, - 15996, - 15998, - 15999, - 16000, - 16001, - 16010, - 16013, - 16014, - 16021, - 16026, - 16027, - 16030, - 16031, - 16035, - 16036, - 16041, - 16044, - 16046, - 16047, - 16050, - 16054, - 16057, - 16063, - 16067, - 16071, - 16072, - 16074, - 16080, - 16104, - 16106, - 16109, - 16110, - 16112, - 16114, - 16115, - 16116, - 16118, - 16120, - 16126, - 16128, - 16129, - 16130, - 16132, - 16136, - 16137, - 16138, - 16141, - 16154, - 16184, - 16191, - 16192, - 16193, - 16194, - 16201, - 16202, - 16204, - 16225, - 16237, - 16238, - 16253, - 16254, - 16273, - 16279, - 16284, - 16286, - 16287, - 16288, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16450, - 16455, - 16456, - 16457, - 16462, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16528, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16626, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16638, - 16648, - 16658, - 16662, - 16665, - 16667, - 16668, - 16670, - 16674, - 16699, - 16700, - 16701, - 16707, - 16709, - 16710, - 16711, - 16715, - 16720, - 16722, - 16725, - 16735, - 16737, - 16740, - 16744, - 16745, - 16746, - 16753, - 16755, - 16757, - 16758, - 16763, - 16764, - 16795, - 16810, - 16813, - 16822, - 16823, - 16825, - 16827, - 16829, - 16831, - 16833, - 16876, - 16877, - 16881, - 16888, - 16923, - 16924, - 16925, - 16926, - 16928, - 16939, - 16945, - 16947, - 16952 - ], - "status": "diverged", - "total_commits": 254, - "url": "https://github.com/openai/codex/compare/rust-v0.117.0...rust-v0.119.0-alpha.13" - }, - "prerelease_tag_name": "rust-v0.119.0-alpha.13", - "stable_tag_name": "rust-v0.117.0", - "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter", - "wait-agent-no-longer-needs-targets", - "windows-mcp-startup-warning-snapshots-now-normalize-rendered-paths" - ] - }, - { - "compare": { - "ahead_by": 485, - "commit_shas": [ - "86764af684e9091963085f361daa3c521649bb76", - "b23789b770039bca614ac109f3600919c381fbcb", - "dfb36573cd0c6aed5a61d6e11ed6d34a34e160ff", - "609019c6e5a055914dc7d51b111d93db4bd342e1", - "b52abff279ffe57de90cabc536e30737002b7a73", - "5906c6a658d6b91ccd0963ee6741bdb559b8f78e", - "aea82c63eac85f5d5fd85de5ac79a0b1ff8369d4", - "c264c6eef975d4abaf67beefd60added71c90950", - "a27cd2d28150b71882847a8bfdc03d275e29a1eb", - "44d28f500f7f21fa13f0e9eea87544a6269efde7", - "e6e2999209a9a0c3c25a4d2f37aa73d0c400862e", - "81fa04783a551d7e2fc5cfdfc91921aaec3e64bb", - "d76124d656424cd9a15c9ef9e901fc1a9f3679c1", - "d838c23867f6fe2e3e43a0c82d25c17cb3730b1d", - "be5afc65d31728c11d67c589cebbc64a87979e74", - "41fe98b18538c60feeb779f8fad685a1b048da7b", - "21a03f16718dae1ca2f810c33b50c99b5634c931", - "dd30c8eedd171d2dda71c43fac27dc42f457da5f", - "47a9e2e084e21542821ab65aae91f2bd6bf17c07", - "2e849703cd8a2eaebff094ef2a5108a1393d02ed", - "2ef91b71406da6c88cad959d647915b4e7909f1f", - "6a0c4709ca2154e9f3ebb07e58fb156386630188", - "270b7655cd46e8f7573aea122f87b619b225a754", - "7d5d9f041b3c7817abf7874b386b1f68ec6872b4", - "2c85ca68429539ce27b346e573fbd07a18616c53", - "37b057f0030ab34f66dbb6eb6f8e7e7a3443407c", - "f044ca64df3f13faa679341aeb4469706c458f4d", - "2b71717ccf43e36453c2dbac3f02a4dd04e062be", - "426f28ca99a809134bbc9d4879789582f80093c1", - "ec089fd22aba2c8df074b8abfd42d286b38b399c", - "617475e54be4ac4bc3aca3868c979f157f5ca7ae", - "2616c7cf122d97514bf67dd2cc740fba9236d083", - "caee620a530bf65ad4a440909ef5dc64f2c8a3ae", - "15fbf9d4f5fcc224c4c97e015253aeef52939ed4", - "95845cf6ceb85a5793aeb227b5a03056cb508756", - "8002594ee3ad32bc7dd9c2465949212bef1c017d", - "81abb44f686359719da32974fc3ceec5c1c52db6", - "82e8031338a5a94172d985662ca1f0cd0a0d3bfb", - "16d4ea9ca8dd2f6ce586168467b568b2ac6973c1", - "c5778dfca27fe977e714aedc28997e5dce11cd86", - "465897dd0f3ab0732227ca2736c103f675f5d292", - "5b71e5104fec88a9982c55a6cf39623c28144540", - "307e427a9b82f47021ad1939dcf9c5d7495c2552", - "d65deec61718f291cba5a51de9489603865779df", - "f4f6eca871c3983dfee7c7873816179535534997", - "2ffb32db98b2c1ac83cb811e7ce1c0de2320c09d", - "8e24d5aaea1ca44bde08fe7f9b7a2541a4469fe6", - "ed977b42ac4f0b71ea218546153a751866f25b5b", - "61dfe0b86c75bb4e6c173a70ca9fb2f2daac2f67", - "71923f43a7ef8ed02531a885228257e9c5b87c7b", - "142681ef932eab1da27c2a501c60bc857e755a0e", - "5037a2d19924f2e49490453ab2a913da938afbe5", - "343d1af3da64fcfd52260149855159048e9c5178", - "f4d0cbfda61ad81559cb8d7b800b67fef2034748", - "e02fd6e1d3d0ee7a47780ab3efc1c769cd373337", - "b94366441ee80f4c583e321ebb181c4805dad736", - "e39ddc61b14a8c645124f5d45ab912989a02e5fb", - "bede1d9e23202e2fce23b2ad6d154255672a675b", - "3d1abf3f3d5c9f9bcc7b1d93ce509ae75e01214b", - "61429a6c1047244c91732e87b5898867853705f0", - "65f631c3d671d0328271b4462656d47f5003cde5", - "fce0f76d577b5070f1e2b4a2abaa8350acfc38ff", - "48144a7fa41e2343c7622f01e82eb6065e29b7b7", - "178d2b00b1da55e24a16695337bb1b78d6f5883c", - "bc53d42fd98c3e7bc74ece9ac31ddbe894b7a942", - "ae8a3be9585d0918fe38fa199c963aeb80ee4f55", - "4e27a87ec6e1ac95e5bc8a56e5687829e809270c", - "313fb959896b257ab1df2aa32adb8efc789806aa", - "c25c0d6e9efb143df91fe91e56c1bb05f09359bd", - "2238c16a914c9b7337b2bd87bc65972f8daf06d1", - "a16a9109d7c464be03c463074fbe2daaa465b727", - "f7ef9599eddade2c4d1763fcc04581315994dbc6", - "46b653e73c7900cc7fb2e06effc5cf305541aa76", - "4e119a3b38e4a4decfccb003acecabc4614142b6", - "3bbc1ce00395b6b31ed5940814a2dc4cf633228f", - "3807807f911532dffa64c25b66163b0f06360d47", - "7880414a2728514ea4aaa619cb5db0ffa807556d", - "54d3ad1edea9414ba87ffe164191fed69d79ed96", - "38e648ca67802d5f2fb23f9b3bd3f200cdb067fa", - "af568afdd5b18e06098f327850f8da351bf20350", - "bb95ec3ec602dfc7762fd92e2746606df9dfea21", - "213756c9ab22b567d426fe1be9757705fb5862c9", - "c74190a622667158e53b6d10fbfc0387ec43b964", - "716f7b0428de021cc03bfe88c4b5fadd122edd52", - "258ba436f1f784aa058625aec6b6653df83fe9c6", - "9313c49e4c0480189070a149da03b7b6164ebdce", - "28a9807f8403befd318fc6022872b087b2931ddb", - "390b644b212602ee58689e9d305ea50ee4a89d5a", - "19f0d196d11dcf31e02a4d022d099e6d3bcfad6e", - "ea650a91b31eef5b3b376ca4282686df242b9132", - "007196882993dbb987905acf30d450279cc8d560", - "20f43c1e05b2b3890a20521a8138aa53ddaf9837", - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "14f95db57b269a06c8b56b62a280ae54c7bf819b", - "b15c918836ae114f9706e24532465e864f5506c4", - "af8a9d2d2ba84a1dafad6fa51fe3d63e96aceb75", - "cc8fd0ff65b603133304db268dd4b7a86b304dc3", - "a3b3e7a6cc1725b6210250ef5eaf02dfcdef3457", - "0f7394883e59c2a183b707cedbb7e640893d6245", - "1cc87019b413f38664f1248ca954ac872a5a9149", - "a71fc47cf8a7ade4ca7c1823d9affa02749c9ecd", - "0ab8eda375b60dbefd9bf30f2c37d090643866ee", - "faab4d39e18465f6111b9ba5b2ee0dbbae600bd2", - "dc07108af8b0c92adc0bcb320d62db774a06c900", - "1d4b5f130c772ad04bc0ee6c25403f74e56e98fc", - "3d8cdac7978d6414a6164399d7b0d6c9f44c8b33", - "567d2603b8f8ea0cc5c1140a235aaa81d532f5dd", - "a70aee1a1e778a534df85ae3f3257530249aa86c", - "4b8bab6ad3d80d2d20d17f18e4120dbc86681972", - "eaf12beacf748a8275ebaa9752ab537075382bc7", - "f263607c60e5e4dc42d4be14374fae171d4da5bb", - "8d1964686196b7231e7fc2a2f522d715476b5b0c", - "91ca49e53c43455db78d97337ec9647a7e3eedde", - "e4f1b3a65e06a74e2716b01e695a6c1d37a8fdbd", - "13d828d236c05ac1a72570cf49a67b69b28bc139", - "6edb865cc63c607d10014b60981a58e34fce439b", - "8a19dbb1776d5a99df3ddb6d79ace2a7b2b93620", - "c9e706f8b67531f305b0df5ed3d4f5d66ddfa301", - "3a22e101722db9d8e9ade26f0b4260c2291d5f32", - "39097ab65dceda9327a81852b19a8c0e449af0a1", - "9e19004bc2c445bcb0e67b931541f4401d93a9a3", - "cca36c5681d16c7dac6e3f385589b8cd4d3e78cd", - "4fd5c35c4f6f51048f47c8680ed0f6a26c608f68", - "152b676597821063f1ae7c8860fef5d2a1e1aa32", - "b5edeb98a0f3a7a0f43243f6ae06bc7de6cfacc0", - "d9b899309dbba0921350bb7f8d947dbf3efec48d", - "e65ee385793bf0b82cc958b9fc5081f81110706b", - "624c69e8406cd79e8afb29e4b268ca3fede8634a", - "82b061afb21a87b6b3ed3b4e79480ed1e8bf4d9e", - "ab58141e22512bec1c47714502c9396b1921ace1", - "fb41a79f3769381a14a5cf1d4b4ec75352bf7856", - "4294031a93b14d71f613dd089df3ef711ede3da3", - "f44eb29181ad5a3425f5d187558064a2fa56a22a", - "54dbbb839ece332c68558829d45e5cc493e03cc4", - "4ce97cef0216118c86ae9f76b10ce6043a7b1874", - "ded559680df03ebf944d01d8fd19be1debb51d04", - "2b4cc221df31d43e63a6bc818b7529a7477313d5", - "0225479f0d213e8363656fb4bd6bba12e0d8532f", - "4eabc3dcb1b1e902c9f97b97008499acb27bd5d0", - "bd30bad96f92de4d6b7f2429ddfc322937bc670a", - "9bb813353ec73e8116ddea74de0d73fb80106b2d", - "46b7e4fb2cfca7e376f167b51dd9c1eac5e9c70e", - "1525bbdb9a77ce7a817b19465a6cce8e2c0800bf", - "756ba8baae8b033e02fa8f26b5d16ad5b06adc02", - "03c07956cfa1e729dde24d767a2ced322455cdb2", - "73dab2046fdcd38fe6cf98ee4afe8de87d3124f6", - "36cd1635048d678e6f70474a253f57b5eb8ac911", - "03edd4fbee45e1f4fa736f1077b2df312d286f60", - "e62d645e6721825fbae3bd2292f77957275c1bd5", - "54faa769604ed0d62e4b7500f21991d3923b51e3", - "e88c2cf4d79c9bfe4fd75b8335b866ce35ab15a3", - "756c45ec61257d33e72f1e726e9f97872d67f353", - "9f737c28dd5dce0eeb6865eb98fcd106c625c26f", - "bf668aea7a4f41882568b504fb3ddbb0dbb0e30b" - ], - "pr_numbers": [ - 12220, - 14495, - 15067, - 15120, - 15522, - 15525, - 15690, - 15771, - 15772, - 15828, - 15876, - 15897, - 15898, - 15903, - 15906, - 15909, - 15910, - 15915, - 15917, - 15918, - 15919, - 15921, - 15922, - 15923, - 15928, - 15931, - 15933, - 15934, - 15944, - 15946, - 15948, - 15951, - 15952, - 15953, - 15954, - 15955, - 15973, - 15985, - 15986, - 15995, - 15996, - 15998, - 15999, - 16000, - 16001, - 16010, - 16013, - 16014, - 16021, - 16026, - 16027, - 16030, - 16031, - 16035, - 16036, - 16041, - 16044, - 16046, - 16047, - 16050, - 16054, - 16057, - 16063, - 16067, - 16071, - 16072, - 16074, - 16080, - 16104, - 16106, - 16109, - 16110, - 16112, - 16114, - 16115, - 16116, - 16118, - 16120, - 16126, - 16128, - 16129, - 16130, - 16132, - 16136, - 16137, - 16138, - 16141, - 16154, - 16184, - 16191, - 16192, - 16193, - 16194, - 16201, - 16202, - 16204, - 16225, - 16237, - 16238, - 16253, - 16254, - 16273, - 16279, - 16284, - 16286, - 16287, - 16288, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16450, - 16455, - 16456, - 16457, - 16462, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16528, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16626, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16638, - 16648, - 16658, - 16662, - 16665, - 16667, - 16668, - 16670, - 16674, - 16699, - 16700, - 16701, - 16707, - 16709, - 16710, - 16711, - 16715, - 16720, - 16722, - 16725, - 16735, - 16737, - 16740, - 16744, - 16745, - 16746, - 16753, - 16755, - 16757, - 16758, - 16763, - 16764, - 16795, - 16810, - 16813, - 16822, - 16823, - 16825, - 16827, - 16829, - 16831, - 16833, - 16876, - 16877, - 16881, - 16888, - 16923, - 16924, - 16925, - 16926, - 16928, - 16939, - 16945, - 16947, - 16952 - ], - "status": "diverged", - "total_commits": 485, - "url": "https://github.com/openai/codex/compare/rust-v0.116.0...rust-v0.119.0-alpha.13" - }, - "prerelease_tag_name": "rust-v0.119.0-alpha.13", - "stable_tag_name": "rust-v0.116.0", - "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter", - "wait-agent-no-longer-needs-targets", - "windows-mcp-startup-warning-snapshots-now-normalize-rendered-paths" - ] - }, - { - "compare": { - "ahead_by": 142, - "commit_shas": [ - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "14f95db57b269a06c8b56b62a280ae54c7bf819b", - "b15c918836ae114f9706e24532465e864f5506c4", - "af8a9d2d2ba84a1dafad6fa51fe3d63e96aceb75", - "cc8fd0ff65b603133304db268dd4b7a86b304dc3", - "a3b3e7a6cc1725b6210250ef5eaf02dfcdef3457", - "0f7394883e59c2a183b707cedbb7e640893d6245", - "1cc87019b413f38664f1248ca954ac872a5a9149", - "a71fc47cf8a7ade4ca7c1823d9affa02749c9ecd", - "0ab8eda375b60dbefd9bf30f2c37d090643866ee", - "faab4d39e18465f6111b9ba5b2ee0dbbae600bd2", - "dc07108af8b0c92adc0bcb320d62db774a06c900", - "1d4b5f130c772ad04bc0ee6c25403f74e56e98fc", - "3d8cdac7978d6414a6164399d7b0d6c9f44c8b33", - "567d2603b8f8ea0cc5c1140a235aaa81d532f5dd", - "a70aee1a1e778a534df85ae3f3257530249aa86c", - "4b8bab6ad3d80d2d20d17f18e4120dbc86681972", - "eaf12beacf748a8275ebaa9752ab537075382bc7", - "f263607c60e5e4dc42d4be14374fae171d4da5bb", - "8d1964686196b7231e7fc2a2f522d715476b5b0c", - "91ca49e53c43455db78d97337ec9647a7e3eedde", - "e4f1b3a65e06a74e2716b01e695a6c1d37a8fdbd", - "13d828d236c05ac1a72570cf49a67b69b28bc139", - "6edb865cc63c607d10014b60981a58e34fce439b", - "8a19dbb1776d5a99df3ddb6d79ace2a7b2b93620", - "c9e706f8b67531f305b0df5ed3d4f5d66ddfa301", - "3a22e101722db9d8e9ade26f0b4260c2291d5f32", - "39097ab65dceda9327a81852b19a8c0e449af0a1", - "9e19004bc2c445bcb0e67b931541f4401d93a9a3", - "cca36c5681d16c7dac6e3f385589b8cd4d3e78cd", - "4fd5c35c4f6f51048f47c8680ed0f6a26c608f68", - "152b676597821063f1ae7c8860fef5d2a1e1aa32", - "b5edeb98a0f3a7a0f43243f6ae06bc7de6cfacc0", - "d9b899309dbba0921350bb7f8d947dbf3efec48d", - "e65ee385793bf0b82cc958b9fc5081f81110706b", - "624c69e8406cd79e8afb29e4b268ca3fede8634a", - "82b061afb21a87b6b3ed3b4e79480ed1e8bf4d9e", - "ab58141e22512bec1c47714502c9396b1921ace1", - "fb41a79f3769381a14a5cf1d4b4ec75352bf7856", - "4294031a93b14d71f613dd089df3ef711ede3da3", - "f44eb29181ad5a3425f5d187558064a2fa56a22a", - "54dbbb839ece332c68558829d45e5cc493e03cc4", - "4ce97cef0216118c86ae9f76b10ce6043a7b1874", - "ded559680df03ebf944d01d8fd19be1debb51d04", - "2b4cc221df31d43e63a6bc818b7529a7477313d5", - "1440dda2400fb0d1a346a7469ce33996776c5448" - ], - "pr_numbers": [ - 15690, - 15771, - 15772, - 15915, - 15919, - 16184, - 16192, - 16194, - 16201, - 16202, - 16238, - 16273, - 16284, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16450, - 16455, - 16456, - 16457, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16528, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16626, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16648, - 16658, - 16662, - 16665, - 16667, - 16668, - 16670, - 16674, - 16699, - 16700, - 16701, - 16707, - 16709, - 16710, - 16711, - 16715, - 16720, - 16722, - 16725, - 16735, - 16737, - 16740, - 16745, - 16746, - 16753, - 16755, - 16757, - 16758, - 16763, - 16795, - 16810, - 16813, - 16822, - 16823, - 16825, - 16829, - 16833, - 16876, - 16877, - 16881, - 16888, - 16925 - ], - "status": "diverged", - "total_commits": 142, - "url": "https://github.com/openai/codex/compare/rust-v0.118.0...rust-v0.119.0-alpha.12" - }, - "prerelease_tag_name": "rust-v0.119.0-alpha.12", - "stable_tag_name": "rust-v0.118.0", - "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter" - ] - }, - { - "compare": { - "ahead_by": 238, - "commit_shas": [ - "3360f128f46f2aed392dea0d9557d0bb9536d2c2", - "b6050b42ae7e13b1eb26e9732a1582bd3c055505", - "b3e069e8cbed9ef86a47335041632ddfb458b79f", - "9736fa5e3d5da08e20c533f07c30c2960475e19b", - "86764af684e9091963085f361daa3c521649bb76", - "b23789b770039bca614ac109f3600919c381fbcb", - "dfb36573cd0c6aed5a61d6e11ed6d34a34e160ff", - "609019c6e5a055914dc7d51b111d93db4bd342e1", - "b52abff279ffe57de90cabc536e30737002b7a73", - "5906c6a658d6b91ccd0963ee6741bdb559b8f78e", - "aea82c63eac85f5d5fd85de5ac79a0b1ff8369d4", - "c264c6eef975d4abaf67beefd60added71c90950", - "a27cd2d28150b71882847a8bfdc03d275e29a1eb", - "44d28f500f7f21fa13f0e9eea87544a6269efde7", - "e6e2999209a9a0c3c25a4d2f37aa73d0c400862e", - "81fa04783a551d7e2fc5cfdfc91921aaec3e64bb", - "d76124d656424cd9a15c9ef9e901fc1a9f3679c1", - "d838c23867f6fe2e3e43a0c82d25c17cb3730b1d", - "be5afc65d31728c11d67c589cebbc64a87979e74", - "41fe98b18538c60feeb779f8fad685a1b048da7b", - "21a03f16718dae1ca2f810c33b50c99b5634c931", - "dd30c8eedd171d2dda71c43fac27dc42f457da5f", - "47a9e2e084e21542821ab65aae91f2bd6bf17c07", - "2e849703cd8a2eaebff094ef2a5108a1393d02ed", - "2ef91b71406da6c88cad959d647915b4e7909f1f", - "6a0c4709ca2154e9f3ebb07e58fb156386630188", - "270b7655cd46e8f7573aea122f87b619b225a754", - "7d5d9f041b3c7817abf7874b386b1f68ec6872b4", - "2c85ca68429539ce27b346e573fbd07a18616c53", - "37b057f0030ab34f66dbb6eb6f8e7e7a3443407c", - "f044ca64df3f13faa679341aeb4469706c458f4d", - "2b71717ccf43e36453c2dbac3f02a4dd04e062be", - "426f28ca99a809134bbc9d4879789582f80093c1", - "ec089fd22aba2c8df074b8abfd42d286b38b399c", - "617475e54be4ac4bc3aca3868c979f157f5ca7ae", - "2616c7cf122d97514bf67dd2cc740fba9236d083", - "caee620a530bf65ad4a440909ef5dc64f2c8a3ae", - "15fbf9d4f5fcc224c4c97e015253aeef52939ed4", - "95845cf6ceb85a5793aeb227b5a03056cb508756", - "8002594ee3ad32bc7dd9c2465949212bef1c017d", - "81abb44f686359719da32974fc3ceec5c1c52db6", - "82e8031338a5a94172d985662ca1f0cd0a0d3bfb", - "16d4ea9ca8dd2f6ce586168467b568b2ac6973c1", - "c5778dfca27fe977e714aedc28997e5dce11cd86", - "465897dd0f3ab0732227ca2736c103f675f5d292", - "5b71e5104fec88a9982c55a6cf39623c28144540", - "307e427a9b82f47021ad1939dcf9c5d7495c2552", - "d65deec61718f291cba5a51de9489603865779df", - "f4f6eca871c3983dfee7c7873816179535534997", - "2ffb32db98b2c1ac83cb811e7ce1c0de2320c09d", - "8e24d5aaea1ca44bde08fe7f9b7a2541a4469fe6", - "ed977b42ac4f0b71ea218546153a751866f25b5b", - "61dfe0b86c75bb4e6c173a70ca9fb2f2daac2f67", - "71923f43a7ef8ed02531a885228257e9c5b87c7b", - "142681ef932eab1da27c2a501c60bc857e755a0e", - "5037a2d19924f2e49490453ab2a913da938afbe5", - "343d1af3da64fcfd52260149855159048e9c5178", - "f4d0cbfda61ad81559cb8d7b800b67fef2034748", - "e02fd6e1d3d0ee7a47780ab3efc1c769cd373337", - "b94366441ee80f4c583e321ebb181c4805dad736", - "e39ddc61b14a8c645124f5d45ab912989a02e5fb", - "bede1d9e23202e2fce23b2ad6d154255672a675b", - "3d1abf3f3d5c9f9bcc7b1d93ce509ae75e01214b", - "61429a6c1047244c91732e87b5898867853705f0", - "65f631c3d671d0328271b4462656d47f5003cde5", - "fce0f76d577b5070f1e2b4a2abaa8350acfc38ff", - "48144a7fa41e2343c7622f01e82eb6065e29b7b7", - "178d2b00b1da55e24a16695337bb1b78d6f5883c", - "bc53d42fd98c3e7bc74ece9ac31ddbe894b7a942", - "ae8a3be9585d0918fe38fa199c963aeb80ee4f55", - "4e27a87ec6e1ac95e5bc8a56e5687829e809270c", - "313fb959896b257ab1df2aa32adb8efc789806aa", - "c25c0d6e9efb143df91fe91e56c1bb05f09359bd", - "2238c16a914c9b7337b2bd87bc65972f8daf06d1", - "a16a9109d7c464be03c463074fbe2daaa465b727", - "f7ef9599eddade2c4d1763fcc04581315994dbc6", - "46b653e73c7900cc7fb2e06effc5cf305541aa76", - "4e119a3b38e4a4decfccb003acecabc4614142b6", - "3bbc1ce00395b6b31ed5940814a2dc4cf633228f", - "3807807f911532dffa64c25b66163b0f06360d47", - "7880414a2728514ea4aaa619cb5db0ffa807556d", - "54d3ad1edea9414ba87ffe164191fed69d79ed96", - "38e648ca67802d5f2fb23f9b3bd3f200cdb067fa", - "af568afdd5b18e06098f327850f8da351bf20350", - "bb95ec3ec602dfc7762fd92e2746606df9dfea21", - "213756c9ab22b567d426fe1be9757705fb5862c9", - "c74190a622667158e53b6d10fbfc0387ec43b964", - "716f7b0428de021cc03bfe88c4b5fadd122edd52", - "258ba436f1f784aa058625aec6b6653df83fe9c6", - "9313c49e4c0480189070a149da03b7b6164ebdce", - "28a9807f8403befd318fc6022872b087b2931ddb", - "390b644b212602ee58689e9d305ea50ee4a89d5a", - "19f0d196d11dcf31e02a4d022d099e6d3bcfad6e", - "ea650a91b31eef5b3b376ca4282686df242b9132", - "007196882993dbb987905acf30d450279cc8d560", - "20f43c1e05b2b3890a20521a8138aa53ddaf9837", - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "14f95db57b269a06c8b56b62a280ae54c7bf819b", - "b15c918836ae114f9706e24532465e864f5506c4", - "af8a9d2d2ba84a1dafad6fa51fe3d63e96aceb75", - "cc8fd0ff65b603133304db268dd4b7a86b304dc3", - "a3b3e7a6cc1725b6210250ef5eaf02dfcdef3457", - "0f7394883e59c2a183b707cedbb7e640893d6245", - "1cc87019b413f38664f1248ca954ac872a5a9149", - "a71fc47cf8a7ade4ca7c1823d9affa02749c9ecd", - "0ab8eda375b60dbefd9bf30f2c37d090643866ee", - "faab4d39e18465f6111b9ba5b2ee0dbbae600bd2", - "dc07108af8b0c92adc0bcb320d62db774a06c900", - "1d4b5f130c772ad04bc0ee6c25403f74e56e98fc", - "3d8cdac7978d6414a6164399d7b0d6c9f44c8b33", - "567d2603b8f8ea0cc5c1140a235aaa81d532f5dd", - "a70aee1a1e778a534df85ae3f3257530249aa86c", - "4b8bab6ad3d80d2d20d17f18e4120dbc86681972", - "eaf12beacf748a8275ebaa9752ab537075382bc7", - "f263607c60e5e4dc42d4be14374fae171d4da5bb", - "8d1964686196b7231e7fc2a2f522d715476b5b0c", - "91ca49e53c43455db78d97337ec9647a7e3eedde", - "e4f1b3a65e06a74e2716b01e695a6c1d37a8fdbd", - "13d828d236c05ac1a72570cf49a67b69b28bc139", - "6edb865cc63c607d10014b60981a58e34fce439b", - "8a19dbb1776d5a99df3ddb6d79ace2a7b2b93620", - "c9e706f8b67531f305b0df5ed3d4f5d66ddfa301", - "3a22e101722db9d8e9ade26f0b4260c2291d5f32", - "39097ab65dceda9327a81852b19a8c0e449af0a1", - "9e19004bc2c445bcb0e67b931541f4401d93a9a3", - "cca36c5681d16c7dac6e3f385589b8cd4d3e78cd", - "4fd5c35c4f6f51048f47c8680ed0f6a26c608f68", - "152b676597821063f1ae7c8860fef5d2a1e1aa32", - "b5edeb98a0f3a7a0f43243f6ae06bc7de6cfacc0", - "d9b899309dbba0921350bb7f8d947dbf3efec48d", - "e65ee385793bf0b82cc958b9fc5081f81110706b", - "624c69e8406cd79e8afb29e4b268ca3fede8634a", - "82b061afb21a87b6b3ed3b4e79480ed1e8bf4d9e", - "ab58141e22512bec1c47714502c9396b1921ace1", - "fb41a79f3769381a14a5cf1d4b4ec75352bf7856", - "4294031a93b14d71f613dd089df3ef711ede3da3", - "f44eb29181ad5a3425f5d187558064a2fa56a22a", - "54dbbb839ece332c68558829d45e5cc493e03cc4", - "4ce97cef0216118c86ae9f76b10ce6043a7b1874", - "ded559680df03ebf944d01d8fd19be1debb51d04", - "2b4cc221df31d43e63a6bc818b7529a7477313d5", - "1440dda2400fb0d1a346a7469ce33996776c5448" - ], - "pr_numbers": [ - 12220, - 14495, - 15067, - 15120, - 15522, - 15525, - 15690, - 15771, - 15772, - 15791, - 15811, - 15828, - 15876, - 15891, - 15897, - 15898, - 15900, - 15903, - 15906, - 15909, - 15910, - 15915, - 15917, - 15918, - 15919, - 15921, - 15922, - 15923, - 15928, - 15931, - 15933, - 15934, - 15944, - 15946, - 15948, - 15952, - 15953, - 15954, - 15955, - 15973, - 15985, - 15986, - 15995, - 15996, - 15998, - 15999, - 16000, - 16001, - 16010, - 16013, - 16014, - 16021, - 16026, - 16027, - 16030, - 16031, - 16035, - 16036, - 16041, - 16044, - 16046, - 16047, - 16050, - 16054, - 16057, - 16063, - 16067, - 16071, - 16072, - 16074, - 16080, - 16104, - 16106, - 16109, - 16110, - 16112, - 16114, - 16115, - 16116, - 16118, - 16120, - 16126, - 16128, - 16129, - 16130, - 16132, - 16136, - 16137, - 16138, - 16141, - 16154, - 16184, - 16192, - 16193, - 16194, - 16201, - 16202, - 16204, - 16225, - 16237, - 16238, - 16253, - 16254, - 16273, - 16279, - 16284, - 16286, - 16287, - 16288, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16450, - 16455, - 16456, - 16457, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16528, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16626, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16648, - 16658, - 16662, - 16665, - 16667, - 16668, - 16670, - 16674, - 16699, - 16700, - 16701, - 16707, - 16709, - 16710, - 16711, - 16715, - 16720, - 16722, - 16725, - 16735, - 16737, - 16740, - 16745, - 16746, - 16753, - 16755, - 16757, - 16758, - 16763, - 16795, - 16810, - 16813, - 16822, - 16823, - 16825, - 16829, - 16833, - 16876, - 16877, - 16881, - 16888, - 16925 - ], - "status": "diverged", - "total_commits": 238, - "url": "https://github.com/openai/codex/compare/rust-v0.117.0...rust-v0.119.0-alpha.12" - }, - "prerelease_tag_name": "rust-v0.119.0-alpha.12", - "stable_tag_name": "rust-v0.117.0", - "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter", - "wait-agent-no-longer-needs-targets", - "windows-mcp-startup-warning-snapshots-now-normalize-rendered-paths" - ] - }, - { - "compare": { - "ahead_by": 469, - "commit_shas": [ - "6d2f4aaafc1623a9c5a4b994778329a3a1c686bb", - "c9214192c52aef31758088b5e87e971fc57a0478", - "352f37db03315dc215fbf23cb36b442554afb8c5", - "0d44bd708eef1fe0a00f601ffe2ecab89a77434e", - "8d479f741c501fc21e65f58918548b669a9b492d", - "e7139e14a29de0411a61658a0e5765e2502a0cd2", - "e36ebaa3daca0e5e73dc2d2af82b04c9eca2526b", - "af0427377898290356e47b9b3a3311083d9ed3fb", - "0bd34c28c768fce784d0648fe45e651b9a9b37d4", - "970386e8b2a776d47ef6ac6c2bd67a3c0ed86744", - "2c54d4b1608d6305362dd2c776ee6ac83a37852a", - "25134b592c13328f76b2a56631dcec1abdb1b5b6", - "3360f128f46f2aed392dea0d9557d0bb9536d2c2", - "b6050b42ae7e13b1eb26e9732a1582bd3c055505", - "b3e069e8cbed9ef86a47335041632ddfb458b79f", - "9736fa5e3d5da08e20c533f07c30c2960475e19b", - "86764af684e9091963085f361daa3c521649bb76", - "b23789b770039bca614ac109f3600919c381fbcb", - "dfb36573cd0c6aed5a61d6e11ed6d34a34e160ff", - "609019c6e5a055914dc7d51b111d93db4bd342e1", - "b52abff279ffe57de90cabc536e30737002b7a73", - "5906c6a658d6b91ccd0963ee6741bdb559b8f78e", - "aea82c63eac85f5d5fd85de5ac79a0b1ff8369d4", - "c264c6eef975d4abaf67beefd60added71c90950", - "a27cd2d28150b71882847a8bfdc03d275e29a1eb", - "44d28f500f7f21fa13f0e9eea87544a6269efde7", - "e6e2999209a9a0c3c25a4d2f37aa73d0c400862e", - "81fa04783a551d7e2fc5cfdfc91921aaec3e64bb", - "d76124d656424cd9a15c9ef9e901fc1a9f3679c1", - "d838c23867f6fe2e3e43a0c82d25c17cb3730b1d", - "be5afc65d31728c11d67c589cebbc64a87979e74", - "41fe98b18538c60feeb779f8fad685a1b048da7b", - "21a03f16718dae1ca2f810c33b50c99b5634c931", - "dd30c8eedd171d2dda71c43fac27dc42f457da5f", - "47a9e2e084e21542821ab65aae91f2bd6bf17c07", - "2e849703cd8a2eaebff094ef2a5108a1393d02ed", - "2ef91b71406da6c88cad959d647915b4e7909f1f", - "6a0c4709ca2154e9f3ebb07e58fb156386630188", - "270b7655cd46e8f7573aea122f87b619b225a754", - "7d5d9f041b3c7817abf7874b386b1f68ec6872b4", - "2c85ca68429539ce27b346e573fbd07a18616c53", - "37b057f0030ab34f66dbb6eb6f8e7e7a3443407c", - "f044ca64df3f13faa679341aeb4469706c458f4d", - "2b71717ccf43e36453c2dbac3f02a4dd04e062be", - "426f28ca99a809134bbc9d4879789582f80093c1", - "ec089fd22aba2c8df074b8abfd42d286b38b399c", - "617475e54be4ac4bc3aca3868c979f157f5ca7ae", - "2616c7cf122d97514bf67dd2cc740fba9236d083", - "caee620a530bf65ad4a440909ef5dc64f2c8a3ae", - "15fbf9d4f5fcc224c4c97e015253aeef52939ed4", - "95845cf6ceb85a5793aeb227b5a03056cb508756", - "8002594ee3ad32bc7dd9c2465949212bef1c017d", - "81abb44f686359719da32974fc3ceec5c1c52db6", - "82e8031338a5a94172d985662ca1f0cd0a0d3bfb", - "16d4ea9ca8dd2f6ce586168467b568b2ac6973c1", - "c5778dfca27fe977e714aedc28997e5dce11cd86", - "465897dd0f3ab0732227ca2736c103f675f5d292", - "5b71e5104fec88a9982c55a6cf39623c28144540", - "307e427a9b82f47021ad1939dcf9c5d7495c2552", - "d65deec61718f291cba5a51de9489603865779df", - "f4f6eca871c3983dfee7c7873816179535534997", - "2ffb32db98b2c1ac83cb811e7ce1c0de2320c09d", - "8e24d5aaea1ca44bde08fe7f9b7a2541a4469fe6", - "ed977b42ac4f0b71ea218546153a751866f25b5b", - "61dfe0b86c75bb4e6c173a70ca9fb2f2daac2f67", - "71923f43a7ef8ed02531a885228257e9c5b87c7b", - "142681ef932eab1da27c2a501c60bc857e755a0e", - "5037a2d19924f2e49490453ab2a913da938afbe5", - "343d1af3da64fcfd52260149855159048e9c5178", - "f4d0cbfda61ad81559cb8d7b800b67fef2034748", - "e02fd6e1d3d0ee7a47780ab3efc1c769cd373337", - "b94366441ee80f4c583e321ebb181c4805dad736", - "e39ddc61b14a8c645124f5d45ab912989a02e5fb", - "bede1d9e23202e2fce23b2ad6d154255672a675b", - "3d1abf3f3d5c9f9bcc7b1d93ce509ae75e01214b", - "61429a6c1047244c91732e87b5898867853705f0", - "65f631c3d671d0328271b4462656d47f5003cde5", - "fce0f76d577b5070f1e2b4a2abaa8350acfc38ff", - "48144a7fa41e2343c7622f01e82eb6065e29b7b7", - "178d2b00b1da55e24a16695337bb1b78d6f5883c", - "bc53d42fd98c3e7bc74ece9ac31ddbe894b7a942", - "ae8a3be9585d0918fe38fa199c963aeb80ee4f55", - "4e27a87ec6e1ac95e5bc8a56e5687829e809270c", - "313fb959896b257ab1df2aa32adb8efc789806aa", - "c25c0d6e9efb143df91fe91e56c1bb05f09359bd", - "2238c16a914c9b7337b2bd87bc65972f8daf06d1", - "a16a9109d7c464be03c463074fbe2daaa465b727", - "f7ef9599eddade2c4d1763fcc04581315994dbc6", - "46b653e73c7900cc7fb2e06effc5cf305541aa76", - "4e119a3b38e4a4decfccb003acecabc4614142b6", - "3bbc1ce00395b6b31ed5940814a2dc4cf633228f", - "3807807f911532dffa64c25b66163b0f06360d47", - "7880414a2728514ea4aaa619cb5db0ffa807556d", - "54d3ad1edea9414ba87ffe164191fed69d79ed96", - "38e648ca67802d5f2fb23f9b3bd3f200cdb067fa", - "af568afdd5b18e06098f327850f8da351bf20350", - "bb95ec3ec602dfc7762fd92e2746606df9dfea21", - "213756c9ab22b567d426fe1be9757705fb5862c9", - "c74190a622667158e53b6d10fbfc0387ec43b964", - "716f7b0428de021cc03bfe88c4b5fadd122edd52", - "258ba436f1f784aa058625aec6b6653df83fe9c6", - "9313c49e4c0480189070a149da03b7b6164ebdce", - "28a9807f8403befd318fc6022872b087b2931ddb", - "390b644b212602ee58689e9d305ea50ee4a89d5a", - "19f0d196d11dcf31e02a4d022d099e6d3bcfad6e", - "ea650a91b31eef5b3b376ca4282686df242b9132", - "007196882993dbb987905acf30d450279cc8d560", - "20f43c1e05b2b3890a20521a8138aa53ddaf9837", - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "14f95db57b269a06c8b56b62a280ae54c7bf819b", - "b15c918836ae114f9706e24532465e864f5506c4", - "af8a9d2d2ba84a1dafad6fa51fe3d63e96aceb75", - "cc8fd0ff65b603133304db268dd4b7a86b304dc3", - "a3b3e7a6cc1725b6210250ef5eaf02dfcdef3457", - "0f7394883e59c2a183b707cedbb7e640893d6245", - "1cc87019b413f38664f1248ca954ac872a5a9149", - "a71fc47cf8a7ade4ca7c1823d9affa02749c9ecd", - "0ab8eda375b60dbefd9bf30f2c37d090643866ee", - "faab4d39e18465f6111b9ba5b2ee0dbbae600bd2", - "dc07108af8b0c92adc0bcb320d62db774a06c900", - "1d4b5f130c772ad04bc0ee6c25403f74e56e98fc", - "3d8cdac7978d6414a6164399d7b0d6c9f44c8b33", - "567d2603b8f8ea0cc5c1140a235aaa81d532f5dd", - "a70aee1a1e778a534df85ae3f3257530249aa86c", - "4b8bab6ad3d80d2d20d17f18e4120dbc86681972", - "eaf12beacf748a8275ebaa9752ab537075382bc7", - "f263607c60e5e4dc42d4be14374fae171d4da5bb", - "8d1964686196b7231e7fc2a2f522d715476b5b0c", - "91ca49e53c43455db78d97337ec9647a7e3eedde", - "e4f1b3a65e06a74e2716b01e695a6c1d37a8fdbd", - "13d828d236c05ac1a72570cf49a67b69b28bc139", - "6edb865cc63c607d10014b60981a58e34fce439b", - "8a19dbb1776d5a99df3ddb6d79ace2a7b2b93620", - "c9e706f8b67531f305b0df5ed3d4f5d66ddfa301", - "3a22e101722db9d8e9ade26f0b4260c2291d5f32", - "39097ab65dceda9327a81852b19a8c0e449af0a1", - "9e19004bc2c445bcb0e67b931541f4401d93a9a3", - "cca36c5681d16c7dac6e3f385589b8cd4d3e78cd", - "4fd5c35c4f6f51048f47c8680ed0f6a26c608f68", - "152b676597821063f1ae7c8860fef5d2a1e1aa32", - "b5edeb98a0f3a7a0f43243f6ae06bc7de6cfacc0", - "d9b899309dbba0921350bb7f8d947dbf3efec48d", - "e65ee385793bf0b82cc958b9fc5081f81110706b", - "624c69e8406cd79e8afb29e4b268ca3fede8634a", - "82b061afb21a87b6b3ed3b4e79480ed1e8bf4d9e", - "ab58141e22512bec1c47714502c9396b1921ace1", - "fb41a79f3769381a14a5cf1d4b4ec75352bf7856", - "4294031a93b14d71f613dd089df3ef711ede3da3", - "f44eb29181ad5a3425f5d187558064a2fa56a22a", - "54dbbb839ece332c68558829d45e5cc493e03cc4", - "4ce97cef0216118c86ae9f76b10ce6043a7b1874", - "ded559680df03ebf944d01d8fd19be1debb51d04", - "2b4cc221df31d43e63a6bc818b7529a7477313d5", - "1440dda2400fb0d1a346a7469ce33996776c5448" - ], - "pr_numbers": [ - 12220, - 14495, - 15067, - 15120, - 15522, - 15525, - 15661, - 15690, - 15771, - 15772, - 15791, - 15796, - 15805, - 15811, - 15813, - 15828, - 15829, - 15835, - 15839, - 15860, - 15866, - 15876, - 15880, - 15881, - 15885, - 15891, - 15897, - 15898, - 15900, - 15903, - 15906, - 15909, - 15910, - 15915, - 15917, - 15918, - 15919, - 15921, - 15922, - 15923, - 15928, - 15931, - 15933, - 15934, - 15944, - 15946, - 15948, - 15952, - 15953, - 15954, - 15955, - 15973, - 15985, - 15986, - 15995, - 15996, - 15998, - 15999, - 16000, - 16001, - 16010, - 16013, - 16014, - 16021, - 16026, - 16027, - 16030, - 16031, - 16035, - 16036, - 16041, - 16044, - 16046, - 16047, - 16050, - 16054, - 16057, - 16063, - 16067, - 16071, - 16072, - 16074, - 16080, - 16104, - 16106, - 16109, - 16110, - 16112, - 16114, - 16115, - 16116, - 16118, - 16120, - 16126, - 16128, - 16129, - 16130, - 16132, - 16136, - 16137, - 16138, - 16141, - 16154, - 16184, - 16192, - 16193, - 16194, - 16201, - 16202, - 16204, - 16225, - 16237, - 16238, - 16253, - 16254, - 16273, - 16279, - 16284, - 16286, - 16287, - 16288, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16450, - 16455, - 16456, - 16457, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16528, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16626, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16648, - 16658, - 16662, - 16665, - 16667, - 16668, - 16670, - 16674, - 16699, - 16700, - 16701, - 16707, - 16709, - 16710, - 16711, - 16715, - 16720, - 16722, - 16725, - 16735, - 16737, - 16740, - 16745, - 16746, - 16753, - 16755, - 16757, - 16758, - 16763, - 16795, - 16810, - 16813, - 16822, - 16823, - 16825, - 16829, - 16833, - 16876, - 16877, - 16881, - 16888, - 16925 - ], - "status": "diverged", - "total_commits": 469, - "url": "https://github.com/openai/codex/compare/rust-v0.116.0...rust-v0.119.0-alpha.12" - }, - "prerelease_tag_name": "rust-v0.119.0-alpha.12", - "stable_tag_name": "rust-v0.116.0", - "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter", - "wait-agent-no-longer-needs-targets", - "windows-mcp-startup-warning-snapshots-now-normalize-rendered-paths" - ] - }, - { - "compare": { - "ahead_by": 126, - "commit_shas": [ - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "14f95db57b269a06c8b56b62a280ae54c7bf819b", - "b15c918836ae114f9706e24532465e864f5506c4", - "af8a9d2d2ba84a1dafad6fa51fe3d63e96aceb75", - "cc8fd0ff65b603133304db268dd4b7a86b304dc3", - "a3b3e7a6cc1725b6210250ef5eaf02dfcdef3457", - "0f7394883e59c2a183b707cedbb7e640893d6245", - "1cc87019b413f38664f1248ca954ac872a5a9149", - "a71fc47cf8a7ade4ca7c1823d9affa02749c9ecd", - "0ab8eda375b60dbefd9bf30f2c37d090643866ee", - "faab4d39e18465f6111b9ba5b2ee0dbbae600bd2", - "dc07108af8b0c92adc0bcb320d62db774a06c900", - "1d4b5f130c772ad04bc0ee6c25403f74e56e98fc", - "3d8cdac7978d6414a6164399d7b0d6c9f44c8b33", - "567d2603b8f8ea0cc5c1140a235aaa81d532f5dd", - "a70aee1a1e778a534df85ae3f3257530249aa86c", - "4b8bab6ad3d80d2d20d17f18e4120dbc86681972", - "eaf12beacf748a8275ebaa9752ab537075382bc7", - "f263607c60e5e4dc42d4be14374fae171d4da5bb", - "8d1964686196b7231e7fc2a2f522d715476b5b0c", - "91ca49e53c43455db78d97337ec9647a7e3eedde", - "e4f1b3a65e06a74e2716b01e695a6c1d37a8fdbd", - "13d828d236c05ac1a72570cf49a67b69b28bc139", - "6edb865cc63c607d10014b60981a58e34fce439b", - "8a19dbb1776d5a99df3ddb6d79ace2a7b2b93620", - "c9e706f8b67531f305b0df5ed3d4f5d66ddfa301", - "3a22e101722db9d8e9ade26f0b4260c2291d5f32", - "39097ab65dceda9327a81852b19a8c0e449af0a1", - "9e19004bc2c445bcb0e67b931541f4401d93a9a3", - "e169c915824307eef6c175b7f28fb381da853ef0" - ], - "pr_numbers": [ - 15690, - 15771, - 15772, - 15919, - 16184, - 16192, - 16194, - 16201, - 16202, - 16238, - 16273, - 16284, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16450, - 16455, - 16456, - 16457, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16528, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16626, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16648, - 16658, - 16662, - 16665, - 16667, - 16668, - 16670, - 16674, - 16699, - 16700, - 16707, - 16709, - 16710, - 16711, - 16715, - 16720, - 16722, - 16725, - 16735, - 16737, - 16740, - 16745, - 16746, - 16753, - 16755, - 16757, - 16758 - ], - "status": "diverged", - "total_commits": 126, - "url": "https://github.com/openai/codex/compare/rust-v0.118.0...rust-v0.119.0-alpha.11" - }, - "prerelease_tag_name": "rust-v0.119.0-alpha.11", - "stable_tag_name": "rust-v0.118.0", - "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter" - ] - }, - { - "compare": { - "ahead_by": 222, - "commit_shas": [ - "3360f128f46f2aed392dea0d9557d0bb9536d2c2", - "b6050b42ae7e13b1eb26e9732a1582bd3c055505", - "b3e069e8cbed9ef86a47335041632ddfb458b79f", - "9736fa5e3d5da08e20c533f07c30c2960475e19b", - "86764af684e9091963085f361daa3c521649bb76", - "b23789b770039bca614ac109f3600919c381fbcb", - "dfb36573cd0c6aed5a61d6e11ed6d34a34e160ff", - "609019c6e5a055914dc7d51b111d93db4bd342e1", - "b52abff279ffe57de90cabc536e30737002b7a73", - "5906c6a658d6b91ccd0963ee6741bdb559b8f78e", - "aea82c63eac85f5d5fd85de5ac79a0b1ff8369d4", - "c264c6eef975d4abaf67beefd60added71c90950", - "a27cd2d28150b71882847a8bfdc03d275e29a1eb", - "44d28f500f7f21fa13f0e9eea87544a6269efde7", - "e6e2999209a9a0c3c25a4d2f37aa73d0c400862e", - "81fa04783a551d7e2fc5cfdfc91921aaec3e64bb", - "d76124d656424cd9a15c9ef9e901fc1a9f3679c1", - "d838c23867f6fe2e3e43a0c82d25c17cb3730b1d", - "be5afc65d31728c11d67c589cebbc64a87979e74", - "41fe98b18538c60feeb779f8fad685a1b048da7b", - "21a03f16718dae1ca2f810c33b50c99b5634c931", - "dd30c8eedd171d2dda71c43fac27dc42f457da5f", - "47a9e2e084e21542821ab65aae91f2bd6bf17c07", - "2e849703cd8a2eaebff094ef2a5108a1393d02ed", - "2ef91b71406da6c88cad959d647915b4e7909f1f", - "6a0c4709ca2154e9f3ebb07e58fb156386630188", - "270b7655cd46e8f7573aea122f87b619b225a754", - "7d5d9f041b3c7817abf7874b386b1f68ec6872b4", - "2c85ca68429539ce27b346e573fbd07a18616c53", - "37b057f0030ab34f66dbb6eb6f8e7e7a3443407c", - "f044ca64df3f13faa679341aeb4469706c458f4d", - "2b71717ccf43e36453c2dbac3f02a4dd04e062be", - "426f28ca99a809134bbc9d4879789582f80093c1", - "ec089fd22aba2c8df074b8abfd42d286b38b399c", - "617475e54be4ac4bc3aca3868c979f157f5ca7ae", - "2616c7cf122d97514bf67dd2cc740fba9236d083", - "caee620a530bf65ad4a440909ef5dc64f2c8a3ae", - "15fbf9d4f5fcc224c4c97e015253aeef52939ed4", - "95845cf6ceb85a5793aeb227b5a03056cb508756", - "8002594ee3ad32bc7dd9c2465949212bef1c017d", - "81abb44f686359719da32974fc3ceec5c1c52db6", - "82e8031338a5a94172d985662ca1f0cd0a0d3bfb", - "16d4ea9ca8dd2f6ce586168467b568b2ac6973c1", - "c5778dfca27fe977e714aedc28997e5dce11cd86", - "465897dd0f3ab0732227ca2736c103f675f5d292", - "5b71e5104fec88a9982c55a6cf39623c28144540", - "307e427a9b82f47021ad1939dcf9c5d7495c2552", - "d65deec61718f291cba5a51de9489603865779df", - "f4f6eca871c3983dfee7c7873816179535534997", - "2ffb32db98b2c1ac83cb811e7ce1c0de2320c09d", - "8e24d5aaea1ca44bde08fe7f9b7a2541a4469fe6", - "ed977b42ac4f0b71ea218546153a751866f25b5b", - "61dfe0b86c75bb4e6c173a70ca9fb2f2daac2f67", - "71923f43a7ef8ed02531a885228257e9c5b87c7b", - "142681ef932eab1da27c2a501c60bc857e755a0e", - "5037a2d19924f2e49490453ab2a913da938afbe5", - "343d1af3da64fcfd52260149855159048e9c5178", - "f4d0cbfda61ad81559cb8d7b800b67fef2034748", - "e02fd6e1d3d0ee7a47780ab3efc1c769cd373337", - "b94366441ee80f4c583e321ebb181c4805dad736", - "e39ddc61b14a8c645124f5d45ab912989a02e5fb", - "bede1d9e23202e2fce23b2ad6d154255672a675b", - "3d1abf3f3d5c9f9bcc7b1d93ce509ae75e01214b", - "61429a6c1047244c91732e87b5898867853705f0", - "65f631c3d671d0328271b4462656d47f5003cde5", - "fce0f76d577b5070f1e2b4a2abaa8350acfc38ff", - "48144a7fa41e2343c7622f01e82eb6065e29b7b7", - "178d2b00b1da55e24a16695337bb1b78d6f5883c", - "bc53d42fd98c3e7bc74ece9ac31ddbe894b7a942", - "ae8a3be9585d0918fe38fa199c963aeb80ee4f55", - "4e27a87ec6e1ac95e5bc8a56e5687829e809270c", - "313fb959896b257ab1df2aa32adb8efc789806aa", - "c25c0d6e9efb143df91fe91e56c1bb05f09359bd", - "2238c16a914c9b7337b2bd87bc65972f8daf06d1", - "a16a9109d7c464be03c463074fbe2daaa465b727", - "f7ef9599eddade2c4d1763fcc04581315994dbc6", - "46b653e73c7900cc7fb2e06effc5cf305541aa76", - "4e119a3b38e4a4decfccb003acecabc4614142b6", - "3bbc1ce00395b6b31ed5940814a2dc4cf633228f", - "3807807f911532dffa64c25b66163b0f06360d47", - "7880414a2728514ea4aaa619cb5db0ffa807556d", - "54d3ad1edea9414ba87ffe164191fed69d79ed96", - "38e648ca67802d5f2fb23f9b3bd3f200cdb067fa", - "af568afdd5b18e06098f327850f8da351bf20350", - "bb95ec3ec602dfc7762fd92e2746606df9dfea21", - "213756c9ab22b567d426fe1be9757705fb5862c9", - "c74190a622667158e53b6d10fbfc0387ec43b964", - "716f7b0428de021cc03bfe88c4b5fadd122edd52", - "258ba436f1f784aa058625aec6b6653df83fe9c6", - "9313c49e4c0480189070a149da03b7b6164ebdce", - "28a9807f8403befd318fc6022872b087b2931ddb", - "390b644b212602ee58689e9d305ea50ee4a89d5a", - "19f0d196d11dcf31e02a4d022d099e6d3bcfad6e", - "ea650a91b31eef5b3b376ca4282686df242b9132", - "007196882993dbb987905acf30d450279cc8d560", - "20f43c1e05b2b3890a20521a8138aa53ddaf9837", - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "14f95db57b269a06c8b56b62a280ae54c7bf819b", - "b15c918836ae114f9706e24532465e864f5506c4", - "af8a9d2d2ba84a1dafad6fa51fe3d63e96aceb75", - "cc8fd0ff65b603133304db268dd4b7a86b304dc3", - "a3b3e7a6cc1725b6210250ef5eaf02dfcdef3457", - "0f7394883e59c2a183b707cedbb7e640893d6245", - "1cc87019b413f38664f1248ca954ac872a5a9149", - "a71fc47cf8a7ade4ca7c1823d9affa02749c9ecd", - "0ab8eda375b60dbefd9bf30f2c37d090643866ee", - "faab4d39e18465f6111b9ba5b2ee0dbbae600bd2", - "dc07108af8b0c92adc0bcb320d62db774a06c900", - "1d4b5f130c772ad04bc0ee6c25403f74e56e98fc", - "3d8cdac7978d6414a6164399d7b0d6c9f44c8b33", - "567d2603b8f8ea0cc5c1140a235aaa81d532f5dd", - "a70aee1a1e778a534df85ae3f3257530249aa86c", - "4b8bab6ad3d80d2d20d17f18e4120dbc86681972", - "eaf12beacf748a8275ebaa9752ab537075382bc7", - "f263607c60e5e4dc42d4be14374fae171d4da5bb", - "8d1964686196b7231e7fc2a2f522d715476b5b0c", - "91ca49e53c43455db78d97337ec9647a7e3eedde", - "e4f1b3a65e06a74e2716b01e695a6c1d37a8fdbd", - "13d828d236c05ac1a72570cf49a67b69b28bc139", - "6edb865cc63c607d10014b60981a58e34fce439b", - "8a19dbb1776d5a99df3ddb6d79ace2a7b2b93620", - "c9e706f8b67531f305b0df5ed3d4f5d66ddfa301", - "3a22e101722db9d8e9ade26f0b4260c2291d5f32", - "39097ab65dceda9327a81852b19a8c0e449af0a1", - "9e19004bc2c445bcb0e67b931541f4401d93a9a3", - "e169c915824307eef6c175b7f28fb381da853ef0" - ], - "pr_numbers": [ - 12220, - 14495, - 15067, - 15120, - 15522, - 15525, - 15690, - 15771, - 15772, - 15791, - 15811, - 15828, - 15876, - 15891, - 15897, - 15898, - 15900, - 15903, - 15906, - 15909, - 15910, - 15917, - 15918, - 15919, - 15921, - 15922, - 15923, - 15928, - 15931, - 15933, - 15934, - 15944, - 15946, - 15948, - 15952, - 15953, - 15954, - 15955, - 15973, - 15985, - 15986, - 15995, - 15996, - 15998, - 15999, - 16000, - 16001, - 16010, - 16013, - 16014, - 16021, - 16026, - 16027, - 16030, - 16031, - 16035, - 16036, - 16041, - 16044, - 16046, - 16047, - 16050, - 16054, - 16057, - 16063, - 16067, - 16071, - 16072, - 16074, - 16080, - 16104, - 16106, - 16109, - 16110, - 16112, - 16114, - 16115, - 16116, - 16118, - 16120, - 16126, - 16128, - 16129, - 16130, - 16132, - 16136, - 16137, - 16138, - 16141, - 16154, - 16184, - 16192, - 16193, - 16194, - 16201, - 16202, - 16204, - 16225, - 16237, - 16238, - 16253, - 16254, - 16273, - 16279, - 16284, - 16286, - 16287, - 16288, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16450, - 16455, - 16456, - 16457, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16528, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16626, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16648, - 16658, - 16662, - 16665, - 16667, - 16668, - 16670, - 16674, - 16699, - 16700, - 16707, - 16709, - 16710, - 16711, - 16715, - 16720, - 16722, - 16725, - 16735, - 16737, - 16740, - 16745, - 16746, - 16753, - 16755, - 16757, - 16758 - ], - "status": "diverged", - "total_commits": 222, - "url": "https://github.com/openai/codex/compare/rust-v0.117.0...rust-v0.119.0-alpha.11" - }, - "prerelease_tag_name": "rust-v0.119.0-alpha.11", - "stable_tag_name": "rust-v0.117.0", - "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter", - "wait-agent-no-longer-needs-targets", - "windows-mcp-startup-warning-snapshots-now-normalize-rendered-paths" - ] - }, - { - "compare": { - "ahead_by": 453, - "commit_shas": [ - "d7e35e56cff9157e4f1ba8da50a44a7bc6353028", - "78799c1bcfb997c7f39625d6f47f33e55fe82708", - "c4d9887f9a11965221bb2b2dc98f68e46b2681e8", - "4b50446ffa3385f8b72a5ced71a1306d28646d02", - "b565f05d79c9e6ee8bc891353ae4c037c5982a01", - "1ff39b6fa812e987c143c976c488794fd4966f2d", - "6d0525ae7015cb9239cc907fe78e88cf2fea5ce5", - "937cb5081df1ac9c458a7bcd784e9878ac924a47", - "7ef3cfe63e435ee03812cfb818c4ba8a063a6833", - "b00a05c7855eb81e61f95f4d7f00b8c97a13b284", - "4a5635b5a0336274b6ee196140bfe151b18a642d", - "7dac332c9340c689cbc9641c5fca21306b916f00", - "6dcac41d5375d70dc9606c790c68b63260fb2635", - "01fa4f0212db10f0ea3b27e3a0657c5fba504588", - "26c66f3ee1dda627d08daa50a3f809b5a1825357", - "a5824e37db4834a0eb4c191e67de0dfec4b8fff0", - "6d2f4aaafc1623a9c5a4b994778329a3a1c686bb", - "c9214192c52aef31758088b5e87e971fc57a0478", - "352f37db03315dc215fbf23cb36b442554afb8c5", - "0d44bd708eef1fe0a00f601ffe2ecab89a77434e", - "8d479f741c501fc21e65f58918548b669a9b492d", - "e7139e14a29de0411a61658a0e5765e2502a0cd2", - "e36ebaa3daca0e5e73dc2d2af82b04c9eca2526b", - "af0427377898290356e47b9b3a3311083d9ed3fb", - "0bd34c28c768fce784d0648fe45e651b9a9b37d4", - "970386e8b2a776d47ef6ac6c2bd67a3c0ed86744", - "2c54d4b1608d6305362dd2c776ee6ac83a37852a", - "25134b592c13328f76b2a56631dcec1abdb1b5b6", - "3360f128f46f2aed392dea0d9557d0bb9536d2c2", - "b6050b42ae7e13b1eb26e9732a1582bd3c055505", - "b3e069e8cbed9ef86a47335041632ddfb458b79f", - "9736fa5e3d5da08e20c533f07c30c2960475e19b", - "86764af684e9091963085f361daa3c521649bb76", - "b23789b770039bca614ac109f3600919c381fbcb", - "dfb36573cd0c6aed5a61d6e11ed6d34a34e160ff", - "609019c6e5a055914dc7d51b111d93db4bd342e1", - "b52abff279ffe57de90cabc536e30737002b7a73", - "5906c6a658d6b91ccd0963ee6741bdb559b8f78e", - "aea82c63eac85f5d5fd85de5ac79a0b1ff8369d4", - "c264c6eef975d4abaf67beefd60added71c90950", - "a27cd2d28150b71882847a8bfdc03d275e29a1eb", - "44d28f500f7f21fa13f0e9eea87544a6269efde7", - "e6e2999209a9a0c3c25a4d2f37aa73d0c400862e", - "81fa04783a551d7e2fc5cfdfc91921aaec3e64bb", - "d76124d656424cd9a15c9ef9e901fc1a9f3679c1", - "d838c23867f6fe2e3e43a0c82d25c17cb3730b1d", - "be5afc65d31728c11d67c589cebbc64a87979e74", - "41fe98b18538c60feeb779f8fad685a1b048da7b", - "21a03f16718dae1ca2f810c33b50c99b5634c931", - "dd30c8eedd171d2dda71c43fac27dc42f457da5f", - "47a9e2e084e21542821ab65aae91f2bd6bf17c07", - "2e849703cd8a2eaebff094ef2a5108a1393d02ed", - "2ef91b71406da6c88cad959d647915b4e7909f1f", - "6a0c4709ca2154e9f3ebb07e58fb156386630188", - "270b7655cd46e8f7573aea122f87b619b225a754", - "7d5d9f041b3c7817abf7874b386b1f68ec6872b4", - "2c85ca68429539ce27b346e573fbd07a18616c53", - "37b057f0030ab34f66dbb6eb6f8e7e7a3443407c", - "f044ca64df3f13faa679341aeb4469706c458f4d", - "2b71717ccf43e36453c2dbac3f02a4dd04e062be", - "426f28ca99a809134bbc9d4879789582f80093c1", - "ec089fd22aba2c8df074b8abfd42d286b38b399c", - "617475e54be4ac4bc3aca3868c979f157f5ca7ae", - "2616c7cf122d97514bf67dd2cc740fba9236d083", - "caee620a530bf65ad4a440909ef5dc64f2c8a3ae", - "15fbf9d4f5fcc224c4c97e015253aeef52939ed4", - "95845cf6ceb85a5793aeb227b5a03056cb508756", - "8002594ee3ad32bc7dd9c2465949212bef1c017d", - "81abb44f686359719da32974fc3ceec5c1c52db6", - "82e8031338a5a94172d985662ca1f0cd0a0d3bfb", - "16d4ea9ca8dd2f6ce586168467b568b2ac6973c1", - "c5778dfca27fe977e714aedc28997e5dce11cd86", - "465897dd0f3ab0732227ca2736c103f675f5d292", - "5b71e5104fec88a9982c55a6cf39623c28144540", - "307e427a9b82f47021ad1939dcf9c5d7495c2552", - "d65deec61718f291cba5a51de9489603865779df", - "f4f6eca871c3983dfee7c7873816179535534997", - "2ffb32db98b2c1ac83cb811e7ce1c0de2320c09d", - "8e24d5aaea1ca44bde08fe7f9b7a2541a4469fe6", - "ed977b42ac4f0b71ea218546153a751866f25b5b", - "61dfe0b86c75bb4e6c173a70ca9fb2f2daac2f67", - "71923f43a7ef8ed02531a885228257e9c5b87c7b", - "142681ef932eab1da27c2a501c60bc857e755a0e", - "5037a2d19924f2e49490453ab2a913da938afbe5", - "343d1af3da64fcfd52260149855159048e9c5178", - "f4d0cbfda61ad81559cb8d7b800b67fef2034748", - "e02fd6e1d3d0ee7a47780ab3efc1c769cd373337", - "b94366441ee80f4c583e321ebb181c4805dad736", - "e39ddc61b14a8c645124f5d45ab912989a02e5fb", - "bede1d9e23202e2fce23b2ad6d154255672a675b", - "3d1abf3f3d5c9f9bcc7b1d93ce509ae75e01214b", - "61429a6c1047244c91732e87b5898867853705f0", - "65f631c3d671d0328271b4462656d47f5003cde5", - "fce0f76d577b5070f1e2b4a2abaa8350acfc38ff", - "48144a7fa41e2343c7622f01e82eb6065e29b7b7", - "178d2b00b1da55e24a16695337bb1b78d6f5883c", - "bc53d42fd98c3e7bc74ece9ac31ddbe894b7a942", - "ae8a3be9585d0918fe38fa199c963aeb80ee4f55", - "4e27a87ec6e1ac95e5bc8a56e5687829e809270c", - "313fb959896b257ab1df2aa32adb8efc789806aa", - "c25c0d6e9efb143df91fe91e56c1bb05f09359bd", - "2238c16a914c9b7337b2bd87bc65972f8daf06d1", - "a16a9109d7c464be03c463074fbe2daaa465b727", - "f7ef9599eddade2c4d1763fcc04581315994dbc6", - "46b653e73c7900cc7fb2e06effc5cf305541aa76", - "4e119a3b38e4a4decfccb003acecabc4614142b6", - "3bbc1ce00395b6b31ed5940814a2dc4cf633228f", - "3807807f911532dffa64c25b66163b0f06360d47", - "7880414a2728514ea4aaa619cb5db0ffa807556d", - "54d3ad1edea9414ba87ffe164191fed69d79ed96", - "38e648ca67802d5f2fb23f9b3bd3f200cdb067fa", - "af568afdd5b18e06098f327850f8da351bf20350", - "bb95ec3ec602dfc7762fd92e2746606df9dfea21", - "213756c9ab22b567d426fe1be9757705fb5862c9", - "c74190a622667158e53b6d10fbfc0387ec43b964", - "716f7b0428de021cc03bfe88c4b5fadd122edd52", - "258ba436f1f784aa058625aec6b6653df83fe9c6", - "9313c49e4c0480189070a149da03b7b6164ebdce", - "28a9807f8403befd318fc6022872b087b2931ddb", - "390b644b212602ee58689e9d305ea50ee4a89d5a", - "19f0d196d11dcf31e02a4d022d099e6d3bcfad6e", - "ea650a91b31eef5b3b376ca4282686df242b9132", - "007196882993dbb987905acf30d450279cc8d560", - "20f43c1e05b2b3890a20521a8138aa53ddaf9837", - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "14f95db57b269a06c8b56b62a280ae54c7bf819b", - "b15c918836ae114f9706e24532465e864f5506c4", - "af8a9d2d2ba84a1dafad6fa51fe3d63e96aceb75", - "cc8fd0ff65b603133304db268dd4b7a86b304dc3", - "a3b3e7a6cc1725b6210250ef5eaf02dfcdef3457", - "0f7394883e59c2a183b707cedbb7e640893d6245", - "1cc87019b413f38664f1248ca954ac872a5a9149", - "a71fc47cf8a7ade4ca7c1823d9affa02749c9ecd", - "0ab8eda375b60dbefd9bf30f2c37d090643866ee", - "faab4d39e18465f6111b9ba5b2ee0dbbae600bd2", - "dc07108af8b0c92adc0bcb320d62db774a06c900", - "1d4b5f130c772ad04bc0ee6c25403f74e56e98fc", - "3d8cdac7978d6414a6164399d7b0d6c9f44c8b33", - "567d2603b8f8ea0cc5c1140a235aaa81d532f5dd", - "a70aee1a1e778a534df85ae3f3257530249aa86c", - "4b8bab6ad3d80d2d20d17f18e4120dbc86681972", - "eaf12beacf748a8275ebaa9752ab537075382bc7", - "f263607c60e5e4dc42d4be14374fae171d4da5bb", - "8d1964686196b7231e7fc2a2f522d715476b5b0c", - "91ca49e53c43455db78d97337ec9647a7e3eedde", - "e4f1b3a65e06a74e2716b01e695a6c1d37a8fdbd", - "13d828d236c05ac1a72570cf49a67b69b28bc139", - "6edb865cc63c607d10014b60981a58e34fce439b", - "8a19dbb1776d5a99df3ddb6d79ace2a7b2b93620", - "c9e706f8b67531f305b0df5ed3d4f5d66ddfa301", - "3a22e101722db9d8e9ade26f0b4260c2291d5f32", - "39097ab65dceda9327a81852b19a8c0e449af0a1", - "9e19004bc2c445bcb0e67b931541f4401d93a9a3", - "e169c915824307eef6c175b7f28fb381da853ef0" - ], - "pr_numbers": [ - 12220, - 14495, - 14853, - 15067, - 15120, - 15522, - 15525, - 15531, - 15661, - 15690, - 15691, - 15693, - 15771, - 15772, - 15784, - 15791, - 15796, - 15800, - 15805, - 15810, - 15811, - 15812, - 15813, - 15817, - 15820, - 15825, - 15828, - 15829, - 15835, - 15839, - 15851, - 15860, - 15861, - 15864, - 15866, - 15869, - 15876, - 15877, - 15880, - 15881, - 15885, - 15891, - 15897, - 15898, - 15900, - 15903, - 15906, - 15909, - 15910, - 15917, - 15918, - 15919, - 15921, - 15922, - 15923, - 15928, - 15931, - 15933, - 15934, - 15944, - 15946, - 15948, - 15952, - 15953, - 15954, - 15955, - 15973, - 15985, - 15986, - 15995, - 15996, - 15998, - 15999, - 16000, - 16001, - 16010, - 16013, - 16014, - 16021, - 16026, - 16027, - 16030, - 16031, - 16035, - 16036, - 16041, - 16044, - 16046, - 16047, - 16050, - 16054, - 16057, - 16063, - 16067, - 16071, - 16072, - 16074, - 16080, - 16104, - 16106, - 16109, - 16110, - 16112, - 16114, - 16115, - 16116, - 16118, - 16120, - 16126, - 16128, - 16129, - 16130, - 16132, - 16136, - 16137, - 16138, - 16141, - 16154, - 16184, - 16192, - 16193, - 16194, - 16201, - 16202, - 16204, - 16225, - 16237, - 16238, - 16253, - 16254, - 16273, - 16279, - 16284, - 16286, - 16287, - 16288, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16450, - 16455, - 16456, - 16457, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16528, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16626, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16648, - 16658, - 16662, - 16665, - 16667, - 16668, - 16670, - 16674, - 16699, - 16700, - 16707, - 16709, - 16710, - 16711, - 16715, - 16720, - 16722, - 16725, - 16735, - 16737, - 16740, - 16745, - 16746, - 16753, - 16755, - 16757, - 16758 - ], - "status": "diverged", - "total_commits": 453, - "url": "https://github.com/openai/codex/compare/rust-v0.116.0...rust-v0.119.0-alpha.11" - }, - "prerelease_tag_name": "rust-v0.119.0-alpha.11", - "stable_tag_name": "rust-v0.116.0", - "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter", - "wait-agent-no-longer-needs-targets", - "windows-mcp-startup-warning-snapshots-now-normalize-rendered-paths" - ] - }, - { - "compare": { - "ahead_by": 120, - "commit_shas": [ - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "14f95db57b269a06c8b56b62a280ae54c7bf819b", - "b15c918836ae114f9706e24532465e864f5506c4", - "af8a9d2d2ba84a1dafad6fa51fe3d63e96aceb75", - "cc8fd0ff65b603133304db268dd4b7a86b304dc3", - "a3b3e7a6cc1725b6210250ef5eaf02dfcdef3457", - "0f7394883e59c2a183b707cedbb7e640893d6245", - "1cc87019b413f38664f1248ca954ac872a5a9149", - "a71fc47cf8a7ade4ca7c1823d9affa02749c9ecd", - "0ab8eda375b60dbefd9bf30f2c37d090643866ee", - "faab4d39e18465f6111b9ba5b2ee0dbbae600bd2", - "dc07108af8b0c92adc0bcb320d62db774a06c900", - "1d4b5f130c772ad04bc0ee6c25403f74e56e98fc", - "3d8cdac7978d6414a6164399d7b0d6c9f44c8b33", - "567d2603b8f8ea0cc5c1140a235aaa81d532f5dd", - "a70aee1a1e778a534df85ae3f3257530249aa86c", - "4b8bab6ad3d80d2d20d17f18e4120dbc86681972", - "eaf12beacf748a8275ebaa9752ab537075382bc7", - "f263607c60e5e4dc42d4be14374fae171d4da5bb", - "8d1964686196b7231e7fc2a2f522d715476b5b0c", - "91ca49e53c43455db78d97337ec9647a7e3eedde", - "e4f1b3a65e06a74e2716b01e695a6c1d37a8fdbd", - "13d828d236c05ac1a72570cf49a67b69b28bc139", - "48077f28e07117375f84a08924555b687de019ee" - ], - "pr_numbers": [ - 15690, - 15771, - 15772, - 15919, - 16184, - 16192, - 16194, - 16201, - 16202, - 16238, - 16273, - 16284, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16450, - 16455, - 16456, - 16457, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16528, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16626, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16648, - 16658, - 16662, - 16665, - 16667, - 16668, - 16670, - 16674, - 16699, - 16700, - 16707, - 16709, - 16710, - 16711, - 16715, - 16720, - 16722, - 16725, - 16735, - 16745, - 16755 - ], - "status": "diverged", - "total_commits": 120, - "url": "https://github.com/openai/codex/compare/rust-v0.118.0...rust-v0.119.0-alpha.10" - }, - "prerelease_tag_name": "rust-v0.119.0-alpha.10", - "stable_tag_name": "rust-v0.118.0", - "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter" - ] - }, - { - "compare": { - "ahead_by": 216, - "commit_shas": [ - "3360f128f46f2aed392dea0d9557d0bb9536d2c2", - "b6050b42ae7e13b1eb26e9732a1582bd3c055505", - "b3e069e8cbed9ef86a47335041632ddfb458b79f", - "9736fa5e3d5da08e20c533f07c30c2960475e19b", - "86764af684e9091963085f361daa3c521649bb76", - "b23789b770039bca614ac109f3600919c381fbcb", - "dfb36573cd0c6aed5a61d6e11ed6d34a34e160ff", - "609019c6e5a055914dc7d51b111d93db4bd342e1", - "b52abff279ffe57de90cabc536e30737002b7a73", - "5906c6a658d6b91ccd0963ee6741bdb559b8f78e", - "aea82c63eac85f5d5fd85de5ac79a0b1ff8369d4", - "c264c6eef975d4abaf67beefd60added71c90950", - "a27cd2d28150b71882847a8bfdc03d275e29a1eb", - "44d28f500f7f21fa13f0e9eea87544a6269efde7", - "e6e2999209a9a0c3c25a4d2f37aa73d0c400862e", - "81fa04783a551d7e2fc5cfdfc91921aaec3e64bb", - "d76124d656424cd9a15c9ef9e901fc1a9f3679c1", - "d838c23867f6fe2e3e43a0c82d25c17cb3730b1d", - "be5afc65d31728c11d67c589cebbc64a87979e74", - "41fe98b18538c60feeb779f8fad685a1b048da7b", - "21a03f16718dae1ca2f810c33b50c99b5634c931", - "dd30c8eedd171d2dda71c43fac27dc42f457da5f", - "47a9e2e084e21542821ab65aae91f2bd6bf17c07", - "2e849703cd8a2eaebff094ef2a5108a1393d02ed", - "2ef91b71406da6c88cad959d647915b4e7909f1f", - "6a0c4709ca2154e9f3ebb07e58fb156386630188", - "270b7655cd46e8f7573aea122f87b619b225a754", - "7d5d9f041b3c7817abf7874b386b1f68ec6872b4", - "2c85ca68429539ce27b346e573fbd07a18616c53", - "37b057f0030ab34f66dbb6eb6f8e7e7a3443407c", - "f044ca64df3f13faa679341aeb4469706c458f4d", - "2b71717ccf43e36453c2dbac3f02a4dd04e062be", - "426f28ca99a809134bbc9d4879789582f80093c1", - "ec089fd22aba2c8df074b8abfd42d286b38b399c", - "617475e54be4ac4bc3aca3868c979f157f5ca7ae", - "2616c7cf122d97514bf67dd2cc740fba9236d083", - "caee620a530bf65ad4a440909ef5dc64f2c8a3ae", - "15fbf9d4f5fcc224c4c97e015253aeef52939ed4", - "95845cf6ceb85a5793aeb227b5a03056cb508756", - "8002594ee3ad32bc7dd9c2465949212bef1c017d", - "81abb44f686359719da32974fc3ceec5c1c52db6", - "82e8031338a5a94172d985662ca1f0cd0a0d3bfb", - "16d4ea9ca8dd2f6ce586168467b568b2ac6973c1", - "c5778dfca27fe977e714aedc28997e5dce11cd86", - "465897dd0f3ab0732227ca2736c103f675f5d292", - "5b71e5104fec88a9982c55a6cf39623c28144540", - "307e427a9b82f47021ad1939dcf9c5d7495c2552", - "d65deec61718f291cba5a51de9489603865779df", - "f4f6eca871c3983dfee7c7873816179535534997", - "2ffb32db98b2c1ac83cb811e7ce1c0de2320c09d", - "8e24d5aaea1ca44bde08fe7f9b7a2541a4469fe6", - "ed977b42ac4f0b71ea218546153a751866f25b5b", - "61dfe0b86c75bb4e6c173a70ca9fb2f2daac2f67", - "71923f43a7ef8ed02531a885228257e9c5b87c7b", - "142681ef932eab1da27c2a501c60bc857e755a0e", - "5037a2d19924f2e49490453ab2a913da938afbe5", - "343d1af3da64fcfd52260149855159048e9c5178", - "f4d0cbfda61ad81559cb8d7b800b67fef2034748", - "e02fd6e1d3d0ee7a47780ab3efc1c769cd373337", - "b94366441ee80f4c583e321ebb181c4805dad736", - "e39ddc61b14a8c645124f5d45ab912989a02e5fb", - "bede1d9e23202e2fce23b2ad6d154255672a675b", - "3d1abf3f3d5c9f9bcc7b1d93ce509ae75e01214b", - "61429a6c1047244c91732e87b5898867853705f0", - "65f631c3d671d0328271b4462656d47f5003cde5", - "fce0f76d577b5070f1e2b4a2abaa8350acfc38ff", - "48144a7fa41e2343c7622f01e82eb6065e29b7b7", - "178d2b00b1da55e24a16695337bb1b78d6f5883c", - "bc53d42fd98c3e7bc74ece9ac31ddbe894b7a942", - "ae8a3be9585d0918fe38fa199c963aeb80ee4f55", - "4e27a87ec6e1ac95e5bc8a56e5687829e809270c", - "313fb959896b257ab1df2aa32adb8efc789806aa", - "c25c0d6e9efb143df91fe91e56c1bb05f09359bd", - "2238c16a914c9b7337b2bd87bc65972f8daf06d1", - "a16a9109d7c464be03c463074fbe2daaa465b727", - "f7ef9599eddade2c4d1763fcc04581315994dbc6", - "46b653e73c7900cc7fb2e06effc5cf305541aa76", - "4e119a3b38e4a4decfccb003acecabc4614142b6", - "3bbc1ce00395b6b31ed5940814a2dc4cf633228f", - "3807807f911532dffa64c25b66163b0f06360d47", - "7880414a2728514ea4aaa619cb5db0ffa807556d", - "54d3ad1edea9414ba87ffe164191fed69d79ed96", - "38e648ca67802d5f2fb23f9b3bd3f200cdb067fa", - "af568afdd5b18e06098f327850f8da351bf20350", - "bb95ec3ec602dfc7762fd92e2746606df9dfea21", - "213756c9ab22b567d426fe1be9757705fb5862c9", - "c74190a622667158e53b6d10fbfc0387ec43b964", - "716f7b0428de021cc03bfe88c4b5fadd122edd52", - "258ba436f1f784aa058625aec6b6653df83fe9c6", - "9313c49e4c0480189070a149da03b7b6164ebdce", - "28a9807f8403befd318fc6022872b087b2931ddb", - "390b644b212602ee58689e9d305ea50ee4a89d5a", - "19f0d196d11dcf31e02a4d022d099e6d3bcfad6e", - "ea650a91b31eef5b3b376ca4282686df242b9132", - "007196882993dbb987905acf30d450279cc8d560", - "20f43c1e05b2b3890a20521a8138aa53ddaf9837", - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "14f95db57b269a06c8b56b62a280ae54c7bf819b", - "b15c918836ae114f9706e24532465e864f5506c4", - "af8a9d2d2ba84a1dafad6fa51fe3d63e96aceb75", - "cc8fd0ff65b603133304db268dd4b7a86b304dc3", - "a3b3e7a6cc1725b6210250ef5eaf02dfcdef3457", - "0f7394883e59c2a183b707cedbb7e640893d6245", - "1cc87019b413f38664f1248ca954ac872a5a9149", - "a71fc47cf8a7ade4ca7c1823d9affa02749c9ecd", - "0ab8eda375b60dbefd9bf30f2c37d090643866ee", - "faab4d39e18465f6111b9ba5b2ee0dbbae600bd2", - "dc07108af8b0c92adc0bcb320d62db774a06c900", - "1d4b5f130c772ad04bc0ee6c25403f74e56e98fc", - "3d8cdac7978d6414a6164399d7b0d6c9f44c8b33", - "567d2603b8f8ea0cc5c1140a235aaa81d532f5dd", - "a70aee1a1e778a534df85ae3f3257530249aa86c", - "4b8bab6ad3d80d2d20d17f18e4120dbc86681972", - "eaf12beacf748a8275ebaa9752ab537075382bc7", - "f263607c60e5e4dc42d4be14374fae171d4da5bb", - "8d1964686196b7231e7fc2a2f522d715476b5b0c", - "91ca49e53c43455db78d97337ec9647a7e3eedde", - "e4f1b3a65e06a74e2716b01e695a6c1d37a8fdbd", - "13d828d236c05ac1a72570cf49a67b69b28bc139", - "48077f28e07117375f84a08924555b687de019ee" - ], - "pr_numbers": [ - 12220, - 14495, - 15067, - 15120, - 15522, - 15525, - 15690, - 15771, - 15772, - 15791, - 15811, - 15828, - 15876, - 15891, - 15897, - 15898, - 15900, - 15903, - 15906, - 15909, - 15910, - 15917, - 15918, - 15919, - 15921, - 15922, - 15923, - 15928, - 15931, - 15933, - 15934, - 15944, - 15946, - 15948, - 15952, - 15953, - 15954, - 15955, - 15973, - 15985, - 15986, - 15995, - 15996, - 15998, - 15999, - 16000, - 16001, - 16010, - 16013, - 16014, - 16021, - 16026, - 16027, - 16030, - 16031, - 16035, - 16036, - 16041, - 16044, - 16046, - 16047, - 16050, - 16054, - 16057, - 16063, - 16067, - 16071, - 16072, - 16074, - 16080, - 16104, - 16106, - 16109, - 16110, - 16112, - 16114, - 16115, - 16116, - 16118, - 16120, - 16126, - 16128, - 16129, - 16130, - 16132, - 16136, - 16137, - 16138, - 16141, - 16154, - 16184, - 16192, - 16193, - 16194, - 16201, - 16202, - 16204, - 16225, - 16237, - 16238, - 16253, - 16254, - 16273, - 16279, - 16284, - 16286, - 16287, - 16288, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16450, - 16455, - 16456, - 16457, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16528, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16626, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16648, - 16658, - 16662, - 16665, - 16667, - 16668, - 16670, - 16674, - 16699, - 16700, - 16707, - 16709, - 16710, - 16711, - 16715, - 16720, - 16722, - 16725, - 16735, - 16745, - 16755 - ], - "status": "diverged", - "total_commits": 216, - "url": "https://github.com/openai/codex/compare/rust-v0.117.0...rust-v0.119.0-alpha.10" - }, - "prerelease_tag_name": "rust-v0.119.0-alpha.10", - "stable_tag_name": "rust-v0.117.0", - "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter", - "wait-agent-no-longer-needs-targets", - "windows-mcp-startup-warning-snapshots-now-normalize-rendered-paths" - ] - }, - { - "compare": { - "ahead_by": 447, + "ahead_by": 45, "commit_shas": [ - "2c67a27a719d6db46ea29e3a4f306d34db52ace2", - "b6524514c1343c42d9520f1c60a6c5cf4ee5c15f", - "eee692e35167e9c6b7eec459fd8f4b0c347a4458", - "f24c55f0d53842ca0061d149380a8cfd4b4bdda4", - "8fa88fa8cabddb15c6477b84f2d1774ce50b20bd", - "2794e278497e7e604a512ce877d16ed8e8fe6be9", - "d7e35e56cff9157e4f1ba8da50a44a7bc6353028", - "78799c1bcfb997c7f39625d6f47f33e55fe82708", - "c4d9887f9a11965221bb2b2dc98f68e46b2681e8", - "4b50446ffa3385f8b72a5ced71a1306d28646d02", - "b565f05d79c9e6ee8bc891353ae4c037c5982a01", - "1ff39b6fa812e987c143c976c488794fd4966f2d", - "6d0525ae7015cb9239cc907fe78e88cf2fea5ce5", - "937cb5081df1ac9c458a7bcd784e9878ac924a47", - "7ef3cfe63e435ee03812cfb818c4ba8a063a6833", - "b00a05c7855eb81e61f95f4d7f00b8c97a13b284", - "4a5635b5a0336274b6ee196140bfe151b18a642d", - "7dac332c9340c689cbc9641c5fca21306b916f00", - "6dcac41d5375d70dc9606c790c68b63260fb2635", - "01fa4f0212db10f0ea3b27e3a0657c5fba504588", - "26c66f3ee1dda627d08daa50a3f809b5a1825357", - "a5824e37db4834a0eb4c191e67de0dfec4b8fff0", - "6d2f4aaafc1623a9c5a4b994778329a3a1c686bb", - "c9214192c52aef31758088b5e87e971fc57a0478", - "352f37db03315dc215fbf23cb36b442554afb8c5", - "0d44bd708eef1fe0a00f601ffe2ecab89a77434e", - "8d479f741c501fc21e65f58918548b669a9b492d", - "e7139e14a29de0411a61658a0e5765e2502a0cd2", - "e36ebaa3daca0e5e73dc2d2af82b04c9eca2526b", - "af0427377898290356e47b9b3a3311083d9ed3fb", - "0bd34c28c768fce784d0648fe45e651b9a9b37d4", - "970386e8b2a776d47ef6ac6c2bd67a3c0ed86744", - "2c54d4b1608d6305362dd2c776ee6ac83a37852a", - "25134b592c13328f76b2a56631dcec1abdb1b5b6", - "3360f128f46f2aed392dea0d9557d0bb9536d2c2", - "b6050b42ae7e13b1eb26e9732a1582bd3c055505", - "b3e069e8cbed9ef86a47335041632ddfb458b79f", - "9736fa5e3d5da08e20c533f07c30c2960475e19b", - "86764af684e9091963085f361daa3c521649bb76", - "b23789b770039bca614ac109f3600919c381fbcb", - "dfb36573cd0c6aed5a61d6e11ed6d34a34e160ff", - "609019c6e5a055914dc7d51b111d93db4bd342e1", - "b52abff279ffe57de90cabc536e30737002b7a73", - "5906c6a658d6b91ccd0963ee6741bdb559b8f78e", - "aea82c63eac85f5d5fd85de5ac79a0b1ff8369d4", - "c264c6eef975d4abaf67beefd60added71c90950", - "a27cd2d28150b71882847a8bfdc03d275e29a1eb", - "44d28f500f7f21fa13f0e9eea87544a6269efde7", - "e6e2999209a9a0c3c25a4d2f37aa73d0c400862e", - "81fa04783a551d7e2fc5cfdfc91921aaec3e64bb", - "d76124d656424cd9a15c9ef9e901fc1a9f3679c1", - "d838c23867f6fe2e3e43a0c82d25c17cb3730b1d", - "be5afc65d31728c11d67c589cebbc64a87979e74", - "41fe98b18538c60feeb779f8fad685a1b048da7b", - "21a03f16718dae1ca2f810c33b50c99b5634c931", - "dd30c8eedd171d2dda71c43fac27dc42f457da5f", - "47a9e2e084e21542821ab65aae91f2bd6bf17c07", - "2e849703cd8a2eaebff094ef2a5108a1393d02ed", - "2ef91b71406da6c88cad959d647915b4e7909f1f", - "6a0c4709ca2154e9f3ebb07e58fb156386630188", - "270b7655cd46e8f7573aea122f87b619b225a754", - "7d5d9f041b3c7817abf7874b386b1f68ec6872b4", - "2c85ca68429539ce27b346e573fbd07a18616c53", - "37b057f0030ab34f66dbb6eb6f8e7e7a3443407c", - "f044ca64df3f13faa679341aeb4469706c458f4d", - "2b71717ccf43e36453c2dbac3f02a4dd04e062be", - "426f28ca99a809134bbc9d4879789582f80093c1", - "ec089fd22aba2c8df074b8abfd42d286b38b399c", - "617475e54be4ac4bc3aca3868c979f157f5ca7ae", - "2616c7cf122d97514bf67dd2cc740fba9236d083", - "caee620a530bf65ad4a440909ef5dc64f2c8a3ae", - "15fbf9d4f5fcc224c4c97e015253aeef52939ed4", - "95845cf6ceb85a5793aeb227b5a03056cb508756", - "8002594ee3ad32bc7dd9c2465949212bef1c017d", - "81abb44f686359719da32974fc3ceec5c1c52db6", - "82e8031338a5a94172d985662ca1f0cd0a0d3bfb", - "16d4ea9ca8dd2f6ce586168467b568b2ac6973c1", - "c5778dfca27fe977e714aedc28997e5dce11cd86", - "465897dd0f3ab0732227ca2736c103f675f5d292", - "5b71e5104fec88a9982c55a6cf39623c28144540", - "307e427a9b82f47021ad1939dcf9c5d7495c2552", - "d65deec61718f291cba5a51de9489603865779df", - "f4f6eca871c3983dfee7c7873816179535534997", - "2ffb32db98b2c1ac83cb811e7ce1c0de2320c09d", - "8e24d5aaea1ca44bde08fe7f9b7a2541a4469fe6", - "ed977b42ac4f0b71ea218546153a751866f25b5b", - "61dfe0b86c75bb4e6c173a70ca9fb2f2daac2f67", - "71923f43a7ef8ed02531a885228257e9c5b87c7b", - "142681ef932eab1da27c2a501c60bc857e755a0e", - "5037a2d19924f2e49490453ab2a913da938afbe5", - "343d1af3da64fcfd52260149855159048e9c5178", - "f4d0cbfda61ad81559cb8d7b800b67fef2034748", - "e02fd6e1d3d0ee7a47780ab3efc1c769cd373337", - "b94366441ee80f4c583e321ebb181c4805dad736", - "e39ddc61b14a8c645124f5d45ab912989a02e5fb", - "bede1d9e23202e2fce23b2ad6d154255672a675b", - "3d1abf3f3d5c9f9bcc7b1d93ce509ae75e01214b", - "61429a6c1047244c91732e87b5898867853705f0", - "65f631c3d671d0328271b4462656d47f5003cde5", - "fce0f76d577b5070f1e2b4a2abaa8350acfc38ff", - "48144a7fa41e2343c7622f01e82eb6065e29b7b7", - "178d2b00b1da55e24a16695337bb1b78d6f5883c", - "bc53d42fd98c3e7bc74ece9ac31ddbe894b7a942", - "ae8a3be9585d0918fe38fa199c963aeb80ee4f55", - "4e27a87ec6e1ac95e5bc8a56e5687829e809270c", - "313fb959896b257ab1df2aa32adb8efc789806aa", - "c25c0d6e9efb143df91fe91e56c1bb05f09359bd", - "2238c16a914c9b7337b2bd87bc65972f8daf06d1", - "a16a9109d7c464be03c463074fbe2daaa465b727", - "f7ef9599eddade2c4d1763fcc04581315994dbc6", - "46b653e73c7900cc7fb2e06effc5cf305541aa76", - "4e119a3b38e4a4decfccb003acecabc4614142b6", - "3bbc1ce00395b6b31ed5940814a2dc4cf633228f", - "3807807f911532dffa64c25b66163b0f06360d47", - "7880414a2728514ea4aaa619cb5db0ffa807556d", - "54d3ad1edea9414ba87ffe164191fed69d79ed96", - "38e648ca67802d5f2fb23f9b3bd3f200cdb067fa", - "af568afdd5b18e06098f327850f8da351bf20350", - "bb95ec3ec602dfc7762fd92e2746606df9dfea21", - "213756c9ab22b567d426fe1be9757705fb5862c9", - "c74190a622667158e53b6d10fbfc0387ec43b964", - "716f7b0428de021cc03bfe88c4b5fadd122edd52", - "258ba436f1f784aa058625aec6b6653df83fe9c6", - "9313c49e4c0480189070a149da03b7b6164ebdce", - "28a9807f8403befd318fc6022872b087b2931ddb", - "390b644b212602ee58689e9d305ea50ee4a89d5a", - "19f0d196d11dcf31e02a4d022d099e6d3bcfad6e", - "ea650a91b31eef5b3b376ca4282686df242b9132", - "007196882993dbb987905acf30d450279cc8d560", - "20f43c1e05b2b3890a20521a8138aa53ddaf9837", - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "14f95db57b269a06c8b56b62a280ae54c7bf819b", - "b15c918836ae114f9706e24532465e864f5506c4", - "af8a9d2d2ba84a1dafad6fa51fe3d63e96aceb75", - "cc8fd0ff65b603133304db268dd4b7a86b304dc3", - "a3b3e7a6cc1725b6210250ef5eaf02dfcdef3457", - "0f7394883e59c2a183b707cedbb7e640893d6245", - "1cc87019b413f38664f1248ca954ac872a5a9149", - "a71fc47cf8a7ade4ca7c1823d9affa02749c9ecd", - "0ab8eda375b60dbefd9bf30f2c37d090643866ee", - "faab4d39e18465f6111b9ba5b2ee0dbbae600bd2", - "dc07108af8b0c92adc0bcb320d62db774a06c900", - "1d4b5f130c772ad04bc0ee6c25403f74e56e98fc", - "3d8cdac7978d6414a6164399d7b0d6c9f44c8b33", - "567d2603b8f8ea0cc5c1140a235aaa81d532f5dd", - "a70aee1a1e778a534df85ae3f3257530249aa86c", - "4b8bab6ad3d80d2d20d17f18e4120dbc86681972", - "eaf12beacf748a8275ebaa9752ab537075382bc7", - "f263607c60e5e4dc42d4be14374fae171d4da5bb", - "8d1964686196b7231e7fc2a2f522d715476b5b0c", - "91ca49e53c43455db78d97337ec9647a7e3eedde", - "e4f1b3a65e06a74e2716b01e695a6c1d37a8fdbd", - "13d828d236c05ac1a72570cf49a67b69b28bc139", - "48077f28e07117375f84a08924555b687de019ee" + "99c9be1d30ea78fad24d9eca8daa3526592a77b5", + "8030c3697019b32dd0fc2b232cea0c2c2574fe9d", + "a2a9e767f7fc5c4fa9dc6c91c6907612dda72cf3", + "52b359b24913ddab5d12d42f2f113b0e63843063", + "2d5c264ebc26c276ca6cc312389abde453ca69aa", + "10b408080a1009ca99be50cf8bc3fe45dfe7223b", + "aeac226d16523875a3fc77f61d6edcd2943155fc", + "57ab4c89e05d13b81722780ffc50eee0ea6cf445", + "a2ebe07b39823945aaedd4e1acbd70316ca13f1d", + "d8121f93c8df2e9066e929128886cae2fc81782b", + "0eb7e6d79b44b95d4aa6b22759322efcccde3521", + "2ca3810005f61bb033ccf6c48111e2aa4536b0e4", + "11bceb8f8bfdd8723da10bdcaa767a19d92a2a57", + "4231472c03e6c6e3374b1c19ef096ee28476f9dd", + "14272b21e95ed9a54fae21c27d33d3771a9ee30f", + "0ed2735d195d149766b242d972f95f3173ebc984", + "4d4837c4951375c877986e239304c95ebbe14633", + "8285cd278babadc98458194fb2dbc3ae7f00429c", + "80b65e99457344f5f05fb4948eb35c6b1d320e3f", + "6bcccb0ee6b875a41ed9e8fb7e299a6b98dd3faa", + "c143a86de8c5da3ae5127565b9ffe7094d2e5c28", + "ad2012d645b7146d31bb03f98e2bd9371635d11a", + "16d02ec77c6337ccea02a8c909e05bf3d905f887", + "d297616d3e6a27865fb327e7b4ea3d548f7fdb45", + "d46a98d31a9c32949580e6e3ce65b85772f3470d", + "7da4af622ffc68d7b687e61ba8f19163af50fab8", + "d81fcdf8ef3f2857db1a51b83a012638a7ecf0fb", + "4ae7930f58c980c1064f5c2f7a2e38b1058e0410", + "68db0bb5ec67635d3052ddae2ecb35cdea48263e", + "12e8764a9c61dfc8cc8ba2520a2b7cf3e0500edd", + "cbf62f64cbfdca160e7303536ec6ea464d371281", + "cdc1d592df7f066c141025cc8ae80bb3202580b6", + "881cf191d72da0edfc90cbc9fd5b3c30cb6eb9bc", + "c8fdc74b421fb904e11c07886a3a7dc22fa56ed6", + "9e41f8ddbe087ae6b9bdfb8d5821ab2f09f8c5fe", + "8b1238856b0839cfdb345ee2af9f02e4ee2959f9", + "c3fcb0e7457dc53aa4422ae4356e1fcc2a206ce6", + "e64b469bbcf2c2a6bb575ef0a58368f02147e899", + "555f8caeff42073fcdc52755491d785adcc81e4a", + "f97d5c327538a8fe8580fa4dd9ee22c213780a59", + "d312a53e2a4419c339c890b79f02b56c19abac85", + "4a70e0ac1b39c6da6863069bebc82ce3513bc8b5", + "8ac304c2997529d3b6fe4be4ba032e0f2dac16af", + "f6e529656f7ce4af6d146f4b0c8500a6d89221c2", + "2ec687715d2316fb1d32c79f5c942bcfd2356e8a" ], "pr_numbers": [ - 12220, - 14495, - 14853, - 15067, - 15120, - 15522, - 15525, - 15531, - 15659, - 15661, - 15690, - 15691, - 15693, - 15771, - 15772, - 15784, - 15785, - 15789, - 15791, - 15796, - 15798, - 15800, - 15802, - 15805, - 15806, - 15810, - 15811, - 15812, - 15813, - 15817, - 15820, - 15825, - 15828, - 15829, - 15835, - 15839, - 15851, - 15860, - 15861, - 15864, - 15866, - 15869, - 15876, - 15877, - 15880, - 15881, - 15885, - 15891, - 15897, - 15898, - 15900, - 15903, - 15906, - 15909, - 15910, - 15917, - 15918, - 15919, - 15921, - 15922, - 15923, - 15928, - 15931, - 15933, - 15934, - 15944, - 15946, - 15948, - 15952, - 15953, - 15954, - 15955, - 15973, - 15985, - 15986, - 15995, - 15996, - 15998, - 15999, - 16000, - 16001, - 16010, - 16013, - 16014, - 16021, - 16026, - 16027, - 16030, - 16031, - 16035, - 16036, - 16041, - 16044, - 16046, - 16047, - 16050, - 16054, - 16057, - 16063, - 16067, - 16071, - 16072, - 16074, - 16080, - 16104, - 16106, - 16109, - 16110, - 16112, - 16114, - 16115, - 16116, - 16118, - 16120, - 16126, - 16128, - 16129, - 16130, - 16132, - 16136, - 16137, - 16138, - 16141, - 16154, - 16184, - 16192, - 16193, - 16194, - 16201, - 16202, - 16204, - 16225, - 16237, - 16238, - 16253, - 16254, - 16273, - 16279, - 16284, - 16286, - 16287, - 16288, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16450, - 16455, - 16456, - 16457, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16528, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16626, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16648, - 16658, - 16662, - 16665, - 16667, - 16668, - 16670, - 16674, - 16699, - 16700, - 16707, - 16709, - 16710, - 16711, - 16715, - 16720, - 16722, - 16725, - 16735, - 16745, - 16755 + 23710, + 25469, + 25623, + 25638, + 25700, + 25887, + 25925, + 25944, + 25945, + 25946, + 25947, + 25960, + 26002, + 26047, + 26074, + 26075, + 26147, + 26172, + 26175, + 26179, + 26189, + 26205, + 26216, + 26226, + 26248, + 26251, + 26252, + 26254, + 26260, + 26265, + 26272, + 26291, + 26312, + 26313, + 26320, + 26367, + 26396, + 26417, + 26435, + 26436, + 26444, + 26445, + 26446, + 26447 ], "status": "diverged", - "total_commits": 447, - "url": "https://github.com/openai/codex/compare/rust-v0.116.0...rust-v0.119.0-alpha.10" + "total_commits": 45, + "url": "https://github.com/openai/codex/compare/rust-v0.137.0...rust-v0.138.0-alpha.4" }, - "prerelease_tag_name": "rust-v0.119.0-alpha.10", - "stable_tag_name": "rust-v0.116.0", - "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter", - "wait-agent-no-longer-needs-targets", - "windows-mcp-startup-warning-snapshots-now-normalize-rendered-paths", - "remote-exec-server-routing-now-uses-codex-exec-server-url", - "tui-plugin-ui-drops-apps-command-and-renames-curated-marketplace", - "mcp-tool-calls-now-emit-a-dedicated-mcp-tools-call-tracing-span" - ] - }, - { - "compare": { - "ahead_by": 119, - "commit_shas": [ - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "14f95db57b269a06c8b56b62a280ae54c7bf819b", - "b15c918836ae114f9706e24532465e864f5506c4", - "af8a9d2d2ba84a1dafad6fa51fe3d63e96aceb75", - "cc8fd0ff65b603133304db268dd4b7a86b304dc3", - "a3b3e7a6cc1725b6210250ef5eaf02dfcdef3457", - "0f7394883e59c2a183b707cedbb7e640893d6245", - "1cc87019b413f38664f1248ca954ac872a5a9149", - "a71fc47cf8a7ade4ca7c1823d9affa02749c9ecd", - "0ab8eda375b60dbefd9bf30f2c37d090643866ee", - "faab4d39e18465f6111b9ba5b2ee0dbbae600bd2", - "dc07108af8b0c92adc0bcb320d62db774a06c900", - "1d4b5f130c772ad04bc0ee6c25403f74e56e98fc", - "3d8cdac7978d6414a6164399d7b0d6c9f44c8b33", - "567d2603b8f8ea0cc5c1140a235aaa81d532f5dd", - "a70aee1a1e778a534df85ae3f3257530249aa86c", - "4b8bab6ad3d80d2d20d17f18e4120dbc86681972", - "eaf12beacf748a8275ebaa9752ab537075382bc7", - "f263607c60e5e4dc42d4be14374fae171d4da5bb", - "8d1964686196b7231e7fc2a2f522d715476b5b0c", - "91ca49e53c43455db78d97337ec9647a7e3eedde", - "e4f1b3a65e06a74e2716b01e695a6c1d37a8fdbd", - "b02ce16f0858caf9a5f5480c94731b15c03456ff" - ], - "pr_numbers": [ - 15690, - 15771, - 15772, - 15919, - 16184, - 16192, - 16194, - 16201, - 16202, - 16238, - 16273, - 16284, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16450, - 16455, - 16456, - 16457, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16528, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16626, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16648, - 16658, - 16662, - 16665, - 16667, - 16668, - 16670, - 16674, - 16699, - 16700, - 16707, - 16709, - 16710, - 16711, - 16715, - 16720, - 16722, - 16725, - 16735, - 16745 - ], - "status": "diverged", - "total_commits": 119, - "url": "https://github.com/openai/codex/compare/rust-v0.118.0...rust-v0.119.0-alpha.9" - }, - "prerelease_tag_name": "rust-v0.119.0-alpha.9", - "stable_tag_name": "rust-v0.118.0", - "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter" - ] - }, - { - "compare": { - "ahead_by": 215, - "commit_shas": [ - "3360f128f46f2aed392dea0d9557d0bb9536d2c2", - "b6050b42ae7e13b1eb26e9732a1582bd3c055505", - "b3e069e8cbed9ef86a47335041632ddfb458b79f", - "9736fa5e3d5da08e20c533f07c30c2960475e19b", - "86764af684e9091963085f361daa3c521649bb76", - "b23789b770039bca614ac109f3600919c381fbcb", - "dfb36573cd0c6aed5a61d6e11ed6d34a34e160ff", - "609019c6e5a055914dc7d51b111d93db4bd342e1", - "b52abff279ffe57de90cabc536e30737002b7a73", - "5906c6a658d6b91ccd0963ee6741bdb559b8f78e", - "aea82c63eac85f5d5fd85de5ac79a0b1ff8369d4", - "c264c6eef975d4abaf67beefd60added71c90950", - "a27cd2d28150b71882847a8bfdc03d275e29a1eb", - "44d28f500f7f21fa13f0e9eea87544a6269efde7", - "e6e2999209a9a0c3c25a4d2f37aa73d0c400862e", - "81fa04783a551d7e2fc5cfdfc91921aaec3e64bb", - "d76124d656424cd9a15c9ef9e901fc1a9f3679c1", - "d838c23867f6fe2e3e43a0c82d25c17cb3730b1d", - "be5afc65d31728c11d67c589cebbc64a87979e74", - "41fe98b18538c60feeb779f8fad685a1b048da7b", - "21a03f16718dae1ca2f810c33b50c99b5634c931", - "dd30c8eedd171d2dda71c43fac27dc42f457da5f", - "47a9e2e084e21542821ab65aae91f2bd6bf17c07", - "2e849703cd8a2eaebff094ef2a5108a1393d02ed", - "2ef91b71406da6c88cad959d647915b4e7909f1f", - "6a0c4709ca2154e9f3ebb07e58fb156386630188", - "270b7655cd46e8f7573aea122f87b619b225a754", - "7d5d9f041b3c7817abf7874b386b1f68ec6872b4", - "2c85ca68429539ce27b346e573fbd07a18616c53", - "37b057f0030ab34f66dbb6eb6f8e7e7a3443407c", - "f044ca64df3f13faa679341aeb4469706c458f4d", - "2b71717ccf43e36453c2dbac3f02a4dd04e062be", - "426f28ca99a809134bbc9d4879789582f80093c1", - "ec089fd22aba2c8df074b8abfd42d286b38b399c", - "617475e54be4ac4bc3aca3868c979f157f5ca7ae", - "2616c7cf122d97514bf67dd2cc740fba9236d083", - "caee620a530bf65ad4a440909ef5dc64f2c8a3ae", - "15fbf9d4f5fcc224c4c97e015253aeef52939ed4", - "95845cf6ceb85a5793aeb227b5a03056cb508756", - "8002594ee3ad32bc7dd9c2465949212bef1c017d", - "81abb44f686359719da32974fc3ceec5c1c52db6", - "82e8031338a5a94172d985662ca1f0cd0a0d3bfb", - "16d4ea9ca8dd2f6ce586168467b568b2ac6973c1", - "c5778dfca27fe977e714aedc28997e5dce11cd86", - "465897dd0f3ab0732227ca2736c103f675f5d292", - "5b71e5104fec88a9982c55a6cf39623c28144540", - "307e427a9b82f47021ad1939dcf9c5d7495c2552", - "d65deec61718f291cba5a51de9489603865779df", - "f4f6eca871c3983dfee7c7873816179535534997", - "2ffb32db98b2c1ac83cb811e7ce1c0de2320c09d", - "8e24d5aaea1ca44bde08fe7f9b7a2541a4469fe6", - "ed977b42ac4f0b71ea218546153a751866f25b5b", - "61dfe0b86c75bb4e6c173a70ca9fb2f2daac2f67", - "71923f43a7ef8ed02531a885228257e9c5b87c7b", - "142681ef932eab1da27c2a501c60bc857e755a0e", - "5037a2d19924f2e49490453ab2a913da938afbe5", - "343d1af3da64fcfd52260149855159048e9c5178", - "f4d0cbfda61ad81559cb8d7b800b67fef2034748", - "e02fd6e1d3d0ee7a47780ab3efc1c769cd373337", - "b94366441ee80f4c583e321ebb181c4805dad736", - "e39ddc61b14a8c645124f5d45ab912989a02e5fb", - "bede1d9e23202e2fce23b2ad6d154255672a675b", - "3d1abf3f3d5c9f9bcc7b1d93ce509ae75e01214b", - "61429a6c1047244c91732e87b5898867853705f0", - "65f631c3d671d0328271b4462656d47f5003cde5", - "fce0f76d577b5070f1e2b4a2abaa8350acfc38ff", - "48144a7fa41e2343c7622f01e82eb6065e29b7b7", - "178d2b00b1da55e24a16695337bb1b78d6f5883c", - "bc53d42fd98c3e7bc74ece9ac31ddbe894b7a942", - "ae8a3be9585d0918fe38fa199c963aeb80ee4f55", - "4e27a87ec6e1ac95e5bc8a56e5687829e809270c", - "313fb959896b257ab1df2aa32adb8efc789806aa", - "c25c0d6e9efb143df91fe91e56c1bb05f09359bd", - "2238c16a914c9b7337b2bd87bc65972f8daf06d1", - "a16a9109d7c464be03c463074fbe2daaa465b727", - "f7ef9599eddade2c4d1763fcc04581315994dbc6", - "46b653e73c7900cc7fb2e06effc5cf305541aa76", - "4e119a3b38e4a4decfccb003acecabc4614142b6", - "3bbc1ce00395b6b31ed5940814a2dc4cf633228f", - "3807807f911532dffa64c25b66163b0f06360d47", - "7880414a2728514ea4aaa619cb5db0ffa807556d", - "54d3ad1edea9414ba87ffe164191fed69d79ed96", - "38e648ca67802d5f2fb23f9b3bd3f200cdb067fa", - "af568afdd5b18e06098f327850f8da351bf20350", - "bb95ec3ec602dfc7762fd92e2746606df9dfea21", - "213756c9ab22b567d426fe1be9757705fb5862c9", - "c74190a622667158e53b6d10fbfc0387ec43b964", - "716f7b0428de021cc03bfe88c4b5fadd122edd52", - "258ba436f1f784aa058625aec6b6653df83fe9c6", - "9313c49e4c0480189070a149da03b7b6164ebdce", - "28a9807f8403befd318fc6022872b087b2931ddb", - "390b644b212602ee58689e9d305ea50ee4a89d5a", - "19f0d196d11dcf31e02a4d022d099e6d3bcfad6e", - "ea650a91b31eef5b3b376ca4282686df242b9132", - "007196882993dbb987905acf30d450279cc8d560", - "20f43c1e05b2b3890a20521a8138aa53ddaf9837", - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "14f95db57b269a06c8b56b62a280ae54c7bf819b", - "b15c918836ae114f9706e24532465e864f5506c4", - "af8a9d2d2ba84a1dafad6fa51fe3d63e96aceb75", - "cc8fd0ff65b603133304db268dd4b7a86b304dc3", - "a3b3e7a6cc1725b6210250ef5eaf02dfcdef3457", - "0f7394883e59c2a183b707cedbb7e640893d6245", - "1cc87019b413f38664f1248ca954ac872a5a9149", - "a71fc47cf8a7ade4ca7c1823d9affa02749c9ecd", - "0ab8eda375b60dbefd9bf30f2c37d090643866ee", - "faab4d39e18465f6111b9ba5b2ee0dbbae600bd2", - "dc07108af8b0c92adc0bcb320d62db774a06c900", - "1d4b5f130c772ad04bc0ee6c25403f74e56e98fc", - "3d8cdac7978d6414a6164399d7b0d6c9f44c8b33", - "567d2603b8f8ea0cc5c1140a235aaa81d532f5dd", - "a70aee1a1e778a534df85ae3f3257530249aa86c", - "4b8bab6ad3d80d2d20d17f18e4120dbc86681972", - "eaf12beacf748a8275ebaa9752ab537075382bc7", - "f263607c60e5e4dc42d4be14374fae171d4da5bb", - "8d1964686196b7231e7fc2a2f522d715476b5b0c", - "91ca49e53c43455db78d97337ec9647a7e3eedde", - "e4f1b3a65e06a74e2716b01e695a6c1d37a8fdbd", - "b02ce16f0858caf9a5f5480c94731b15c03456ff" - ], - "pr_numbers": [ - 12220, - 14495, - 15067, - 15120, - 15522, - 15525, - 15690, - 15771, - 15772, - 15791, - 15811, - 15828, - 15876, - 15891, - 15897, - 15898, - 15900, - 15903, - 15906, - 15909, - 15910, - 15917, - 15918, - 15919, - 15921, - 15922, - 15923, - 15928, - 15931, - 15933, - 15934, - 15944, - 15946, - 15948, - 15952, - 15953, - 15954, - 15955, - 15973, - 15985, - 15986, - 15995, - 15996, - 15998, - 15999, - 16000, - 16001, - 16010, - 16013, - 16014, - 16021, - 16026, - 16027, - 16030, - 16031, - 16035, - 16036, - 16041, - 16044, - 16046, - 16047, - 16050, - 16054, - 16057, - 16063, - 16067, - 16071, - 16072, - 16074, - 16080, - 16104, - 16106, - 16109, - 16110, - 16112, - 16114, - 16115, - 16116, - 16118, - 16120, - 16126, - 16128, - 16129, - 16130, - 16132, - 16136, - 16137, - 16138, - 16141, - 16154, - 16184, - 16192, - 16193, - 16194, - 16201, - 16202, - 16204, - 16225, - 16237, - 16238, - 16253, - 16254, - 16273, - 16279, - 16284, - 16286, - 16287, - 16288, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16450, - 16455, - 16456, - 16457, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16528, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16626, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16648, - 16658, - 16662, - 16665, - 16667, - 16668, - 16670, - 16674, - 16699, - 16700, - 16707, - 16709, - 16710, - 16711, - 16715, - 16720, - 16722, - 16725, - 16735, - 16745 - ], - "status": "diverged", - "total_commits": 215, - "url": "https://github.com/openai/codex/compare/rust-v0.117.0...rust-v0.119.0-alpha.9" - }, - "prerelease_tag_name": "rust-v0.119.0-alpha.9", - "stable_tag_name": "rust-v0.117.0", - "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter", - "wait-agent-no-longer-needs-targets", - "windows-mcp-startup-warning-snapshots-now-normalize-rendered-paths" - ] - }, - { - "compare": { - "ahead_by": 446, - "commit_shas": [ - "9dbe0983490c2f952b8791e634b5ec3ce94edee9", - "2c67a27a719d6db46ea29e3a4f306d34db52ace2", - "b6524514c1343c42d9520f1c60a6c5cf4ee5c15f", - "eee692e35167e9c6b7eec459fd8f4b0c347a4458", - "f24c55f0d53842ca0061d149380a8cfd4b4bdda4", - "8fa88fa8cabddb15c6477b84f2d1774ce50b20bd", - "2794e278497e7e604a512ce877d16ed8e8fe6be9", - "d7e35e56cff9157e4f1ba8da50a44a7bc6353028", - "78799c1bcfb997c7f39625d6f47f33e55fe82708", - "c4d9887f9a11965221bb2b2dc98f68e46b2681e8", - "4b50446ffa3385f8b72a5ced71a1306d28646d02", - "b565f05d79c9e6ee8bc891353ae4c037c5982a01", - "1ff39b6fa812e987c143c976c488794fd4966f2d", - "6d0525ae7015cb9239cc907fe78e88cf2fea5ce5", - "937cb5081df1ac9c458a7bcd784e9878ac924a47", - "7ef3cfe63e435ee03812cfb818c4ba8a063a6833", - "b00a05c7855eb81e61f95f4d7f00b8c97a13b284", - "4a5635b5a0336274b6ee196140bfe151b18a642d", - "7dac332c9340c689cbc9641c5fca21306b916f00", - "6dcac41d5375d70dc9606c790c68b63260fb2635", - "01fa4f0212db10f0ea3b27e3a0657c5fba504588", - "26c66f3ee1dda627d08daa50a3f809b5a1825357", - "a5824e37db4834a0eb4c191e67de0dfec4b8fff0", - "6d2f4aaafc1623a9c5a4b994778329a3a1c686bb", - "c9214192c52aef31758088b5e87e971fc57a0478", - "352f37db03315dc215fbf23cb36b442554afb8c5", - "0d44bd708eef1fe0a00f601ffe2ecab89a77434e", - "8d479f741c501fc21e65f58918548b669a9b492d", - "e7139e14a29de0411a61658a0e5765e2502a0cd2", - "e36ebaa3daca0e5e73dc2d2af82b04c9eca2526b", - "af0427377898290356e47b9b3a3311083d9ed3fb", - "0bd34c28c768fce784d0648fe45e651b9a9b37d4", - "970386e8b2a776d47ef6ac6c2bd67a3c0ed86744", - "2c54d4b1608d6305362dd2c776ee6ac83a37852a", - "25134b592c13328f76b2a56631dcec1abdb1b5b6", - "3360f128f46f2aed392dea0d9557d0bb9536d2c2", - "b6050b42ae7e13b1eb26e9732a1582bd3c055505", - "b3e069e8cbed9ef86a47335041632ddfb458b79f", - "9736fa5e3d5da08e20c533f07c30c2960475e19b", - "86764af684e9091963085f361daa3c521649bb76", - "b23789b770039bca614ac109f3600919c381fbcb", - "dfb36573cd0c6aed5a61d6e11ed6d34a34e160ff", - "609019c6e5a055914dc7d51b111d93db4bd342e1", - "b52abff279ffe57de90cabc536e30737002b7a73", - "5906c6a658d6b91ccd0963ee6741bdb559b8f78e", - "aea82c63eac85f5d5fd85de5ac79a0b1ff8369d4", - "c264c6eef975d4abaf67beefd60added71c90950", - "a27cd2d28150b71882847a8bfdc03d275e29a1eb", - "44d28f500f7f21fa13f0e9eea87544a6269efde7", - "e6e2999209a9a0c3c25a4d2f37aa73d0c400862e", - "81fa04783a551d7e2fc5cfdfc91921aaec3e64bb", - "d76124d656424cd9a15c9ef9e901fc1a9f3679c1", - "d838c23867f6fe2e3e43a0c82d25c17cb3730b1d", - "be5afc65d31728c11d67c589cebbc64a87979e74", - "41fe98b18538c60feeb779f8fad685a1b048da7b", - "21a03f16718dae1ca2f810c33b50c99b5634c931", - "dd30c8eedd171d2dda71c43fac27dc42f457da5f", - "47a9e2e084e21542821ab65aae91f2bd6bf17c07", - "2e849703cd8a2eaebff094ef2a5108a1393d02ed", - "2ef91b71406da6c88cad959d647915b4e7909f1f", - "6a0c4709ca2154e9f3ebb07e58fb156386630188", - "270b7655cd46e8f7573aea122f87b619b225a754", - "7d5d9f041b3c7817abf7874b386b1f68ec6872b4", - "2c85ca68429539ce27b346e573fbd07a18616c53", - "37b057f0030ab34f66dbb6eb6f8e7e7a3443407c", - "f044ca64df3f13faa679341aeb4469706c458f4d", - "2b71717ccf43e36453c2dbac3f02a4dd04e062be", - "426f28ca99a809134bbc9d4879789582f80093c1", - "ec089fd22aba2c8df074b8abfd42d286b38b399c", - "617475e54be4ac4bc3aca3868c979f157f5ca7ae", - "2616c7cf122d97514bf67dd2cc740fba9236d083", - "caee620a530bf65ad4a440909ef5dc64f2c8a3ae", - "15fbf9d4f5fcc224c4c97e015253aeef52939ed4", - "95845cf6ceb85a5793aeb227b5a03056cb508756", - "8002594ee3ad32bc7dd9c2465949212bef1c017d", - "81abb44f686359719da32974fc3ceec5c1c52db6", - "82e8031338a5a94172d985662ca1f0cd0a0d3bfb", - "16d4ea9ca8dd2f6ce586168467b568b2ac6973c1", - "c5778dfca27fe977e714aedc28997e5dce11cd86", - "465897dd0f3ab0732227ca2736c103f675f5d292", - "5b71e5104fec88a9982c55a6cf39623c28144540", - "307e427a9b82f47021ad1939dcf9c5d7495c2552", - "d65deec61718f291cba5a51de9489603865779df", - "f4f6eca871c3983dfee7c7873816179535534997", - "2ffb32db98b2c1ac83cb811e7ce1c0de2320c09d", - "8e24d5aaea1ca44bde08fe7f9b7a2541a4469fe6", - "ed977b42ac4f0b71ea218546153a751866f25b5b", - "61dfe0b86c75bb4e6c173a70ca9fb2f2daac2f67", - "71923f43a7ef8ed02531a885228257e9c5b87c7b", - "142681ef932eab1da27c2a501c60bc857e755a0e", - "5037a2d19924f2e49490453ab2a913da938afbe5", - "343d1af3da64fcfd52260149855159048e9c5178", - "f4d0cbfda61ad81559cb8d7b800b67fef2034748", - "e02fd6e1d3d0ee7a47780ab3efc1c769cd373337", - "b94366441ee80f4c583e321ebb181c4805dad736", - "e39ddc61b14a8c645124f5d45ab912989a02e5fb", - "bede1d9e23202e2fce23b2ad6d154255672a675b", - "3d1abf3f3d5c9f9bcc7b1d93ce509ae75e01214b", - "61429a6c1047244c91732e87b5898867853705f0", - "65f631c3d671d0328271b4462656d47f5003cde5", - "fce0f76d577b5070f1e2b4a2abaa8350acfc38ff", - "48144a7fa41e2343c7622f01e82eb6065e29b7b7", - "178d2b00b1da55e24a16695337bb1b78d6f5883c", - "bc53d42fd98c3e7bc74ece9ac31ddbe894b7a942", - "ae8a3be9585d0918fe38fa199c963aeb80ee4f55", - "4e27a87ec6e1ac95e5bc8a56e5687829e809270c", - "313fb959896b257ab1df2aa32adb8efc789806aa", - "c25c0d6e9efb143df91fe91e56c1bb05f09359bd", - "2238c16a914c9b7337b2bd87bc65972f8daf06d1", - "a16a9109d7c464be03c463074fbe2daaa465b727", - "f7ef9599eddade2c4d1763fcc04581315994dbc6", - "46b653e73c7900cc7fb2e06effc5cf305541aa76", - "4e119a3b38e4a4decfccb003acecabc4614142b6", - "3bbc1ce00395b6b31ed5940814a2dc4cf633228f", - "3807807f911532dffa64c25b66163b0f06360d47", - "7880414a2728514ea4aaa619cb5db0ffa807556d", - "54d3ad1edea9414ba87ffe164191fed69d79ed96", - "38e648ca67802d5f2fb23f9b3bd3f200cdb067fa", - "af568afdd5b18e06098f327850f8da351bf20350", - "bb95ec3ec602dfc7762fd92e2746606df9dfea21", - "213756c9ab22b567d426fe1be9757705fb5862c9", - "c74190a622667158e53b6d10fbfc0387ec43b964", - "716f7b0428de021cc03bfe88c4b5fadd122edd52", - "258ba436f1f784aa058625aec6b6653df83fe9c6", - "9313c49e4c0480189070a149da03b7b6164ebdce", - "28a9807f8403befd318fc6022872b087b2931ddb", - "390b644b212602ee58689e9d305ea50ee4a89d5a", - "19f0d196d11dcf31e02a4d022d099e6d3bcfad6e", - "ea650a91b31eef5b3b376ca4282686df242b9132", - "007196882993dbb987905acf30d450279cc8d560", - "20f43c1e05b2b3890a20521a8138aa53ddaf9837", - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "14f95db57b269a06c8b56b62a280ae54c7bf819b", - "b15c918836ae114f9706e24532465e864f5506c4", - "af8a9d2d2ba84a1dafad6fa51fe3d63e96aceb75", - "cc8fd0ff65b603133304db268dd4b7a86b304dc3", - "a3b3e7a6cc1725b6210250ef5eaf02dfcdef3457", - "0f7394883e59c2a183b707cedbb7e640893d6245", - "1cc87019b413f38664f1248ca954ac872a5a9149", - "a71fc47cf8a7ade4ca7c1823d9affa02749c9ecd", - "0ab8eda375b60dbefd9bf30f2c37d090643866ee", - "faab4d39e18465f6111b9ba5b2ee0dbbae600bd2", - "dc07108af8b0c92adc0bcb320d62db774a06c900", - "1d4b5f130c772ad04bc0ee6c25403f74e56e98fc", - "3d8cdac7978d6414a6164399d7b0d6c9f44c8b33", - "567d2603b8f8ea0cc5c1140a235aaa81d532f5dd", - "a70aee1a1e778a534df85ae3f3257530249aa86c", - "4b8bab6ad3d80d2d20d17f18e4120dbc86681972", - "eaf12beacf748a8275ebaa9752ab537075382bc7", - "f263607c60e5e4dc42d4be14374fae171d4da5bb", - "8d1964686196b7231e7fc2a2f522d715476b5b0c", - "91ca49e53c43455db78d97337ec9647a7e3eedde", - "e4f1b3a65e06a74e2716b01e695a6c1d37a8fdbd", - "b02ce16f0858caf9a5f5480c94731b15c03456ff" - ], - "pr_numbers": [ - 12220, - 14495, - 14853, - 15067, - 15120, - 15522, - 15525, - 15531, - 15659, - 15661, - 15690, - 15691, - 15693, - 15749, - 15771, - 15772, - 15784, - 15785, - 15789, - 15791, - 15796, - 15798, - 15800, - 15802, - 15805, - 15806, - 15810, - 15811, - 15812, - 15813, - 15817, - 15820, - 15825, - 15828, - 15829, - 15835, - 15839, - 15851, - 15860, - 15861, - 15864, - 15866, - 15869, - 15876, - 15877, - 15880, - 15881, - 15885, - 15891, - 15897, - 15898, - 15900, - 15903, - 15906, - 15909, - 15910, - 15917, - 15918, - 15919, - 15921, - 15922, - 15923, - 15928, - 15931, - 15933, - 15934, - 15944, - 15946, - 15948, - 15952, - 15953, - 15954, - 15955, - 15973, - 15985, - 15986, - 15995, - 15996, - 15998, - 15999, - 16000, - 16001, - 16010, - 16013, - 16014, - 16021, - 16026, - 16027, - 16030, - 16031, - 16035, - 16036, - 16041, - 16044, - 16046, - 16047, - 16050, - 16054, - 16057, - 16063, - 16067, - 16071, - 16072, - 16074, - 16080, - 16104, - 16106, - 16109, - 16110, - 16112, - 16114, - 16115, - 16116, - 16118, - 16120, - 16126, - 16128, - 16129, - 16130, - 16132, - 16136, - 16137, - 16138, - 16141, - 16154, - 16184, - 16192, - 16193, - 16194, - 16201, - 16202, - 16204, - 16225, - 16237, - 16238, - 16253, - 16254, - 16273, - 16279, - 16284, - 16286, - 16287, - 16288, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16450, - 16455, - 16456, - 16457, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16528, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16626, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16648, - 16658, - 16662, - 16665, - 16667, - 16668, - 16670, - 16674, - 16699, - 16700, - 16707, - 16709, - 16710, - 16711, - 16715, - 16720, - 16722, - 16725, - 16735, - 16745 - ], - "status": "diverged", - "total_commits": 446, - "url": "https://github.com/openai/codex/compare/rust-v0.116.0...rust-v0.119.0-alpha.9" - }, - "prerelease_tag_name": "rust-v0.119.0-alpha.9", - "stable_tag_name": "rust-v0.116.0", - "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter", - "wait-agent-no-longer-needs-targets", - "windows-mcp-startup-warning-snapshots-now-normalize-rendered-paths", - "remote-exec-server-routing-now-uses-codex-exec-server-url", - "tui-plugin-ui-drops-apps-command-and-renames-curated-marketplace", - "mcp-tool-calls-now-emit-a-dedicated-mcp-tools-call-tracing-span" - ] - }, - { - "compare": { - "ahead_by": 100, - "commit_shas": [ - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "14f95db57b269a06c8b56b62a280ae54c7bf819b", - "b15c918836ae114f9706e24532465e864f5506c4", - "709fe53aa9372c3e3cd135b9ae663385b4807b09" - ], - "pr_numbers": [ - 15690, - 15771, - 15772, - 15919, - 16184, - 16192, - 16194, - 16201, - 16202, - 16238, - 16273, - 16284, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16455, - 16456, - 16457, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16658, - 16662, - 16665, - 16668 - ], - "status": "diverged", - "total_commits": 100, - "url": "https://github.com/openai/codex/compare/rust-v0.118.0...rust-v0.119.0-alpha.8" - }, - "prerelease_tag_name": "rust-v0.119.0-alpha.8", - "stable_tag_name": "rust-v0.118.0", - "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter" - ] - }, - { - "compare": { - "ahead_by": 196, - "commit_shas": [ - "3360f128f46f2aed392dea0d9557d0bb9536d2c2", - "b6050b42ae7e13b1eb26e9732a1582bd3c055505", - "b3e069e8cbed9ef86a47335041632ddfb458b79f", - "9736fa5e3d5da08e20c533f07c30c2960475e19b", - "86764af684e9091963085f361daa3c521649bb76", - "b23789b770039bca614ac109f3600919c381fbcb", - "dfb36573cd0c6aed5a61d6e11ed6d34a34e160ff", - "609019c6e5a055914dc7d51b111d93db4bd342e1", - "b52abff279ffe57de90cabc536e30737002b7a73", - "5906c6a658d6b91ccd0963ee6741bdb559b8f78e", - "aea82c63eac85f5d5fd85de5ac79a0b1ff8369d4", - "c264c6eef975d4abaf67beefd60added71c90950", - "a27cd2d28150b71882847a8bfdc03d275e29a1eb", - "44d28f500f7f21fa13f0e9eea87544a6269efde7", - "e6e2999209a9a0c3c25a4d2f37aa73d0c400862e", - "81fa04783a551d7e2fc5cfdfc91921aaec3e64bb", - "d76124d656424cd9a15c9ef9e901fc1a9f3679c1", - "d838c23867f6fe2e3e43a0c82d25c17cb3730b1d", - "be5afc65d31728c11d67c589cebbc64a87979e74", - "41fe98b18538c60feeb779f8fad685a1b048da7b", - "21a03f16718dae1ca2f810c33b50c99b5634c931", - "dd30c8eedd171d2dda71c43fac27dc42f457da5f", - "47a9e2e084e21542821ab65aae91f2bd6bf17c07", - "2e849703cd8a2eaebff094ef2a5108a1393d02ed", - "2ef91b71406da6c88cad959d647915b4e7909f1f", - "6a0c4709ca2154e9f3ebb07e58fb156386630188", - "270b7655cd46e8f7573aea122f87b619b225a754", - "7d5d9f041b3c7817abf7874b386b1f68ec6872b4", - "2c85ca68429539ce27b346e573fbd07a18616c53", - "37b057f0030ab34f66dbb6eb6f8e7e7a3443407c", - "f044ca64df3f13faa679341aeb4469706c458f4d", - "2b71717ccf43e36453c2dbac3f02a4dd04e062be", - "426f28ca99a809134bbc9d4879789582f80093c1", - "ec089fd22aba2c8df074b8abfd42d286b38b399c", - "617475e54be4ac4bc3aca3868c979f157f5ca7ae", - "2616c7cf122d97514bf67dd2cc740fba9236d083", - "caee620a530bf65ad4a440909ef5dc64f2c8a3ae", - "15fbf9d4f5fcc224c4c97e015253aeef52939ed4", - "95845cf6ceb85a5793aeb227b5a03056cb508756", - "8002594ee3ad32bc7dd9c2465949212bef1c017d", - "81abb44f686359719da32974fc3ceec5c1c52db6", - "82e8031338a5a94172d985662ca1f0cd0a0d3bfb", - "16d4ea9ca8dd2f6ce586168467b568b2ac6973c1", - "c5778dfca27fe977e714aedc28997e5dce11cd86", - "465897dd0f3ab0732227ca2736c103f675f5d292", - "5b71e5104fec88a9982c55a6cf39623c28144540", - "307e427a9b82f47021ad1939dcf9c5d7495c2552", - "d65deec61718f291cba5a51de9489603865779df", - "f4f6eca871c3983dfee7c7873816179535534997", - "2ffb32db98b2c1ac83cb811e7ce1c0de2320c09d", - "8e24d5aaea1ca44bde08fe7f9b7a2541a4469fe6", - "ed977b42ac4f0b71ea218546153a751866f25b5b", - "61dfe0b86c75bb4e6c173a70ca9fb2f2daac2f67", - "71923f43a7ef8ed02531a885228257e9c5b87c7b", - "142681ef932eab1da27c2a501c60bc857e755a0e", - "5037a2d19924f2e49490453ab2a913da938afbe5", - "343d1af3da64fcfd52260149855159048e9c5178", - "f4d0cbfda61ad81559cb8d7b800b67fef2034748", - "e02fd6e1d3d0ee7a47780ab3efc1c769cd373337", - "b94366441ee80f4c583e321ebb181c4805dad736", - "e39ddc61b14a8c645124f5d45ab912989a02e5fb", - "bede1d9e23202e2fce23b2ad6d154255672a675b", - "3d1abf3f3d5c9f9bcc7b1d93ce509ae75e01214b", - "61429a6c1047244c91732e87b5898867853705f0", - "65f631c3d671d0328271b4462656d47f5003cde5", - "fce0f76d577b5070f1e2b4a2abaa8350acfc38ff", - "48144a7fa41e2343c7622f01e82eb6065e29b7b7", - "178d2b00b1da55e24a16695337bb1b78d6f5883c", - "bc53d42fd98c3e7bc74ece9ac31ddbe894b7a942", - "ae8a3be9585d0918fe38fa199c963aeb80ee4f55", - "4e27a87ec6e1ac95e5bc8a56e5687829e809270c", - "313fb959896b257ab1df2aa32adb8efc789806aa", - "c25c0d6e9efb143df91fe91e56c1bb05f09359bd", - "2238c16a914c9b7337b2bd87bc65972f8daf06d1", - "a16a9109d7c464be03c463074fbe2daaa465b727", - "f7ef9599eddade2c4d1763fcc04581315994dbc6", - "46b653e73c7900cc7fb2e06effc5cf305541aa76", - "4e119a3b38e4a4decfccb003acecabc4614142b6", - "3bbc1ce00395b6b31ed5940814a2dc4cf633228f", - "3807807f911532dffa64c25b66163b0f06360d47", - "7880414a2728514ea4aaa619cb5db0ffa807556d", - "54d3ad1edea9414ba87ffe164191fed69d79ed96", - "38e648ca67802d5f2fb23f9b3bd3f200cdb067fa", - "af568afdd5b18e06098f327850f8da351bf20350", - "bb95ec3ec602dfc7762fd92e2746606df9dfea21", - "213756c9ab22b567d426fe1be9757705fb5862c9", - "c74190a622667158e53b6d10fbfc0387ec43b964", - "716f7b0428de021cc03bfe88c4b5fadd122edd52", - "258ba436f1f784aa058625aec6b6653df83fe9c6", - "9313c49e4c0480189070a149da03b7b6164ebdce", - "28a9807f8403befd318fc6022872b087b2931ddb", - "390b644b212602ee58689e9d305ea50ee4a89d5a", - "19f0d196d11dcf31e02a4d022d099e6d3bcfad6e", - "ea650a91b31eef5b3b376ca4282686df242b9132", - "007196882993dbb987905acf30d450279cc8d560", - "20f43c1e05b2b3890a20521a8138aa53ddaf9837", - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "14f95db57b269a06c8b56b62a280ae54c7bf819b", - "b15c918836ae114f9706e24532465e864f5506c4", - "709fe53aa9372c3e3cd135b9ae663385b4807b09" - ], - "pr_numbers": [ - 12220, - 14495, - 15067, - 15120, - 15522, - 15525, - 15690, - 15771, - 15772, - 15791, - 15811, - 15828, - 15876, - 15891, - 15897, - 15898, - 15900, - 15903, - 15906, - 15909, - 15910, - 15917, - 15918, - 15919, - 15921, - 15922, - 15923, - 15928, - 15931, - 15933, - 15934, - 15944, - 15946, - 15948, - 15952, - 15953, - 15954, - 15955, - 15973, - 15985, - 15986, - 15995, - 15996, - 15998, - 15999, - 16000, - 16001, - 16010, - 16013, - 16014, - 16021, - 16026, - 16027, - 16030, - 16031, - 16035, - 16036, - 16041, - 16044, - 16046, - 16047, - 16050, - 16054, - 16057, - 16063, - 16067, - 16071, - 16072, - 16074, - 16080, - 16104, - 16106, - 16109, - 16110, - 16112, - 16114, - 16115, - 16116, - 16118, - 16120, - 16126, - 16128, - 16129, - 16130, - 16132, - 16136, - 16137, - 16138, - 16141, - 16154, - 16184, - 16192, - 16193, - 16194, - 16201, - 16202, - 16204, - 16225, - 16237, - 16238, - 16253, - 16254, - 16273, - 16279, - 16284, - 16286, - 16287, - 16288, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16455, - 16456, - 16457, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16658, - 16662, - 16665, - 16668 - ], - "status": "diverged", - "total_commits": 196, - "url": "https://github.com/openai/codex/compare/rust-v0.117.0...rust-v0.119.0-alpha.8" - }, - "prerelease_tag_name": "rust-v0.119.0-alpha.8", - "stable_tag_name": "rust-v0.117.0", - "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter", - "wait-agent-no-longer-needs-targets", - "windows-mcp-startup-warning-snapshots-now-normalize-rendered-paths" - ] - }, - { - "compare": { - "ahead_by": 427, - "commit_shas": [ - "f5dccab5cf9674f46c8bd2cc9606d9d6cd94fadb", - "047ea642d2989f4095a6dc5070aaa818554e550e", - "32c4993c8a17cb0608d747f268e3d543745de962", - "178c3b15b475104459815767e0561756c8cd00ed", - "504aeb0e09bbc40771d4f23fc89c8571c27289cd", - "f190a95a4f0d7195c1c5cff48157b6c451be7c27", - "c6ffe9abab04bd3349ecc49fffc0fbf9551826e6", - "14c35a16a8a41cc16c5e36c2c4287b7b2db6e975", - "303d0190c5f3818146c917e58ece725178e49ebf", - "fba3c79885188b9b88bbceee9e9b872933393aee", - "6b10e186c4d1b544745d241416c9d94bb83a9fef", - "ad74543a6f6e5590ae8839142259df571405da28", - "2bb1027e37fd2ff7b5a72de8b5f5d8ce8cca2cba", - "d273efc0f31615ffdfe23481829d3dbb1e729861", - "6566ab7e021b7138672757538407ebd070f2a4ae", - "79359fb5e78d470c69a7b6e82291608ed685c3bb", - "91337399fe3c216949b7fd5203fa7737b86841ed", - "6124564297289ddadd5ab364bb961ea367fff8d0", - "e9996ec62a9ae4e2d7c6e4f1c701544da7067def", - "9dbe0983490c2f952b8791e634b5ec3ce94edee9", - "2c67a27a719d6db46ea29e3a4f306d34db52ace2", - "b6524514c1343c42d9520f1c60a6c5cf4ee5c15f", - "eee692e35167e9c6b7eec459fd8f4b0c347a4458", - "f24c55f0d53842ca0061d149380a8cfd4b4bdda4", - "8fa88fa8cabddb15c6477b84f2d1774ce50b20bd", - "2794e278497e7e604a512ce877d16ed8e8fe6be9", - "d7e35e56cff9157e4f1ba8da50a44a7bc6353028", - "78799c1bcfb997c7f39625d6f47f33e55fe82708", - "c4d9887f9a11965221bb2b2dc98f68e46b2681e8", - "4b50446ffa3385f8b72a5ced71a1306d28646d02", - "b565f05d79c9e6ee8bc891353ae4c037c5982a01", - "1ff39b6fa812e987c143c976c488794fd4966f2d", - "6d0525ae7015cb9239cc907fe78e88cf2fea5ce5", - "937cb5081df1ac9c458a7bcd784e9878ac924a47", - "7ef3cfe63e435ee03812cfb818c4ba8a063a6833", - "b00a05c7855eb81e61f95f4d7f00b8c97a13b284", - "4a5635b5a0336274b6ee196140bfe151b18a642d", - "7dac332c9340c689cbc9641c5fca21306b916f00", - "6dcac41d5375d70dc9606c790c68b63260fb2635", - "01fa4f0212db10f0ea3b27e3a0657c5fba504588", - "26c66f3ee1dda627d08daa50a3f809b5a1825357", - "a5824e37db4834a0eb4c191e67de0dfec4b8fff0", - "6d2f4aaafc1623a9c5a4b994778329a3a1c686bb", - "c9214192c52aef31758088b5e87e971fc57a0478", - "352f37db03315dc215fbf23cb36b442554afb8c5", - "0d44bd708eef1fe0a00f601ffe2ecab89a77434e", - "8d479f741c501fc21e65f58918548b669a9b492d", - "e7139e14a29de0411a61658a0e5765e2502a0cd2", - "e36ebaa3daca0e5e73dc2d2af82b04c9eca2526b", - "af0427377898290356e47b9b3a3311083d9ed3fb", - "0bd34c28c768fce784d0648fe45e651b9a9b37d4", - "970386e8b2a776d47ef6ac6c2bd67a3c0ed86744", - "2c54d4b1608d6305362dd2c776ee6ac83a37852a", - "25134b592c13328f76b2a56631dcec1abdb1b5b6", - "3360f128f46f2aed392dea0d9557d0bb9536d2c2", - "b6050b42ae7e13b1eb26e9732a1582bd3c055505", - "b3e069e8cbed9ef86a47335041632ddfb458b79f", - "9736fa5e3d5da08e20c533f07c30c2960475e19b", - "86764af684e9091963085f361daa3c521649bb76", - "b23789b770039bca614ac109f3600919c381fbcb", - "dfb36573cd0c6aed5a61d6e11ed6d34a34e160ff", - "609019c6e5a055914dc7d51b111d93db4bd342e1", - "b52abff279ffe57de90cabc536e30737002b7a73", - "5906c6a658d6b91ccd0963ee6741bdb559b8f78e", - "aea82c63eac85f5d5fd85de5ac79a0b1ff8369d4", - "c264c6eef975d4abaf67beefd60added71c90950", - "a27cd2d28150b71882847a8bfdc03d275e29a1eb", - "44d28f500f7f21fa13f0e9eea87544a6269efde7", - "e6e2999209a9a0c3c25a4d2f37aa73d0c400862e", - "81fa04783a551d7e2fc5cfdfc91921aaec3e64bb", - "d76124d656424cd9a15c9ef9e901fc1a9f3679c1", - "d838c23867f6fe2e3e43a0c82d25c17cb3730b1d", - "be5afc65d31728c11d67c589cebbc64a87979e74", - "41fe98b18538c60feeb779f8fad685a1b048da7b", - "21a03f16718dae1ca2f810c33b50c99b5634c931", - "dd30c8eedd171d2dda71c43fac27dc42f457da5f", - "47a9e2e084e21542821ab65aae91f2bd6bf17c07", - "2e849703cd8a2eaebff094ef2a5108a1393d02ed", - "2ef91b71406da6c88cad959d647915b4e7909f1f", - "6a0c4709ca2154e9f3ebb07e58fb156386630188", - "270b7655cd46e8f7573aea122f87b619b225a754", - "7d5d9f041b3c7817abf7874b386b1f68ec6872b4", - "2c85ca68429539ce27b346e573fbd07a18616c53", - "37b057f0030ab34f66dbb6eb6f8e7e7a3443407c", - "f044ca64df3f13faa679341aeb4469706c458f4d", - "2b71717ccf43e36453c2dbac3f02a4dd04e062be", - "426f28ca99a809134bbc9d4879789582f80093c1", - "ec089fd22aba2c8df074b8abfd42d286b38b399c", - "617475e54be4ac4bc3aca3868c979f157f5ca7ae", - "2616c7cf122d97514bf67dd2cc740fba9236d083", - "caee620a530bf65ad4a440909ef5dc64f2c8a3ae", - "15fbf9d4f5fcc224c4c97e015253aeef52939ed4", - "95845cf6ceb85a5793aeb227b5a03056cb508756", - "8002594ee3ad32bc7dd9c2465949212bef1c017d", - "81abb44f686359719da32974fc3ceec5c1c52db6", - "82e8031338a5a94172d985662ca1f0cd0a0d3bfb", - "16d4ea9ca8dd2f6ce586168467b568b2ac6973c1", - "c5778dfca27fe977e714aedc28997e5dce11cd86", - "465897dd0f3ab0732227ca2736c103f675f5d292", - "5b71e5104fec88a9982c55a6cf39623c28144540", - "307e427a9b82f47021ad1939dcf9c5d7495c2552", - "d65deec61718f291cba5a51de9489603865779df", - "f4f6eca871c3983dfee7c7873816179535534997", - "2ffb32db98b2c1ac83cb811e7ce1c0de2320c09d", - "8e24d5aaea1ca44bde08fe7f9b7a2541a4469fe6", - "ed977b42ac4f0b71ea218546153a751866f25b5b", - "61dfe0b86c75bb4e6c173a70ca9fb2f2daac2f67", - "71923f43a7ef8ed02531a885228257e9c5b87c7b", - "142681ef932eab1da27c2a501c60bc857e755a0e", - "5037a2d19924f2e49490453ab2a913da938afbe5", - "343d1af3da64fcfd52260149855159048e9c5178", - "f4d0cbfda61ad81559cb8d7b800b67fef2034748", - "e02fd6e1d3d0ee7a47780ab3efc1c769cd373337", - "b94366441ee80f4c583e321ebb181c4805dad736", - "e39ddc61b14a8c645124f5d45ab912989a02e5fb", - "bede1d9e23202e2fce23b2ad6d154255672a675b", - "3d1abf3f3d5c9f9bcc7b1d93ce509ae75e01214b", - "61429a6c1047244c91732e87b5898867853705f0", - "65f631c3d671d0328271b4462656d47f5003cde5", - "fce0f76d577b5070f1e2b4a2abaa8350acfc38ff", - "48144a7fa41e2343c7622f01e82eb6065e29b7b7", - "178d2b00b1da55e24a16695337bb1b78d6f5883c", - "bc53d42fd98c3e7bc74ece9ac31ddbe894b7a942", - "ae8a3be9585d0918fe38fa199c963aeb80ee4f55", - "4e27a87ec6e1ac95e5bc8a56e5687829e809270c", - "313fb959896b257ab1df2aa32adb8efc789806aa", - "c25c0d6e9efb143df91fe91e56c1bb05f09359bd", - "2238c16a914c9b7337b2bd87bc65972f8daf06d1", - "a16a9109d7c464be03c463074fbe2daaa465b727", - "f7ef9599eddade2c4d1763fcc04581315994dbc6", - "46b653e73c7900cc7fb2e06effc5cf305541aa76", - "4e119a3b38e4a4decfccb003acecabc4614142b6", - "3bbc1ce00395b6b31ed5940814a2dc4cf633228f", - "3807807f911532dffa64c25b66163b0f06360d47", - "7880414a2728514ea4aaa619cb5db0ffa807556d", - "54d3ad1edea9414ba87ffe164191fed69d79ed96", - "38e648ca67802d5f2fb23f9b3bd3f200cdb067fa", - "af568afdd5b18e06098f327850f8da351bf20350", - "bb95ec3ec602dfc7762fd92e2746606df9dfea21", - "213756c9ab22b567d426fe1be9757705fb5862c9", - "c74190a622667158e53b6d10fbfc0387ec43b964", - "716f7b0428de021cc03bfe88c4b5fadd122edd52", - "258ba436f1f784aa058625aec6b6653df83fe9c6", - "9313c49e4c0480189070a149da03b7b6164ebdce", - "28a9807f8403befd318fc6022872b087b2931ddb", - "390b644b212602ee58689e9d305ea50ee4a89d5a", - "19f0d196d11dcf31e02a4d022d099e6d3bcfad6e", - "ea650a91b31eef5b3b376ca4282686df242b9132", - "007196882993dbb987905acf30d450279cc8d560", - "20f43c1e05b2b3890a20521a8138aa53ddaf9837", - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "14f95db57b269a06c8b56b62a280ae54c7bf819b", - "b15c918836ae114f9706e24532465e864f5506c4", - "709fe53aa9372c3e3cd135b9ae663385b4807b09" - ], - "pr_numbers": [ - 12220, - 14495, - 14847, - 14853, - 14856, - 15067, - 15120, - 15339, - 15513, - 15519, - 15522, - 15525, - 15531, - 15659, - 15661, - 15690, - 15691, - 15693, - 15707, - 15710, - 15734, - 15744, - 15746, - 15747, - 15748, - 15749, - 15758, - 15759, - 15766, - 15771, - 15772, - 15773, - 15775, - 15776, - 15778, - 15784, - 15785, - 15789, - 15791, - 15796, - 15798, - 15800, - 15802, - 15805, - 15806, - 15810, - 15811, - 15812, - 15813, - 15817, - 15820, - 15825, - 15828, - 15829, - 15835, - 15839, - 15851, - 15860, - 15861, - 15864, - 15866, - 15869, - 15876, - 15877, - 15880, - 15881, - 15885, - 15891, - 15897, - 15898, - 15900, - 15903, - 15906, - 15909, - 15910, - 15917, - 15918, - 15919, - 15921, - 15922, - 15923, - 15928, - 15931, - 15933, - 15934, - 15944, - 15946, - 15948, - 15952, - 15953, - 15954, - 15955, - 15973, - 15985, - 15986, - 15995, - 15996, - 15998, - 15999, - 16000, - 16001, - 16010, - 16013, - 16014, - 16021, - 16026, - 16027, - 16030, - 16031, - 16035, - 16036, - 16041, - 16044, - 16046, - 16047, - 16050, - 16054, - 16057, - 16063, - 16067, - 16071, - 16072, - 16074, - 16080, - 16104, - 16106, - 16109, - 16110, - 16112, - 16114, - 16115, - 16116, - 16118, - 16120, - 16126, - 16128, - 16129, - 16130, - 16132, - 16136, - 16137, - 16138, - 16141, - 16154, - 16184, - 16192, - 16193, - 16194, - 16201, - 16202, - 16204, - 16225, - 16237, - 16238, - 16253, - 16254, - 16273, - 16279, - 16284, - 16286, - 16287, - 16288, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16455, - 16456, - 16457, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16658, - 16662, - 16665, - 16668 - ], - "status": "diverged", - "total_commits": 427, - "url": "https://github.com/openai/codex/compare/rust-v0.116.0...rust-v0.119.0-alpha.8" - }, - "prerelease_tag_name": "rust-v0.119.0-alpha.8", - "stable_tag_name": "rust-v0.116.0", - "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter", - "wait-agent-no-longer-needs-targets", - "windows-mcp-startup-warning-snapshots-now-normalize-rendered-paths", - "remote-exec-server-routing-now-uses-codex-exec-server-url", - "tui-plugin-ui-drops-apps-command-and-renames-curated-marketplace", - "mcp-tool-calls-now-emit-a-dedicated-mcp-tools-call-tracing-span", - "app-server-tui-preserves-transcript-output-under-backpressure", - "app-server-websocket-auth" - ] - }, - { - "compare": { - "ahead_by": 98, - "commit_shas": [ - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "a4e56ec60d0dc68536c9c25a7c82f40d47534fa4" - ], - "pr_numbers": [ - 15690, - 15771, - 15772, - 15919, - 16184, - 16192, - 16194, - 16201, - 16202, - 16238, - 16273, - 16284, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16455, - 16456, - 16457, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16658, - 16662 - ], - "status": "diverged", - "total_commits": 98, - "url": "https://github.com/openai/codex/compare/rust-v0.118.0...rust-v0.119.0-alpha.7" - }, - "prerelease_tag_name": "rust-v0.119.0-alpha.7", - "stable_tag_name": "rust-v0.118.0", - "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter" - ] + "prerelease_tag_name": "rust-v0.138.0-alpha.4", + "stable_tag_name": "rust-v0.137.0", + "tracked_signal_slugs": [] }, { "compare": { - "ahead_by": 194, + "ahead_by": 162, "commit_shas": [ - "3360f128f46f2aed392dea0d9557d0bb9536d2c2", - "b6050b42ae7e13b1eb26e9732a1582bd3c055505", - "b3e069e8cbed9ef86a47335041632ddfb458b79f", - "9736fa5e3d5da08e20c533f07c30c2960475e19b", - "86764af684e9091963085f361daa3c521649bb76", - "b23789b770039bca614ac109f3600919c381fbcb", - "dfb36573cd0c6aed5a61d6e11ed6d34a34e160ff", - "609019c6e5a055914dc7d51b111d93db4bd342e1", - "b52abff279ffe57de90cabc536e30737002b7a73", - "5906c6a658d6b91ccd0963ee6741bdb559b8f78e", - "aea82c63eac85f5d5fd85de5ac79a0b1ff8369d4", - "c264c6eef975d4abaf67beefd60added71c90950", - "a27cd2d28150b71882847a8bfdc03d275e29a1eb", - "44d28f500f7f21fa13f0e9eea87544a6269efde7", - "e6e2999209a9a0c3c25a4d2f37aa73d0c400862e", - "81fa04783a551d7e2fc5cfdfc91921aaec3e64bb", - "d76124d656424cd9a15c9ef9e901fc1a9f3679c1", - "d838c23867f6fe2e3e43a0c82d25c17cb3730b1d", - "be5afc65d31728c11d67c589cebbc64a87979e74", - "41fe98b18538c60feeb779f8fad685a1b048da7b", - "21a03f16718dae1ca2f810c33b50c99b5634c931", - "dd30c8eedd171d2dda71c43fac27dc42f457da5f", - "47a9e2e084e21542821ab65aae91f2bd6bf17c07", - "2e849703cd8a2eaebff094ef2a5108a1393d02ed", - "2ef91b71406da6c88cad959d647915b4e7909f1f", - "6a0c4709ca2154e9f3ebb07e58fb156386630188", - "270b7655cd46e8f7573aea122f87b619b225a754", - "7d5d9f041b3c7817abf7874b386b1f68ec6872b4", - "2c85ca68429539ce27b346e573fbd07a18616c53", - "37b057f0030ab34f66dbb6eb6f8e7e7a3443407c", - "f044ca64df3f13faa679341aeb4469706c458f4d", - "2b71717ccf43e36453c2dbac3f02a4dd04e062be", - "426f28ca99a809134bbc9d4879789582f80093c1", - "ec089fd22aba2c8df074b8abfd42d286b38b399c", - "617475e54be4ac4bc3aca3868c979f157f5ca7ae", - "2616c7cf122d97514bf67dd2cc740fba9236d083", - "caee620a530bf65ad4a440909ef5dc64f2c8a3ae", - "15fbf9d4f5fcc224c4c97e015253aeef52939ed4", - "95845cf6ceb85a5793aeb227b5a03056cb508756", - "8002594ee3ad32bc7dd9c2465949212bef1c017d", - "81abb44f686359719da32974fc3ceec5c1c52db6", - "82e8031338a5a94172d985662ca1f0cd0a0d3bfb", - "16d4ea9ca8dd2f6ce586168467b568b2ac6973c1", - "c5778dfca27fe977e714aedc28997e5dce11cd86", - "465897dd0f3ab0732227ca2736c103f675f5d292", - "5b71e5104fec88a9982c55a6cf39623c28144540", - "307e427a9b82f47021ad1939dcf9c5d7495c2552", - "d65deec61718f291cba5a51de9489603865779df", - "f4f6eca871c3983dfee7c7873816179535534997", - "2ffb32db98b2c1ac83cb811e7ce1c0de2320c09d", - "8e24d5aaea1ca44bde08fe7f9b7a2541a4469fe6", - "ed977b42ac4f0b71ea218546153a751866f25b5b", - "61dfe0b86c75bb4e6c173a70ca9fb2f2daac2f67", - "71923f43a7ef8ed02531a885228257e9c5b87c7b", - "142681ef932eab1da27c2a501c60bc857e755a0e", - "5037a2d19924f2e49490453ab2a913da938afbe5", - "343d1af3da64fcfd52260149855159048e9c5178", - "f4d0cbfda61ad81559cb8d7b800b67fef2034748", - "e02fd6e1d3d0ee7a47780ab3efc1c769cd373337", - "b94366441ee80f4c583e321ebb181c4805dad736", - "e39ddc61b14a8c645124f5d45ab912989a02e5fb", - "bede1d9e23202e2fce23b2ad6d154255672a675b", - "3d1abf3f3d5c9f9bcc7b1d93ce509ae75e01214b", - "61429a6c1047244c91732e87b5898867853705f0", - "65f631c3d671d0328271b4462656d47f5003cde5", - "fce0f76d577b5070f1e2b4a2abaa8350acfc38ff", - "48144a7fa41e2343c7622f01e82eb6065e29b7b7", - "178d2b00b1da55e24a16695337bb1b78d6f5883c", - "bc53d42fd98c3e7bc74ece9ac31ddbe894b7a942", - "ae8a3be9585d0918fe38fa199c963aeb80ee4f55", - "4e27a87ec6e1ac95e5bc8a56e5687829e809270c", - "313fb959896b257ab1df2aa32adb8efc789806aa", - "c25c0d6e9efb143df91fe91e56c1bb05f09359bd", - "2238c16a914c9b7337b2bd87bc65972f8daf06d1", - "a16a9109d7c464be03c463074fbe2daaa465b727", - "f7ef9599eddade2c4d1763fcc04581315994dbc6", - "46b653e73c7900cc7fb2e06effc5cf305541aa76", - "4e119a3b38e4a4decfccb003acecabc4614142b6", - "3bbc1ce00395b6b31ed5940814a2dc4cf633228f", - "3807807f911532dffa64c25b66163b0f06360d47", - "7880414a2728514ea4aaa619cb5db0ffa807556d", - "54d3ad1edea9414ba87ffe164191fed69d79ed96", - "38e648ca67802d5f2fb23f9b3bd3f200cdb067fa", - "af568afdd5b18e06098f327850f8da351bf20350", - "bb95ec3ec602dfc7762fd92e2746606df9dfea21", - "213756c9ab22b567d426fe1be9757705fb5862c9", - "c74190a622667158e53b6d10fbfc0387ec43b964", - "716f7b0428de021cc03bfe88c4b5fadd122edd52", - "258ba436f1f784aa058625aec6b6653df83fe9c6", - "9313c49e4c0480189070a149da03b7b6164ebdce", - "28a9807f8403befd318fc6022872b087b2931ddb", - "390b644b212602ee58689e9d305ea50ee4a89d5a", - "19f0d196d11dcf31e02a4d022d099e6d3bcfad6e", - "ea650a91b31eef5b3b376ca4282686df242b9132", - "007196882993dbb987905acf30d450279cc8d560", - "20f43c1e05b2b3890a20521a8138aa53ddaf9837", - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "a4e56ec60d0dc68536c9c25a7c82f40d47534fa4" + "2f0726ad6d5939e5e79b4df6fcb71f79a5fdf48f", + "e93dc98a48d597df322436ffe8d03bfd7ec63b3b", + "5f60b013524c6fbdc597417c15c1e1ee96244176", + "20debf746bb6bd954549c615c5ea806ad3c30377", + "8a556296f0b222412be75db039724d1cac624217", + "3b7334d099b339e7b18418a0cf7ac34e7bed2e43", + "cf0911076f234e0219bd8d61dd3bc2f80a2df287", + "8d49394febc57518479ece9e3dc5eb9060ac6968", + "f1b1b64005cd477dd4821dfac8bc72097297ee96", + "c875bc8a333eb492b104d8c9abb2bf4cbde195b7", + "48c16b8bcbbba54201c3ea4ea3495acd1bd52c50", + "f27bbbd49c0e05e763a96cc7fa677499de32b8d8", + "a8a6071279b6f3112fcc5fc3fee69c48473d7149", + "4eded02f527b90e663764cb5c194f881c4dfd1bc", + "c0ea566bb52908915fecb2569869bbe380f22468", + "13edafb6edff2be9bf57f38524638da4c23155d9", + "12c37a6b5cdb3fff2c03a355ca9948866bf1df07", + "f94c49cf465b7403f22894f2db1432dee66fd64e", + "66814464779ee531ac3be8c40bb6f5fe7d38fb38", + "f1d029cf75e04246c4b30bf93e47d036ba394fb5", + "3cdce5286591fc96e4336d130f71eda11da17382", + "01cb97851b1634d33b9bbb8e184111611c39b7b5", + "8b759b9c18f10b3842b8be4d371ce1c8414959eb", + "2bf1c986f92542ca73298867195855872a237a6a", + "795031621ddf23fe89be4de640ed6f524e9b560d", + "e6eb462f07ae44f4bcb5280f16a516a355c4f2c5", + "917a9a41a3b463fefc50fad51d653ff7f4243701", + "fb94703b21571a577ba52efa5f7303946ef3cecd", + "6ddb747e7687e9e6e3a2482631028c07ddc89cb6", + "9756316d89968945212cd5f958b2b972c77c9e09", + "88c7a4ff074df9e2161c947ca6d91bf824b9d6e6", + "ba2b67f9cda954bcdda43c2a65ac58e807b996bd", + "c3cdf3c00793252cd93dd9790679ee49d1bd40b3", + "281b416c441d3744c07c7c26aae73ee69dd39418", + "f1609d9fb6ee42fdd8ef475992a09a5e2c082ef5", + "53ac02356e5a7223d90b21253f3e4f6c592fb656", + "009e6c4817c6cf1a9795bb2a57e4f7c7f191f897", + "d6748f741a188f5f681c69d26c258c2a3a409f1b", + "feb9eddc513c318adbda63bd953c1684deb6d8a3", + "9f4fac8ec4e74318ae272afedd118fc635a1023d", + "a29a5b08615d2d965dc4e6a90405a70d99306d26", + "7c285f9e9c85b4b9c3819210564fc039e9b5304a", + "f0e15b916ff0aa56f25d0b8a9e519a39c297b9f1", + "433ac84102cbb6203180e5b5cd55645d117a74c7", + "6ae99fd35ffdc318508fb80062fda0b9ff53579d", + "6536841d894b3425e3dcf638c9b64678a4db8177", + "b3c415703452dc068f8e68265ee72c7887a7d1c1", + "8ee49a2f74e9c352c45420bc97676a56fdd4992f", + "8d720feb698341c9a1599253d5e903cd99c603cb", + "4e540b107690989ea20832f85cd7f121492f5b74", + "75a08def9808ed5b77b458d09c2fe99f2b52c433", + "b89bf1ef47240cff4d646caca6f8f9ca223c5ca4", + "bca18cba40a601bc462b7079a06ae486e41a3afa", + "11e0f3d3aecf631715b18581095d16c8b8f101e7", + "0b3a6f71850daf6414670e1893638acb809bc0b8", + "1ad0d7aa4b92b8bfcae0272a29609b27fc334ad9", + "0002316687f63f3b9b0155cb9272eca13aae63e3", + "747f1003ddf734b97b550d44b13c63ed71dc7986", + "c955f730781da63bf1d29480f5cb43b012ef430a", + "c8e5db16c9994affe8e1959fb76d58c3775d4075", + "cb63ee7f5d077a625fe93d292bbcf5a4b9dfc6a3", + "f2b725102b26185f179c7ccec5fba00f6b01f0a3", + "07f04cc3c7d1ddb4289469fdfa4740be0d0a82d2", + "67b805fc111706aca5b32d465c94d95659bab6aa", + "45912a6dc69ed04f1e7ef8ec3ecb4c9dc0860b6d", + "3f1fb7ed8b641542add19bb841e4e4be5651693e", + "0c5ccd18abda96efaed9e94e26ffe22def5e28ed", + "bf9fd885b2546e91fe3bab271aa481b070f47518", + "3cf6f08da562ee1bf6866fbc2db45a3c3af620ff", + "06e9a33d090d7d1d66ff4df0a423424c95f78123", + "66991c949f4352577d7d3bf83aa63abd8af15b95", + "33273e4258386ad1a073827b32a6346e37536adc", + "1dd731305ad709b792fb3bf345733d932ee426ed", + "b9af5d1234429fa0c3de856b20200335330bb882", + "3766941161b7a2e3cb4fed1441963e4317b7fb11", + "c097ad3e9e78f38699c6bec18f84b628f3fcde03", + "4d80d808b4425fa31e086985264385b02e98932e", + "859dbe27616c593238bad63be63e13a2d80579d9", + "ebb79803697acee75baf24073ef49af87ad7e483", + "593df8773d8deeff7d778fe39b59420ce293d7a5", + "9e3d5f29e2b6e2bcad3b0384e35e1faaa13e8272", + "503ec190a88da1dfa43294a98ef5530769095778", + "8e4b92d294c087423215a83b0e9c8282eedc9d12", + "e29071e4c9bf724f9679b7bcf2038d74cc44acd1", + "57f337a8e90360649112f8fc01d9ee2f9f2afa24", + "de124c32be47b01e2204269f26bd1f00ab15bb56", + "9de568372da86141ced85e4153494b0b159f2171", + "bc49677ec8aeed439c45832802918b36b1c04b5f", + "af18e92140f875f042325114108b8720d6836e96", + "ad355d4c9641953bb85c242c92f72f924edd4687", + "b794182ea7e57c9bde214bb9fd32040445a8ae38", + "d45cd2624848b185d10ab2f29b40fd581f407ac8", + "c74be11672cdf90cda60869961075965b02f213a", + "f6d64bd6ab3bf1a9587bbc13a00711029120d3e9", + "e7039f98449d0e39687aab14eda4b4383b3bce31", + "68e2c8ed69ce994a0da02c2dcf8b20a69f43c2b6", + "d55e5a9bde03235fbd796282e839966c5b39ec80", + "c6d76750e81af8a88dcda078916b4207b354bd83", + "f752b25fc43d5e79a4f1cd1878a51702e7fea977", + "bec21c71142ed44d8eb7d7ca5719c87d961044d0", + "34dc08c21429c613611f661e1ad160d4fbf7e5ec", + "2d385e166c2dff131ca21294216ce61eb62fd3c2", + "6471f8b31aba50c87d5616cc0a203160a80b5322", + "a28b32a8357b4bd67aa3ade5bb9a4e2ddb5cae1a", + "271d5cecf2e71f9ea171653306cc9ce7c6ec3f19", + "1fd2a6d328017c58f4863b76f430d4000cbfd1b5", + "98a62a62ce7e1e6e6100c6e888e9d2bd794378e2", + "d36a3ead3c896d0552207763ef483262bce9ac73", + "668703c23f8a6cde07c317f687d9b95606293752", + "ac67905fc44b2e4ebd1c295dfe73f87033c50826", + "51493157cd1fda08343e521ef47ee002009b8a40", + "3389fa554e953d07a12a34f5681aae46f17958f8", + "7db18c8241cfe40eee31539c086bb3f600d359c7", + "c9ae0f48a13022191285d998bf10234ccf20313a", + "96d2d2f68c07ef01650db1cba01071fbb2d98218", + "4417e4c193bf40e721c5bdf254b86904e3916b72", + "b2344d8fbc2b5b07b9eb06757fe5bbdecbb3107d", + "99c9be1d30ea78fad24d9eca8daa3526592a77b5", + "8030c3697019b32dd0fc2b232cea0c2c2574fe9d", + "a2a9e767f7fc5c4fa9dc6c91c6907612dda72cf3", + "52b359b24913ddab5d12d42f2f113b0e63843063", + "2d5c264ebc26c276ca6cc312389abde453ca69aa", + "10b408080a1009ca99be50cf8bc3fe45dfe7223b", + "aeac226d16523875a3fc77f61d6edcd2943155fc", + "57ab4c89e05d13b81722780ffc50eee0ea6cf445", + "a2ebe07b39823945aaedd4e1acbd70316ca13f1d", + "d8121f93c8df2e9066e929128886cae2fc81782b", + "0eb7e6d79b44b95d4aa6b22759322efcccde3521", + "2ca3810005f61bb033ccf6c48111e2aa4536b0e4", + "11bceb8f8bfdd8723da10bdcaa767a19d92a2a57", + "4231472c03e6c6e3374b1c19ef096ee28476f9dd", + "14272b21e95ed9a54fae21c27d33d3771a9ee30f", + "0ed2735d195d149766b242d972f95f3173ebc984", + "4d4837c4951375c877986e239304c95ebbe14633", + "8285cd278babadc98458194fb2dbc3ae7f00429c", + "80b65e99457344f5f05fb4948eb35c6b1d320e3f", + "6bcccb0ee6b875a41ed9e8fb7e299a6b98dd3faa", + "c143a86de8c5da3ae5127565b9ffe7094d2e5c28", + "ad2012d645b7146d31bb03f98e2bd9371635d11a", + "16d02ec77c6337ccea02a8c909e05bf3d905f887", + "d297616d3e6a27865fb327e7b4ea3d548f7fdb45", + "d46a98d31a9c32949580e6e3ce65b85772f3470d", + "7da4af622ffc68d7b687e61ba8f19163af50fab8", + "d81fcdf8ef3f2857db1a51b83a012638a7ecf0fb", + "4ae7930f58c980c1064f5c2f7a2e38b1058e0410", + "68db0bb5ec67635d3052ddae2ecb35cdea48263e", + "12e8764a9c61dfc8cc8ba2520a2b7cf3e0500edd", + "cbf62f64cbfdca160e7303536ec6ea464d371281", + "cdc1d592df7f066c141025cc8ae80bb3202580b6", + "881cf191d72da0edfc90cbc9fd5b3c30cb6eb9bc", + "c8fdc74b421fb904e11c07886a3a7dc22fa56ed6", + "9e41f8ddbe087ae6b9bdfb8d5821ab2f09f8c5fe", + "8b1238856b0839cfdb345ee2af9f02e4ee2959f9", + "c3fcb0e7457dc53aa4422ae4356e1fcc2a206ce6", + "e64b469bbcf2c2a6bb575ef0a58368f02147e899", + "555f8caeff42073fcdc52755491d785adcc81e4a", + "f97d5c327538a8fe8580fa4dd9ee22c213780a59", + "d312a53e2a4419c339c890b79f02b56c19abac85", + "4a70e0ac1b39c6da6863069bebc82ce3513bc8b5", + "8ac304c2997529d3b6fe4be4ba032e0f2dac16af", + "f6e529656f7ce4af6d146f4b0c8500a6d89221c2", + "2ec687715d2316fb1d32c79f5c942bcfd2356e8a" ], "pr_numbers": [ - 12220, - 14495, - 15067, - 15120, - 15522, - 15525, - 15690, - 15771, - 15772, - 15791, - 15811, - 15828, - 15876, - 15891, - 15897, - 15898, - 15900, - 15903, - 15906, - 15909, - 15910, - 15917, - 15918, - 15919, - 15921, - 15922, - 15923, - 15928, - 15931, - 15933, - 15934, - 15944, - 15946, - 15948, - 15952, - 15953, - 15954, - 15955, - 15973, - 15985, - 15986, - 15995, - 15996, - 15998, - 15999, - 16000, - 16001, - 16010, - 16013, - 16014, - 16021, - 16026, - 16027, - 16030, - 16031, - 16035, - 16036, - 16041, - 16044, - 16046, - 16047, - 16050, - 16054, - 16057, - 16063, - 16067, - 16071, - 16072, - 16074, - 16080, - 16104, - 16106, - 16109, - 16110, - 16112, - 16114, - 16115, - 16116, - 16118, - 16120, - 16126, - 16128, - 16129, - 16130, - 16132, - 16136, - 16137, - 16138, - 16141, - 16154, - 16184, - 16192, - 16193, - 16194, - 16201, - 16202, - 16204, - 16225, - 16237, - 16238, - 16253, - 16254, - 16273, - 16279, - 16284, - 16286, - 16287, - 16288, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16455, - 16456, - 16457, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16658, - 16662 + 22668, + 23710, + 23763, + 23767, + 24617, + 24619, + 24620, + 24621, + 24622, + 24812, + 24859, + 24979, + 24980, + 24983, + 25060, + 25087, + 25089, + 25096, + 25113, + 25121, + 25135, + 25149, + 25151, + 25156, + 25165, + 25167, + 25176, + 25266, + 25316, + 25329, + 25330, + 25400, + 25435, + 25457, + 25462, + 25469, + 25485, + 25490, + 25491, + 25492, + 25504, + 25509, + 25576, + 25577, + 25603, + 25623, + 25624, + 25625, + 25628, + 25636, + 25638, + 25644, + 25649, + 25654, + 25655, + 25659, + 25661, + 25668, + 25669, + 25675, + 25679, + 25680, + 25681, + 25682, + 25683, + 25684, + 25689, + 25690, + 25700, + 25701, + 25702, + 25705, + 25707, + 25712, + 25717, + 25720, + 25721, + 25722, + 25723, + 25724, + 25738, + 25739, + 25775, + 25782, + 25783, + 25785, + 25814, + 25840, + 25841, + 25844, + 25847, + 25850, + 25857, + 25858, + 25862, + 25867, + 25868, + 25887, + 25890, + 25906, + 25907, + 25909, + 25911, + 25915, + 25916, + 25923, + 25925, + 25926, + 25938, + 25943, + 25944, + 25945, + 25946, + 25947, + 25948, + 25949, + 25953, + 25959, + 25960, + 25963, + 25988, + 26002, + 26047, + 26074, + 26075, + 26106, + 26114, + 26122, + 26144, + 26147, + 26155, + 26156, + 26167, + 26172, + 26175, + 26176, + 26179, + 26189, + 26205, + 26216, + 26226, + 26248, + 26251, + 26252, + 26254, + 26260, + 26265, + 26272, + 26291, + 26312, + 26313, + 26320, + 26367, + 26396, + 26417, + 26435, + 26436, + 26444, + 26445, + 26446, + 26447 ], "status": "diverged", - "total_commits": 194, - "url": "https://github.com/openai/codex/compare/rust-v0.117.0...rust-v0.119.0-alpha.7" + "total_commits": 162, + "url": "https://github.com/openai/codex/compare/rust-v0.136.0...rust-v0.138.0-alpha.4" }, - "prerelease_tag_name": "rust-v0.119.0-alpha.7", - "stable_tag_name": "rust-v0.117.0", + "prerelease_tag_name": "rust-v0.138.0-alpha.4", + "stable_tag_name": "rust-v0.136.0", "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter", - "wait-agent-no-longer-needs-targets", - "windows-mcp-startup-warning-snapshots-now-normalize-rendered-paths" + "multiagentv2-followup-task-replaces-assign-task" ] }, { "compare": { - "ahead_by": 425, + "ahead_by": 155, "commit_shas": [ - "c0ffd000dd6d246be139b888b316531c80d6538a", - "e590fad50b832bebc68e7f18067cad5fe13a7d85", - "f5dccab5cf9674f46c8bd2cc9606d9d6cd94fadb", - "047ea642d2989f4095a6dc5070aaa818554e550e", - "32c4993c8a17cb0608d747f268e3d543745de962", - "178c3b15b475104459815767e0561756c8cd00ed", - "504aeb0e09bbc40771d4f23fc89c8571c27289cd", - "f190a95a4f0d7195c1c5cff48157b6c451be7c27", - "c6ffe9abab04bd3349ecc49fffc0fbf9551826e6", - "14c35a16a8a41cc16c5e36c2c4287b7b2db6e975", - "303d0190c5f3818146c917e58ece725178e49ebf", - "fba3c79885188b9b88bbceee9e9b872933393aee", - "6b10e186c4d1b544745d241416c9d94bb83a9fef", - "ad74543a6f6e5590ae8839142259df571405da28", - "2bb1027e37fd2ff7b5a72de8b5f5d8ce8cca2cba", - "d273efc0f31615ffdfe23481829d3dbb1e729861", - "6566ab7e021b7138672757538407ebd070f2a4ae", - "79359fb5e78d470c69a7b6e82291608ed685c3bb", - "91337399fe3c216949b7fd5203fa7737b86841ed", - "6124564297289ddadd5ab364bb961ea367fff8d0", - "e9996ec62a9ae4e2d7c6e4f1c701544da7067def", - "9dbe0983490c2f952b8791e634b5ec3ce94edee9", - "2c67a27a719d6db46ea29e3a4f306d34db52ace2", - "b6524514c1343c42d9520f1c60a6c5cf4ee5c15f", - "eee692e35167e9c6b7eec459fd8f4b0c347a4458", - "f24c55f0d53842ca0061d149380a8cfd4b4bdda4", - "8fa88fa8cabddb15c6477b84f2d1774ce50b20bd", - "2794e278497e7e604a512ce877d16ed8e8fe6be9", - "d7e35e56cff9157e4f1ba8da50a44a7bc6353028", - "78799c1bcfb997c7f39625d6f47f33e55fe82708", - "c4d9887f9a11965221bb2b2dc98f68e46b2681e8", - "4b50446ffa3385f8b72a5ced71a1306d28646d02", - "b565f05d79c9e6ee8bc891353ae4c037c5982a01", - "1ff39b6fa812e987c143c976c488794fd4966f2d", - "6d0525ae7015cb9239cc907fe78e88cf2fea5ce5", - "937cb5081df1ac9c458a7bcd784e9878ac924a47", - "7ef3cfe63e435ee03812cfb818c4ba8a063a6833", - "b00a05c7855eb81e61f95f4d7f00b8c97a13b284", - "4a5635b5a0336274b6ee196140bfe151b18a642d", - "7dac332c9340c689cbc9641c5fca21306b916f00", - "6dcac41d5375d70dc9606c790c68b63260fb2635", - "01fa4f0212db10f0ea3b27e3a0657c5fba504588", - "26c66f3ee1dda627d08daa50a3f809b5a1825357", - "a5824e37db4834a0eb4c191e67de0dfec4b8fff0", - "6d2f4aaafc1623a9c5a4b994778329a3a1c686bb", - "c9214192c52aef31758088b5e87e971fc57a0478", - "352f37db03315dc215fbf23cb36b442554afb8c5", - "0d44bd708eef1fe0a00f601ffe2ecab89a77434e", - "8d479f741c501fc21e65f58918548b669a9b492d", - "e7139e14a29de0411a61658a0e5765e2502a0cd2", - "e36ebaa3daca0e5e73dc2d2af82b04c9eca2526b", - "af0427377898290356e47b9b3a3311083d9ed3fb", - "0bd34c28c768fce784d0648fe45e651b9a9b37d4", - "970386e8b2a776d47ef6ac6c2bd67a3c0ed86744", - "2c54d4b1608d6305362dd2c776ee6ac83a37852a", - "25134b592c13328f76b2a56631dcec1abdb1b5b6", - "3360f128f46f2aed392dea0d9557d0bb9536d2c2", - "b6050b42ae7e13b1eb26e9732a1582bd3c055505", - "b3e069e8cbed9ef86a47335041632ddfb458b79f", - "9736fa5e3d5da08e20c533f07c30c2960475e19b", - "86764af684e9091963085f361daa3c521649bb76", - "b23789b770039bca614ac109f3600919c381fbcb", - "dfb36573cd0c6aed5a61d6e11ed6d34a34e160ff", - "609019c6e5a055914dc7d51b111d93db4bd342e1", - "b52abff279ffe57de90cabc536e30737002b7a73", - "5906c6a658d6b91ccd0963ee6741bdb559b8f78e", - "aea82c63eac85f5d5fd85de5ac79a0b1ff8369d4", - "c264c6eef975d4abaf67beefd60added71c90950", - "a27cd2d28150b71882847a8bfdc03d275e29a1eb", - "44d28f500f7f21fa13f0e9eea87544a6269efde7", - "e6e2999209a9a0c3c25a4d2f37aa73d0c400862e", - "81fa04783a551d7e2fc5cfdfc91921aaec3e64bb", - "d76124d656424cd9a15c9ef9e901fc1a9f3679c1", - "d838c23867f6fe2e3e43a0c82d25c17cb3730b1d", - "be5afc65d31728c11d67c589cebbc64a87979e74", - "41fe98b18538c60feeb779f8fad685a1b048da7b", - "21a03f16718dae1ca2f810c33b50c99b5634c931", - "dd30c8eedd171d2dda71c43fac27dc42f457da5f", - "47a9e2e084e21542821ab65aae91f2bd6bf17c07", - "2e849703cd8a2eaebff094ef2a5108a1393d02ed", - "2ef91b71406da6c88cad959d647915b4e7909f1f", - "6a0c4709ca2154e9f3ebb07e58fb156386630188", - "270b7655cd46e8f7573aea122f87b619b225a754", - "7d5d9f041b3c7817abf7874b386b1f68ec6872b4", - "2c85ca68429539ce27b346e573fbd07a18616c53", - "37b057f0030ab34f66dbb6eb6f8e7e7a3443407c", - "f044ca64df3f13faa679341aeb4469706c458f4d", - "2b71717ccf43e36453c2dbac3f02a4dd04e062be", - "426f28ca99a809134bbc9d4879789582f80093c1", - "ec089fd22aba2c8df074b8abfd42d286b38b399c", - "617475e54be4ac4bc3aca3868c979f157f5ca7ae", - "2616c7cf122d97514bf67dd2cc740fba9236d083", - "caee620a530bf65ad4a440909ef5dc64f2c8a3ae", - "15fbf9d4f5fcc224c4c97e015253aeef52939ed4", - "95845cf6ceb85a5793aeb227b5a03056cb508756", - "8002594ee3ad32bc7dd9c2465949212bef1c017d", - "81abb44f686359719da32974fc3ceec5c1c52db6", - "82e8031338a5a94172d985662ca1f0cd0a0d3bfb", - "16d4ea9ca8dd2f6ce586168467b568b2ac6973c1", - "c5778dfca27fe977e714aedc28997e5dce11cd86", - "465897dd0f3ab0732227ca2736c103f675f5d292", - "5b71e5104fec88a9982c55a6cf39623c28144540", - "307e427a9b82f47021ad1939dcf9c5d7495c2552", - "d65deec61718f291cba5a51de9489603865779df", - "f4f6eca871c3983dfee7c7873816179535534997", - "2ffb32db98b2c1ac83cb811e7ce1c0de2320c09d", - "8e24d5aaea1ca44bde08fe7f9b7a2541a4469fe6", - "ed977b42ac4f0b71ea218546153a751866f25b5b", - "61dfe0b86c75bb4e6c173a70ca9fb2f2daac2f67", - "71923f43a7ef8ed02531a885228257e9c5b87c7b", - "142681ef932eab1da27c2a501c60bc857e755a0e", - "5037a2d19924f2e49490453ab2a913da938afbe5", - "343d1af3da64fcfd52260149855159048e9c5178", - "f4d0cbfda61ad81559cb8d7b800b67fef2034748", - "e02fd6e1d3d0ee7a47780ab3efc1c769cd373337", - "b94366441ee80f4c583e321ebb181c4805dad736", - "e39ddc61b14a8c645124f5d45ab912989a02e5fb", - "bede1d9e23202e2fce23b2ad6d154255672a675b", - "3d1abf3f3d5c9f9bcc7b1d93ce509ae75e01214b", - "61429a6c1047244c91732e87b5898867853705f0", - "65f631c3d671d0328271b4462656d47f5003cde5", - "fce0f76d577b5070f1e2b4a2abaa8350acfc38ff", - "48144a7fa41e2343c7622f01e82eb6065e29b7b7", - "178d2b00b1da55e24a16695337bb1b78d6f5883c", - "bc53d42fd98c3e7bc74ece9ac31ddbe894b7a942", - "ae8a3be9585d0918fe38fa199c963aeb80ee4f55", - "4e27a87ec6e1ac95e5bc8a56e5687829e809270c", - "313fb959896b257ab1df2aa32adb8efc789806aa", - "c25c0d6e9efb143df91fe91e56c1bb05f09359bd", - "2238c16a914c9b7337b2bd87bc65972f8daf06d1", - "a16a9109d7c464be03c463074fbe2daaa465b727", - "f7ef9599eddade2c4d1763fcc04581315994dbc6", - "46b653e73c7900cc7fb2e06effc5cf305541aa76", - "4e119a3b38e4a4decfccb003acecabc4614142b6", - "3bbc1ce00395b6b31ed5940814a2dc4cf633228f", - "3807807f911532dffa64c25b66163b0f06360d47", - "7880414a2728514ea4aaa619cb5db0ffa807556d", - "54d3ad1edea9414ba87ffe164191fed69d79ed96", - "38e648ca67802d5f2fb23f9b3bd3f200cdb067fa", - "af568afdd5b18e06098f327850f8da351bf20350", - "bb95ec3ec602dfc7762fd92e2746606df9dfea21", - "213756c9ab22b567d426fe1be9757705fb5862c9", - "c74190a622667158e53b6d10fbfc0387ec43b964", - "716f7b0428de021cc03bfe88c4b5fadd122edd52", - "258ba436f1f784aa058625aec6b6653df83fe9c6", - "9313c49e4c0480189070a149da03b7b6164ebdce", - "28a9807f8403befd318fc6022872b087b2931ddb", - "390b644b212602ee58689e9d305ea50ee4a89d5a", - "19f0d196d11dcf31e02a4d022d099e6d3bcfad6e", - "ea650a91b31eef5b3b376ca4282686df242b9132", - "007196882993dbb987905acf30d450279cc8d560", - "20f43c1e05b2b3890a20521a8138aa53ddaf9837", - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "8cd7f20b482a14c18e0db86ed3cb5c6d105e4dbb", - "6fff9955f192f6bc47a8458475239f6d14ccc9aa", - "b4787bf4c00fa0c3253f5979330b37d41e740da7", - "a4e56ec60d0dc68536c9c25a7c82f40d47534fa4" + "2f0726ad6d5939e5e79b4df6fcb71f79a5fdf48f", + "e93dc98a48d597df322436ffe8d03bfd7ec63b3b", + "5f60b013524c6fbdc597417c15c1e1ee96244176", + "20debf746bb6bd954549c615c5ea806ad3c30377", + "8a556296f0b222412be75db039724d1cac624217", + "3b7334d099b339e7b18418a0cf7ac34e7bed2e43", + "cf0911076f234e0219bd8d61dd3bc2f80a2df287", + "8d49394febc57518479ece9e3dc5eb9060ac6968", + "f1b1b64005cd477dd4821dfac8bc72097297ee96", + "c875bc8a333eb492b104d8c9abb2bf4cbde195b7", + "48c16b8bcbbba54201c3ea4ea3495acd1bd52c50", + "f27bbbd49c0e05e763a96cc7fa677499de32b8d8", + "a8a6071279b6f3112fcc5fc3fee69c48473d7149", + "4eded02f527b90e663764cb5c194f881c4dfd1bc", + "c0ea566bb52908915fecb2569869bbe380f22468", + "13edafb6edff2be9bf57f38524638da4c23155d9", + "12c37a6b5cdb3fff2c03a355ca9948866bf1df07", + "f94c49cf465b7403f22894f2db1432dee66fd64e", + "66814464779ee531ac3be8c40bb6f5fe7d38fb38", + "f1d029cf75e04246c4b30bf93e47d036ba394fb5", + "3cdce5286591fc96e4336d130f71eda11da17382", + "01cb97851b1634d33b9bbb8e184111611c39b7b5", + "8b759b9c18f10b3842b8be4d371ce1c8414959eb", + "2bf1c986f92542ca73298867195855872a237a6a", + "795031621ddf23fe89be4de640ed6f524e9b560d", + "e6eb462f07ae44f4bcb5280f16a516a355c4f2c5", + "917a9a41a3b463fefc50fad51d653ff7f4243701", + "fb94703b21571a577ba52efa5f7303946ef3cecd", + "6ddb747e7687e9e6e3a2482631028c07ddc89cb6", + "9756316d89968945212cd5f958b2b972c77c9e09", + "88c7a4ff074df9e2161c947ca6d91bf824b9d6e6", + "ba2b67f9cda954bcdda43c2a65ac58e807b996bd", + "c3cdf3c00793252cd93dd9790679ee49d1bd40b3", + "281b416c441d3744c07c7c26aae73ee69dd39418", + "f1609d9fb6ee42fdd8ef475992a09a5e2c082ef5", + "53ac02356e5a7223d90b21253f3e4f6c592fb656", + "009e6c4817c6cf1a9795bb2a57e4f7c7f191f897", + "d6748f741a188f5f681c69d26c258c2a3a409f1b", + "feb9eddc513c318adbda63bd953c1684deb6d8a3", + "9f4fac8ec4e74318ae272afedd118fc635a1023d", + "a29a5b08615d2d965dc4e6a90405a70d99306d26", + "7c285f9e9c85b4b9c3819210564fc039e9b5304a", + "f0e15b916ff0aa56f25d0b8a9e519a39c297b9f1", + "433ac84102cbb6203180e5b5cd55645d117a74c7", + "6ae99fd35ffdc318508fb80062fda0b9ff53579d", + "6536841d894b3425e3dcf638c9b64678a4db8177", + "b3c415703452dc068f8e68265ee72c7887a7d1c1", + "8ee49a2f74e9c352c45420bc97676a56fdd4992f", + "8d720feb698341c9a1599253d5e903cd99c603cb", + "4e540b107690989ea20832f85cd7f121492f5b74", + "75a08def9808ed5b77b458d09c2fe99f2b52c433", + "b89bf1ef47240cff4d646caca6f8f9ca223c5ca4", + "bca18cba40a601bc462b7079a06ae486e41a3afa", + "11e0f3d3aecf631715b18581095d16c8b8f101e7", + "0b3a6f71850daf6414670e1893638acb809bc0b8", + "1ad0d7aa4b92b8bfcae0272a29609b27fc334ad9", + "0002316687f63f3b9b0155cb9272eca13aae63e3", + "747f1003ddf734b97b550d44b13c63ed71dc7986", + "c955f730781da63bf1d29480f5cb43b012ef430a", + "c8e5db16c9994affe8e1959fb76d58c3775d4075", + "cb63ee7f5d077a625fe93d292bbcf5a4b9dfc6a3", + "f2b725102b26185f179c7ccec5fba00f6b01f0a3", + "07f04cc3c7d1ddb4289469fdfa4740be0d0a82d2", + "67b805fc111706aca5b32d465c94d95659bab6aa", + "45912a6dc69ed04f1e7ef8ec3ecb4c9dc0860b6d", + "3f1fb7ed8b641542add19bb841e4e4be5651693e", + "0c5ccd18abda96efaed9e94e26ffe22def5e28ed", + "bf9fd885b2546e91fe3bab271aa481b070f47518", + "3cf6f08da562ee1bf6866fbc2db45a3c3af620ff", + "06e9a33d090d7d1d66ff4df0a423424c95f78123", + "66991c949f4352577d7d3bf83aa63abd8af15b95", + "33273e4258386ad1a073827b32a6346e37536adc", + "1dd731305ad709b792fb3bf345733d932ee426ed", + "b9af5d1234429fa0c3de856b20200335330bb882", + "3766941161b7a2e3cb4fed1441963e4317b7fb11", + "c097ad3e9e78f38699c6bec18f84b628f3fcde03", + "4d80d808b4425fa31e086985264385b02e98932e", + "859dbe27616c593238bad63be63e13a2d80579d9", + "ebb79803697acee75baf24073ef49af87ad7e483", + "593df8773d8deeff7d778fe39b59420ce293d7a5", + "9e3d5f29e2b6e2bcad3b0384e35e1faaa13e8272", + "503ec190a88da1dfa43294a98ef5530769095778", + "8e4b92d294c087423215a83b0e9c8282eedc9d12", + "e29071e4c9bf724f9679b7bcf2038d74cc44acd1", + "57f337a8e90360649112f8fc01d9ee2f9f2afa24", + "de124c32be47b01e2204269f26bd1f00ab15bb56", + "9de568372da86141ced85e4153494b0b159f2171", + "bc49677ec8aeed439c45832802918b36b1c04b5f", + "af18e92140f875f042325114108b8720d6836e96", + "ad355d4c9641953bb85c242c92f72f924edd4687", + "b794182ea7e57c9bde214bb9fd32040445a8ae38", + "d45cd2624848b185d10ab2f29b40fd581f407ac8", + "c74be11672cdf90cda60869961075965b02f213a", + "f6d64bd6ab3bf1a9587bbc13a00711029120d3e9", + "e7039f98449d0e39687aab14eda4b4383b3bce31", + "68e2c8ed69ce994a0da02c2dcf8b20a69f43c2b6", + "d55e5a9bde03235fbd796282e839966c5b39ec80", + "c6d76750e81af8a88dcda078916b4207b354bd83", + "f752b25fc43d5e79a4f1cd1878a51702e7fea977", + "bec21c71142ed44d8eb7d7ca5719c87d961044d0", + "34dc08c21429c613611f661e1ad160d4fbf7e5ec", + "2d385e166c2dff131ca21294216ce61eb62fd3c2", + "6471f8b31aba50c87d5616cc0a203160a80b5322", + "a28b32a8357b4bd67aa3ade5bb9a4e2ddb5cae1a", + "271d5cecf2e71f9ea171653306cc9ce7c6ec3f19", + "1fd2a6d328017c58f4863b76f430d4000cbfd1b5", + "98a62a62ce7e1e6e6100c6e888e9d2bd794378e2", + "d36a3ead3c896d0552207763ef483262bce9ac73", + "668703c23f8a6cde07c317f687d9b95606293752", + "ac67905fc44b2e4ebd1c295dfe73f87033c50826", + "51493157cd1fda08343e521ef47ee002009b8a40", + "3389fa554e953d07a12a34f5681aae46f17958f8", + "7db18c8241cfe40eee31539c086bb3f600d359c7", + "c9ae0f48a13022191285d998bf10234ccf20313a", + "96d2d2f68c07ef01650db1cba01071fbb2d98218", + "4417e4c193bf40e721c5bdf254b86904e3916b72", + "b2344d8fbc2b5b07b9eb06757fe5bbdecbb3107d", + "99c9be1d30ea78fad24d9eca8daa3526592a77b5", + "8030c3697019b32dd0fc2b232cea0c2c2574fe9d", + "a2a9e767f7fc5c4fa9dc6c91c6907612dda72cf3", + "52b359b24913ddab5d12d42f2f113b0e63843063", + "2d5c264ebc26c276ca6cc312389abde453ca69aa", + "10b408080a1009ca99be50cf8bc3fe45dfe7223b", + "aeac226d16523875a3fc77f61d6edcd2943155fc", + "57ab4c89e05d13b81722780ffc50eee0ea6cf445", + "a2ebe07b39823945aaedd4e1acbd70316ca13f1d", + "d8121f93c8df2e9066e929128886cae2fc81782b", + "0eb7e6d79b44b95d4aa6b22759322efcccde3521", + "2ca3810005f61bb033ccf6c48111e2aa4536b0e4", + "11bceb8f8bfdd8723da10bdcaa767a19d92a2a57", + "4231472c03e6c6e3374b1c19ef096ee28476f9dd", + "14272b21e95ed9a54fae21c27d33d3771a9ee30f", + "0ed2735d195d149766b242d972f95f3173ebc984", + "4d4837c4951375c877986e239304c95ebbe14633", + "8285cd278babadc98458194fb2dbc3ae7f00429c", + "80b65e99457344f5f05fb4948eb35c6b1d320e3f", + "6bcccb0ee6b875a41ed9e8fb7e299a6b98dd3faa", + "c143a86de8c5da3ae5127565b9ffe7094d2e5c28", + "ad2012d645b7146d31bb03f98e2bd9371635d11a", + "16d02ec77c6337ccea02a8c909e05bf3d905f887", + "d297616d3e6a27865fb327e7b4ea3d548f7fdb45", + "d46a98d31a9c32949580e6e3ce65b85772f3470d", + "7da4af622ffc68d7b687e61ba8f19163af50fab8", + "d81fcdf8ef3f2857db1a51b83a012638a7ecf0fb", + "4ae7930f58c980c1064f5c2f7a2e38b1058e0410", + "68db0bb5ec67635d3052ddae2ecb35cdea48263e", + "12e8764a9c61dfc8cc8ba2520a2b7cf3e0500edd", + "cbf62f64cbfdca160e7303536ec6ea464d371281", + "cdc1d592df7f066c141025cc8ae80bb3202580b6", + "881cf191d72da0edfc90cbc9fd5b3c30cb6eb9bc", + "c8fdc74b421fb904e11c07886a3a7dc22fa56ed6", + "9e41f8ddbe087ae6b9bdfb8d5821ab2f09f8c5fe", + "8b1238856b0839cfdb345ee2af9f02e4ee2959f9", + "c3fcb0e7457dc53aa4422ae4356e1fcc2a206ce6", + "68ab6c4f8e9ae6268459bd0ad28524796b98163a" ], "pr_numbers": [ - 12220, - 14495, - 14847, - 14853, - 14856, - 15067, - 15120, - 15339, - 15513, - 15519, - 15522, - 15525, - 15531, - 15659, - 15661, - 15690, - 15691, - 15693, - 15707, - 15710, - 15714, - 15722, - 15734, - 15744, - 15746, - 15747, - 15748, - 15749, - 15758, - 15759, - 15766, - 15771, - 15772, - 15773, - 15775, - 15776, - 15778, - 15784, - 15785, - 15789, - 15791, - 15796, - 15798, - 15800, - 15802, - 15805, - 15806, - 15810, - 15811, - 15812, - 15813, - 15817, - 15820, - 15825, - 15828, - 15829, - 15835, - 15839, - 15851, - 15860, - 15861, - 15864, - 15866, - 15869, - 15876, - 15877, - 15880, - 15881, - 15885, - 15891, - 15897, - 15898, - 15900, - 15903, - 15906, - 15909, - 15910, - 15917, - 15918, - 15919, - 15921, - 15922, - 15923, - 15928, - 15931, - 15933, - 15934, - 15944, - 15946, - 15948, - 15952, - 15953, - 15954, - 15955, - 15973, - 15985, - 15986, - 15995, - 15996, - 15998, - 15999, - 16000, - 16001, - 16010, - 16013, - 16014, - 16021, - 16026, - 16027, - 16030, - 16031, - 16035, - 16036, - 16041, - 16044, - 16046, - 16047, - 16050, - 16054, - 16057, - 16063, - 16067, - 16071, - 16072, - 16074, - 16080, - 16104, - 16106, - 16109, - 16110, - 16112, - 16114, - 16115, - 16116, - 16118, - 16120, - 16126, - 16128, - 16129, - 16130, - 16132, - 16136, - 16137, - 16138, - 16141, - 16154, - 16184, - 16192, - 16193, - 16194, - 16201, - 16202, - 16204, - 16225, - 16237, - 16238, - 16253, - 16254, - 16273, - 16279, - 16284, - 16286, - 16287, - 16288, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16455, - 16456, - 16457, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16508, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635, - 16658, - 16662 + 22668, + 23763, + 23767, + 24617, + 24619, + 24620, + 24621, + 24622, + 24812, + 24859, + 24979, + 24980, + 24983, + 25060, + 25087, + 25089, + 25096, + 25113, + 25121, + 25135, + 25149, + 25151, + 25156, + 25165, + 25167, + 25176, + 25266, + 25316, + 25329, + 25330, + 25400, + 25435, + 25457, + 25462, + 25469, + 25485, + 25490, + 25491, + 25492, + 25504, + 25509, + 25576, + 25577, + 25603, + 25623, + 25624, + 25625, + 25628, + 25636, + 25638, + 25644, + 25649, + 25654, + 25655, + 25659, + 25661, + 25668, + 25669, + 25675, + 25679, + 25680, + 25681, + 25682, + 25683, + 25684, + 25689, + 25690, + 25700, + 25701, + 25702, + 25705, + 25707, + 25712, + 25717, + 25720, + 25721, + 25722, + 25723, + 25724, + 25738, + 25739, + 25775, + 25782, + 25783, + 25785, + 25814, + 25840, + 25841, + 25844, + 25847, + 25850, + 25857, + 25858, + 25862, + 25867, + 25868, + 25887, + 25890, + 25906, + 25907, + 25909, + 25911, + 25915, + 25916, + 25923, + 25925, + 25926, + 25938, + 25943, + 25944, + 25945, + 25946, + 25947, + 25948, + 25949, + 25953, + 25959, + 25960, + 25963, + 25988, + 26002, + 26047, + 26074, + 26075, + 26106, + 26114, + 26122, + 26144, + 26147, + 26155, + 26156, + 26167, + 26172, + 26175, + 26176, + 26179, + 26189, + 26216, + 26226, + 26248, + 26251, + 26252, + 26254, + 26260, + 26265, + 26272, + 26291, + 26313, + 26320, + 26367, + 26396, + 26417, + 26435, + 26436 ], "status": "diverged", - "total_commits": 425, - "url": "https://github.com/openai/codex/compare/rust-v0.116.0...rust-v0.119.0-alpha.7" + "total_commits": 155, + "url": "https://github.com/openai/codex/compare/rust-v0.136.0...rust-v0.138.0-alpha.3" }, - "prerelease_tag_name": "rust-v0.119.0-alpha.7", - "stable_tag_name": "rust-v0.116.0", + "prerelease_tag_name": "rust-v0.138.0-alpha.3", + "stable_tag_name": "rust-v0.136.0", "tracked_signal_slugs": [ - "model-and-provider-ownership-moves-out-of-codex-core", - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter", - "wait-agent-no-longer-needs-targets", - "windows-mcp-startup-warning-snapshots-now-normalize-rendered-paths", - "remote-exec-server-routing-now-uses-codex-exec-server-url", - "tui-plugin-ui-drops-apps-command-and-renames-curated-marketplace", - "mcp-tool-calls-now-emit-a-dedicated-mcp-tools-call-tracing-span", - "app-server-tui-preserves-transcript-output-under-backpressure", - "app-server-websocket-auth" + "multiagentv2-followup-task-replaces-assign-task" ] }, { "compare": { - "ahead_by": 95, + "ahead_by": 147, "commit_shas": [ - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "51591e8d4e4d1595234ae980f4c7a7a95b292f5a" + "2f0726ad6d5939e5e79b4df6fcb71f79a5fdf48f", + "e93dc98a48d597df322436ffe8d03bfd7ec63b3b", + "5f60b013524c6fbdc597417c15c1e1ee96244176", + "20debf746bb6bd954549c615c5ea806ad3c30377", + "8a556296f0b222412be75db039724d1cac624217", + "3b7334d099b339e7b18418a0cf7ac34e7bed2e43", + "cf0911076f234e0219bd8d61dd3bc2f80a2df287", + "8d49394febc57518479ece9e3dc5eb9060ac6968", + "f1b1b64005cd477dd4821dfac8bc72097297ee96", + "c875bc8a333eb492b104d8c9abb2bf4cbde195b7", + "48c16b8bcbbba54201c3ea4ea3495acd1bd52c50", + "f27bbbd49c0e05e763a96cc7fa677499de32b8d8", + "a8a6071279b6f3112fcc5fc3fee69c48473d7149", + "4eded02f527b90e663764cb5c194f881c4dfd1bc", + "c0ea566bb52908915fecb2569869bbe380f22468", + "13edafb6edff2be9bf57f38524638da4c23155d9", + "12c37a6b5cdb3fff2c03a355ca9948866bf1df07", + "f94c49cf465b7403f22894f2db1432dee66fd64e", + "66814464779ee531ac3be8c40bb6f5fe7d38fb38", + "f1d029cf75e04246c4b30bf93e47d036ba394fb5", + "3cdce5286591fc96e4336d130f71eda11da17382", + "01cb97851b1634d33b9bbb8e184111611c39b7b5", + "8b759b9c18f10b3842b8be4d371ce1c8414959eb", + "2bf1c986f92542ca73298867195855872a237a6a", + "795031621ddf23fe89be4de640ed6f524e9b560d", + "e6eb462f07ae44f4bcb5280f16a516a355c4f2c5", + "917a9a41a3b463fefc50fad51d653ff7f4243701", + "fb94703b21571a577ba52efa5f7303946ef3cecd", + "6ddb747e7687e9e6e3a2482631028c07ddc89cb6", + "9756316d89968945212cd5f958b2b972c77c9e09", + "88c7a4ff074df9e2161c947ca6d91bf824b9d6e6", + "ba2b67f9cda954bcdda43c2a65ac58e807b996bd", + "c3cdf3c00793252cd93dd9790679ee49d1bd40b3", + "281b416c441d3744c07c7c26aae73ee69dd39418", + "f1609d9fb6ee42fdd8ef475992a09a5e2c082ef5", + "53ac02356e5a7223d90b21253f3e4f6c592fb656", + "009e6c4817c6cf1a9795bb2a57e4f7c7f191f897", + "d6748f741a188f5f681c69d26c258c2a3a409f1b", + "feb9eddc513c318adbda63bd953c1684deb6d8a3", + "9f4fac8ec4e74318ae272afedd118fc635a1023d", + "a29a5b08615d2d965dc4e6a90405a70d99306d26", + "7c285f9e9c85b4b9c3819210564fc039e9b5304a", + "f0e15b916ff0aa56f25d0b8a9e519a39c297b9f1", + "433ac84102cbb6203180e5b5cd55645d117a74c7", + "6ae99fd35ffdc318508fb80062fda0b9ff53579d", + "6536841d894b3425e3dcf638c9b64678a4db8177", + "b3c415703452dc068f8e68265ee72c7887a7d1c1", + "8ee49a2f74e9c352c45420bc97676a56fdd4992f", + "8d720feb698341c9a1599253d5e903cd99c603cb", + "4e540b107690989ea20832f85cd7f121492f5b74", + "75a08def9808ed5b77b458d09c2fe99f2b52c433", + "b89bf1ef47240cff4d646caca6f8f9ca223c5ca4", + "bca18cba40a601bc462b7079a06ae486e41a3afa", + "11e0f3d3aecf631715b18581095d16c8b8f101e7", + "0b3a6f71850daf6414670e1893638acb809bc0b8", + "1ad0d7aa4b92b8bfcae0272a29609b27fc334ad9", + "0002316687f63f3b9b0155cb9272eca13aae63e3", + "747f1003ddf734b97b550d44b13c63ed71dc7986", + "c955f730781da63bf1d29480f5cb43b012ef430a", + "c8e5db16c9994affe8e1959fb76d58c3775d4075", + "cb63ee7f5d077a625fe93d292bbcf5a4b9dfc6a3", + "f2b725102b26185f179c7ccec5fba00f6b01f0a3", + "07f04cc3c7d1ddb4289469fdfa4740be0d0a82d2", + "67b805fc111706aca5b32d465c94d95659bab6aa", + "45912a6dc69ed04f1e7ef8ec3ecb4c9dc0860b6d", + "3f1fb7ed8b641542add19bb841e4e4be5651693e", + "0c5ccd18abda96efaed9e94e26ffe22def5e28ed", + "bf9fd885b2546e91fe3bab271aa481b070f47518", + "3cf6f08da562ee1bf6866fbc2db45a3c3af620ff", + "06e9a33d090d7d1d66ff4df0a423424c95f78123", + "66991c949f4352577d7d3bf83aa63abd8af15b95", + "33273e4258386ad1a073827b32a6346e37536adc", + "1dd731305ad709b792fb3bf345733d932ee426ed", + "b9af5d1234429fa0c3de856b20200335330bb882", + "3766941161b7a2e3cb4fed1441963e4317b7fb11", + "c097ad3e9e78f38699c6bec18f84b628f3fcde03", + "4d80d808b4425fa31e086985264385b02e98932e", + "859dbe27616c593238bad63be63e13a2d80579d9", + "ebb79803697acee75baf24073ef49af87ad7e483", + "593df8773d8deeff7d778fe39b59420ce293d7a5", + "9e3d5f29e2b6e2bcad3b0384e35e1faaa13e8272", + "503ec190a88da1dfa43294a98ef5530769095778", + "8e4b92d294c087423215a83b0e9c8282eedc9d12", + "e29071e4c9bf724f9679b7bcf2038d74cc44acd1", + "57f337a8e90360649112f8fc01d9ee2f9f2afa24", + "de124c32be47b01e2204269f26bd1f00ab15bb56", + "9de568372da86141ced85e4153494b0b159f2171", + "bc49677ec8aeed439c45832802918b36b1c04b5f", + "af18e92140f875f042325114108b8720d6836e96", + "ad355d4c9641953bb85c242c92f72f924edd4687", + "b794182ea7e57c9bde214bb9fd32040445a8ae38", + "d45cd2624848b185d10ab2f29b40fd581f407ac8", + "c74be11672cdf90cda60869961075965b02f213a", + "f6d64bd6ab3bf1a9587bbc13a00711029120d3e9", + "e7039f98449d0e39687aab14eda4b4383b3bce31", + "68e2c8ed69ce994a0da02c2dcf8b20a69f43c2b6", + "d55e5a9bde03235fbd796282e839966c5b39ec80", + "c6d76750e81af8a88dcda078916b4207b354bd83", + "f752b25fc43d5e79a4f1cd1878a51702e7fea977", + "bec21c71142ed44d8eb7d7ca5719c87d961044d0", + "34dc08c21429c613611f661e1ad160d4fbf7e5ec", + "2d385e166c2dff131ca21294216ce61eb62fd3c2", + "6471f8b31aba50c87d5616cc0a203160a80b5322", + "a28b32a8357b4bd67aa3ade5bb9a4e2ddb5cae1a", + "271d5cecf2e71f9ea171653306cc9ce7c6ec3f19", + "1fd2a6d328017c58f4863b76f430d4000cbfd1b5", + "98a62a62ce7e1e6e6100c6e888e9d2bd794378e2", + "d36a3ead3c896d0552207763ef483262bce9ac73", + "668703c23f8a6cde07c317f687d9b95606293752", + "ac67905fc44b2e4ebd1c295dfe73f87033c50826", + "51493157cd1fda08343e521ef47ee002009b8a40", + "3389fa554e953d07a12a34f5681aae46f17958f8", + "7db18c8241cfe40eee31539c086bb3f600d359c7", + "c9ae0f48a13022191285d998bf10234ccf20313a", + "96d2d2f68c07ef01650db1cba01071fbb2d98218", + "4417e4c193bf40e721c5bdf254b86904e3916b72", + "b2344d8fbc2b5b07b9eb06757fe5bbdecbb3107d", + "99c9be1d30ea78fad24d9eca8daa3526592a77b5", + "8030c3697019b32dd0fc2b232cea0c2c2574fe9d", + "a2a9e767f7fc5c4fa9dc6c91c6907612dda72cf3", + "52b359b24913ddab5d12d42f2f113b0e63843063", + "2d5c264ebc26c276ca6cc312389abde453ca69aa", + "10b408080a1009ca99be50cf8bc3fe45dfe7223b", + "aeac226d16523875a3fc77f61d6edcd2943155fc", + "57ab4c89e05d13b81722780ffc50eee0ea6cf445", + "a2ebe07b39823945aaedd4e1acbd70316ca13f1d", + "d8121f93c8df2e9066e929128886cae2fc81782b", + "0eb7e6d79b44b95d4aa6b22759322efcccde3521", + "2ca3810005f61bb033ccf6c48111e2aa4536b0e4", + "11bceb8f8bfdd8723da10bdcaa767a19d92a2a57", + "4231472c03e6c6e3374b1c19ef096ee28476f9dd", + "14272b21e95ed9a54fae21c27d33d3771a9ee30f", + "0ed2735d195d149766b242d972f95f3173ebc984", + "4d4837c4951375c877986e239304c95ebbe14633", + "8285cd278babadc98458194fb2dbc3ae7f00429c", + "80b65e99457344f5f05fb4948eb35c6b1d320e3f", + "6bcccb0ee6b875a41ed9e8fb7e299a6b98dd3faa", + "c143a86de8c5da3ae5127565b9ffe7094d2e5c28", + "ad2012d645b7146d31bb03f98e2bd9371635d11a", + "16d02ec77c6337ccea02a8c909e05bf3d905f887", + "d297616d3e6a27865fb327e7b4ea3d548f7fdb45", + "d46a98d31a9c32949580e6e3ce65b85772f3470d", + "7da4af622ffc68d7b687e61ba8f19163af50fab8", + "d81fcdf8ef3f2857db1a51b83a012638a7ecf0fb", + "4ae7930f58c980c1064f5c2f7a2e38b1058e0410", + "68db0bb5ec67635d3052ddae2ecb35cdea48263e", + "eaa050521872fbec075d7584a2d516f33c261431" ], "pr_numbers": [ - 15690, - 15771, - 15772, - 15919, - 16184, - 16192, - 16194, - 16201, - 16202, - 16238, - 16273, - 16284, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16455, - 16456, - 16457, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635 + 22668, + 23763, + 23767, + 24617, + 24619, + 24620, + 24621, + 24622, + 24812, + 24859, + 24979, + 24980, + 24983, + 25060, + 25087, + 25089, + 25096, + 25113, + 25121, + 25135, + 25149, + 25151, + 25156, + 25165, + 25167, + 25176, + 25266, + 25316, + 25329, + 25330, + 25400, + 25435, + 25457, + 25462, + 25469, + 25485, + 25490, + 25491, + 25492, + 25504, + 25509, + 25576, + 25577, + 25603, + 25623, + 25624, + 25625, + 25628, + 25636, + 25638, + 25644, + 25649, + 25654, + 25655, + 25659, + 25661, + 25668, + 25669, + 25675, + 25679, + 25680, + 25681, + 25682, + 25683, + 25684, + 25689, + 25690, + 25700, + 25701, + 25702, + 25705, + 25707, + 25712, + 25717, + 25720, + 25721, + 25722, + 25723, + 25724, + 25738, + 25739, + 25775, + 25782, + 25783, + 25785, + 25814, + 25840, + 25841, + 25844, + 25847, + 25850, + 25857, + 25858, + 25862, + 25867, + 25868, + 25887, + 25890, + 25906, + 25907, + 25909, + 25911, + 25915, + 25916, + 25923, + 25925, + 25926, + 25938, + 25943, + 25944, + 25946, + 25948, + 25949, + 25953, + 25959, + 25960, + 25963, + 25988, + 26002, + 26047, + 26074, + 26075, + 26106, + 26114, + 26122, + 26144, + 26147, + 26155, + 26156, + 26167, + 26172, + 26175, + 26176, + 26179, + 26189, + 26216, + 26226, + 26251, + 26252, + 26254, + 26260, + 26265, + 26272, + 26313, + 26367, + 26396 ], "status": "diverged", - "total_commits": 95, - "url": "https://github.com/openai/codex/compare/rust-v0.118.0...rust-v0.119.0-alpha.6" + "total_commits": 147, + "url": "https://github.com/openai/codex/compare/rust-v0.136.0...rust-v0.138.0-alpha.2" }, - "prerelease_tag_name": "rust-v0.119.0-alpha.6", - "stable_tag_name": "rust-v0.118.0", + "prerelease_tag_name": "rust-v0.138.0-alpha.2", + "stable_tag_name": "rust-v0.136.0", "tracked_signal_slugs": [ - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter" + "multiagentv2-followup-task-replaces-assign-task" ] }, { "compare": { - "ahead_by": 191, + "ahead_by": 140, "commit_shas": [ - "3360f128f46f2aed392dea0d9557d0bb9536d2c2", - "b6050b42ae7e13b1eb26e9732a1582bd3c055505", - "b3e069e8cbed9ef86a47335041632ddfb458b79f", - "9736fa5e3d5da08e20c533f07c30c2960475e19b", - "86764af684e9091963085f361daa3c521649bb76", - "b23789b770039bca614ac109f3600919c381fbcb", - "dfb36573cd0c6aed5a61d6e11ed6d34a34e160ff", - "609019c6e5a055914dc7d51b111d93db4bd342e1", - "b52abff279ffe57de90cabc536e30737002b7a73", - "5906c6a658d6b91ccd0963ee6741bdb559b8f78e", - "aea82c63eac85f5d5fd85de5ac79a0b1ff8369d4", - "c264c6eef975d4abaf67beefd60added71c90950", - "a27cd2d28150b71882847a8bfdc03d275e29a1eb", - "44d28f500f7f21fa13f0e9eea87544a6269efde7", - "e6e2999209a9a0c3c25a4d2f37aa73d0c400862e", - "81fa04783a551d7e2fc5cfdfc91921aaec3e64bb", - "d76124d656424cd9a15c9ef9e901fc1a9f3679c1", - "d838c23867f6fe2e3e43a0c82d25c17cb3730b1d", - "be5afc65d31728c11d67c589cebbc64a87979e74", - "41fe98b18538c60feeb779f8fad685a1b048da7b", - "21a03f16718dae1ca2f810c33b50c99b5634c931", - "dd30c8eedd171d2dda71c43fac27dc42f457da5f", - "47a9e2e084e21542821ab65aae91f2bd6bf17c07", - "2e849703cd8a2eaebff094ef2a5108a1393d02ed", - "2ef91b71406da6c88cad959d647915b4e7909f1f", - "6a0c4709ca2154e9f3ebb07e58fb156386630188", - "270b7655cd46e8f7573aea122f87b619b225a754", - "7d5d9f041b3c7817abf7874b386b1f68ec6872b4", - "2c85ca68429539ce27b346e573fbd07a18616c53", - "37b057f0030ab34f66dbb6eb6f8e7e7a3443407c", - "f044ca64df3f13faa679341aeb4469706c458f4d", - "2b71717ccf43e36453c2dbac3f02a4dd04e062be", - "426f28ca99a809134bbc9d4879789582f80093c1", - "ec089fd22aba2c8df074b8abfd42d286b38b399c", - "617475e54be4ac4bc3aca3868c979f157f5ca7ae", - "2616c7cf122d97514bf67dd2cc740fba9236d083", - "caee620a530bf65ad4a440909ef5dc64f2c8a3ae", - "15fbf9d4f5fcc224c4c97e015253aeef52939ed4", - "95845cf6ceb85a5793aeb227b5a03056cb508756", - "8002594ee3ad32bc7dd9c2465949212bef1c017d", - "81abb44f686359719da32974fc3ceec5c1c52db6", - "82e8031338a5a94172d985662ca1f0cd0a0d3bfb", - "16d4ea9ca8dd2f6ce586168467b568b2ac6973c1", - "c5778dfca27fe977e714aedc28997e5dce11cd86", - "465897dd0f3ab0732227ca2736c103f675f5d292", - "5b71e5104fec88a9982c55a6cf39623c28144540", - "307e427a9b82f47021ad1939dcf9c5d7495c2552", - "d65deec61718f291cba5a51de9489603865779df", - "f4f6eca871c3983dfee7c7873816179535534997", - "2ffb32db98b2c1ac83cb811e7ce1c0de2320c09d", - "8e24d5aaea1ca44bde08fe7f9b7a2541a4469fe6", - "ed977b42ac4f0b71ea218546153a751866f25b5b", - "61dfe0b86c75bb4e6c173a70ca9fb2f2daac2f67", - "71923f43a7ef8ed02531a885228257e9c5b87c7b", - "142681ef932eab1da27c2a501c60bc857e755a0e", - "5037a2d19924f2e49490453ab2a913da938afbe5", - "343d1af3da64fcfd52260149855159048e9c5178", - "f4d0cbfda61ad81559cb8d7b800b67fef2034748", - "e02fd6e1d3d0ee7a47780ab3efc1c769cd373337", - "b94366441ee80f4c583e321ebb181c4805dad736", - "e39ddc61b14a8c645124f5d45ab912989a02e5fb", - "bede1d9e23202e2fce23b2ad6d154255672a675b", - "3d1abf3f3d5c9f9bcc7b1d93ce509ae75e01214b", - "61429a6c1047244c91732e87b5898867853705f0", - "65f631c3d671d0328271b4462656d47f5003cde5", - "fce0f76d577b5070f1e2b4a2abaa8350acfc38ff", - "48144a7fa41e2343c7622f01e82eb6065e29b7b7", - "178d2b00b1da55e24a16695337bb1b78d6f5883c", - "bc53d42fd98c3e7bc74ece9ac31ddbe894b7a942", - "ae8a3be9585d0918fe38fa199c963aeb80ee4f55", - "4e27a87ec6e1ac95e5bc8a56e5687829e809270c", - "313fb959896b257ab1df2aa32adb8efc789806aa", - "c25c0d6e9efb143df91fe91e56c1bb05f09359bd", - "2238c16a914c9b7337b2bd87bc65972f8daf06d1", - "a16a9109d7c464be03c463074fbe2daaa465b727", - "f7ef9599eddade2c4d1763fcc04581315994dbc6", - "46b653e73c7900cc7fb2e06effc5cf305541aa76", - "4e119a3b38e4a4decfccb003acecabc4614142b6", - "3bbc1ce00395b6b31ed5940814a2dc4cf633228f", - "3807807f911532dffa64c25b66163b0f06360d47", - "7880414a2728514ea4aaa619cb5db0ffa807556d", - "54d3ad1edea9414ba87ffe164191fed69d79ed96", - "38e648ca67802d5f2fb23f9b3bd3f200cdb067fa", - "af568afdd5b18e06098f327850f8da351bf20350", - "bb95ec3ec602dfc7762fd92e2746606df9dfea21", - "213756c9ab22b567d426fe1be9757705fb5862c9", - "c74190a622667158e53b6d10fbfc0387ec43b964", - "716f7b0428de021cc03bfe88c4b5fadd122edd52", - "258ba436f1f784aa058625aec6b6653df83fe9c6", - "9313c49e4c0480189070a149da03b7b6164ebdce", - "28a9807f8403befd318fc6022872b087b2931ddb", - "390b644b212602ee58689e9d305ea50ee4a89d5a", - "19f0d196d11dcf31e02a4d022d099e6d3bcfad6e", - "ea650a91b31eef5b3b376ca4282686df242b9132", - "007196882993dbb987905acf30d450279cc8d560", - "20f43c1e05b2b3890a20521a8138aa53ddaf9837", - "873e46654937aa90eb009f3e09fbd859118f99f4", - "25fbd7e40e53b9896aa4cca0149cf220686f3663", - "ec21e1fd01dcc8ca503de4c1dc7b7e716a3bda9f", - "2b8d29ac0de716628f4522ab4bff3ab1e73b45a2", - "1fc8aa0e169c74b571960f529baafc17d686beda", - "4c72e62d0bf345a57749cfd867951be1a49162b6", - "285f4ea8176c74934e22fc9f78e216b9c7da429c", - "b09b58ce2d52e93930be9b22c185267657d74920", - "03b24655910323021de545fb69705611c65b493e", - "f396454097a189fc0c8b8b395b6b9244ca2c2abc", - "868ac158d7e7c3e4618e531d85595da53222d742", - "e8de4ea953423542e064993e8128872a41fc85fb", - "0fe873ad5f4d0a9e5c5cc78fa34ad1e3ac373b64", - "103acdfb062f8d1e30e64251cda8d02b93032e38", - "04ec9ef8af6f3e8d112b073deb8b5f25c056e6ac", - "9a8730f31e458850094f2e3b09479b7acd1457c5", - "424e532a6b1642358fa9e9a23c7e4af5550859ee", - "ae057e0bb9f3cde31c54fcca59a78456f7805282", - "2e942ce830bd4b3023a036728d8be0e432976ddd", - "dedd1c386a9bb2b4031d26b0494217a20868fb7a", - "d0474f2bc1eb246c206c1e9c02338f52bf8d992e", - "23d638a573ab0775c8e8c7f54db8e19ddbb10332", - "3152d1a5579e95c9a0521d7902a4cd71f38bbd7e", - "0c776c433b02ae4e07efc2db9eac0e55455630a3", - "df5f79da36e2c116b56607564fcb3c149e952307", - "609ac0c7ab3fade92f79e595e6e09d26a5397b5b", - "5bbfee69b6e7fbd519b7aa1d344304e26a647092", - "c846a57d032b977dbeab8b9f95e2b84fc692cb88", - "f839f3ff2ed9c4bf648a9a11708c2501fbc92d31", - "d3b99ef110e93a1da23a1d50a4dcfc2d01a806b3", - "5cca5c0093045051b400d2215bba2fb13e7c7443", - "75365bf718db0fb40ae02cf162d07d984cfe4556", - "e8d5c6b44642e6749ef1a05bd6aa7a75e9276241", - "dc263f5926f9457513d2508a4d1fc47bafe88137", - "9f0be146dbb4f6f45b632a469ca0eda3357ce52f", - "d1043ef90e406686e32664732ba3b2e91894731f", - "4d4767f7979ae7da6f64595c80d2bb8d6fdd0c49", - "a99d4845e368dec8944cb0ae0b68ca6fe4f59e70", - "323aa968c3f9b23856df93074a3000de7ba8030e", - "e6f5451a2c57264e50d081c62421e6269d1f0135", - "148dbb25f02a9f55c6afb0bb80202cd51d5201f6", - "1b711a550100a4f45472da753a8a8550ed2863ae", - "f83f3fa2a6bbac036c0ee41846c526fa50aeae3d", - "30f6786d62e54a2a5a35520b0e4701f364d8f112", - "6cf832fc63b7453fa8f4be3c295191cab03c1c8a", - "59b68f5519cc43270c1eb6dc2d9fbd1dd4a13b8a", - "d4464125c5059268f5b47619bf87fac3d24b9fcc", - "d7e5bc6a3aa18e57b84e2052d5ef607d2bae3413", - "5a2f3a81028d762a1bda011ddd63d197e2d4c19b", - "74d7149130fc0b63e48cb8b151afa15f14d2e8ab", - "0b856a4757f8c1c5685b2f34826c733caa5b18d1", - "c2699c666ccee395b25b0b48885787ca165840b9", - "d1068e057a2fae156eef53fa446baae786255505", - "cb9ef06eccb5ccf514cc07eb77f93ef21f74b89a", - "e19b35136417d151ce09ca4a59d42dbdee4d7d09", - "7c1c633f3f8e4d7a15ef9440a669ef0b1f5d9491", - "1b5a16f05eb9e7c19ae6390bac9d7c817c860678", - "cc97982bbb8b0e1acb8e6c296f5092273d59e59e", - "9f71d57a655628c3fdd20301a62df4446df2a924", - "aa2403e2eb4126a6bebb50b9db8d943510bd37b9", - "52e779d35dc1af1c8682e1a87aaec20d7fd5c3d0", - "828b837235f0bf6adaf4f8648951bf60c722e86b", - "5131e0de4524d28f3e9bd848de035b557c21eeff", - "f32a5e84bf925db613c1738052aa96bfc1f954f6", - "e846fed2b1755cab6c1d5a656a49db76b2778e91", - "c1d18ceb6f22ae3acd67bbd6badad0f475b31dfc", - "97df35c74fcb042ab5568d6f8fa8c88ca3cea8ed", - "627299c5511cc3ce7513dfa6a3751c2f04b89c9e", - "bd50496411a827a0f48d50d34ef950bd03817f96", - "e47ed5e57f299df15a3e40e413171ed331def8cd", - "ab6cce62b8a7c12c35a2f91a3373b66d2a828a1d", - "ea27d861b21c0540b323bf925feba634eafdd6ef", - "7fc36249b5f8661fd067018282e68c12a3ae0912", - "a0988341483676caa019a5e288f69e45c5d5c058", - "95b0b5a20468dae4d225a82e9a316119c2752b06", - "1d8a22e9dd7008c5e5dbde1a381cf44b81cdad2c", - "2146e1b82d18e536911bd8bfa93087381a38c17a", - "f894c3f687b3e036dec0071936292ffa1c38e711", - "5d64e58a380382f1020a1443f3d8a12d07cb966a", - "cb8dc18a64d1457d660357bae6bf7cdca896dca8", - "30ee9e769e8f32eb0f57399fec5c18a981438d53", - "c0f2fed67e54cd6ca700e94161989f2f338adf8d", - "f5d39a88ce0997a6477e23899b03d56903d4e6d5", - "57b98bc4cdce713824fed159614a107814315a4d", - "93380a6fac0e97e5f653d3bf591c503d8bfd05d6", - "9bb7f0a6947c06fdebc99151bbeff570a11d5657", - "0bd31dc382bd1c33dc2bb6b97069c76aa10ba14b", - "3c7f013f9735e67796c70d95f75f436b7f97e3ec", - "7a3eec6fdb356bd71f80582119eb829179ff0da1", - "95e809c135344747008ae84c7b328399d29f1946", - "cb9fb562a46c2217ff0386bb487932db828b3cda", - "862158b9e990f06c64419258f7ec661b94a4f8a1", - "beb3978a3ba15c631d6844a967b05e0b68a3a196", - "6db6de031aaa2c30c690ab9749aee449d653e236", - "51591e8d4e4d1595234ae980f4c7a7a95b292f5a" + "2f0726ad6d5939e5e79b4df6fcb71f79a5fdf48f", + "e93dc98a48d597df322436ffe8d03bfd7ec63b3b", + "5f60b013524c6fbdc597417c15c1e1ee96244176", + "20debf746bb6bd954549c615c5ea806ad3c30377", + "8a556296f0b222412be75db039724d1cac624217", + "3b7334d099b339e7b18418a0cf7ac34e7bed2e43", + "cf0911076f234e0219bd8d61dd3bc2f80a2df287", + "8d49394febc57518479ece9e3dc5eb9060ac6968", + "f1b1b64005cd477dd4821dfac8bc72097297ee96", + "c875bc8a333eb492b104d8c9abb2bf4cbde195b7", + "48c16b8bcbbba54201c3ea4ea3495acd1bd52c50", + "f27bbbd49c0e05e763a96cc7fa677499de32b8d8", + "a8a6071279b6f3112fcc5fc3fee69c48473d7149", + "4eded02f527b90e663764cb5c194f881c4dfd1bc", + "c0ea566bb52908915fecb2569869bbe380f22468", + "13edafb6edff2be9bf57f38524638da4c23155d9", + "12c37a6b5cdb3fff2c03a355ca9948866bf1df07", + "f94c49cf465b7403f22894f2db1432dee66fd64e", + "66814464779ee531ac3be8c40bb6f5fe7d38fb38", + "f1d029cf75e04246c4b30bf93e47d036ba394fb5", + "3cdce5286591fc96e4336d130f71eda11da17382", + "01cb97851b1634d33b9bbb8e184111611c39b7b5", + "8b759b9c18f10b3842b8be4d371ce1c8414959eb", + "2bf1c986f92542ca73298867195855872a237a6a", + "795031621ddf23fe89be4de640ed6f524e9b560d", + "e6eb462f07ae44f4bcb5280f16a516a355c4f2c5", + "917a9a41a3b463fefc50fad51d653ff7f4243701", + "fb94703b21571a577ba52efa5f7303946ef3cecd", + "6ddb747e7687e9e6e3a2482631028c07ddc89cb6", + "9756316d89968945212cd5f958b2b972c77c9e09", + "88c7a4ff074df9e2161c947ca6d91bf824b9d6e6", + "ba2b67f9cda954bcdda43c2a65ac58e807b996bd", + "c3cdf3c00793252cd93dd9790679ee49d1bd40b3", + "281b416c441d3744c07c7c26aae73ee69dd39418", + "f1609d9fb6ee42fdd8ef475992a09a5e2c082ef5", + "53ac02356e5a7223d90b21253f3e4f6c592fb656", + "009e6c4817c6cf1a9795bb2a57e4f7c7f191f897", + "d6748f741a188f5f681c69d26c258c2a3a409f1b", + "feb9eddc513c318adbda63bd953c1684deb6d8a3", + "9f4fac8ec4e74318ae272afedd118fc635a1023d", + "a29a5b08615d2d965dc4e6a90405a70d99306d26", + "7c285f9e9c85b4b9c3819210564fc039e9b5304a", + "f0e15b916ff0aa56f25d0b8a9e519a39c297b9f1", + "433ac84102cbb6203180e5b5cd55645d117a74c7", + "6ae99fd35ffdc318508fb80062fda0b9ff53579d", + "6536841d894b3425e3dcf638c9b64678a4db8177", + "b3c415703452dc068f8e68265ee72c7887a7d1c1", + "8ee49a2f74e9c352c45420bc97676a56fdd4992f", + "8d720feb698341c9a1599253d5e903cd99c603cb", + "4e540b107690989ea20832f85cd7f121492f5b74", + "75a08def9808ed5b77b458d09c2fe99f2b52c433", + "b89bf1ef47240cff4d646caca6f8f9ca223c5ca4", + "bca18cba40a601bc462b7079a06ae486e41a3afa", + "11e0f3d3aecf631715b18581095d16c8b8f101e7", + "0b3a6f71850daf6414670e1893638acb809bc0b8", + "1ad0d7aa4b92b8bfcae0272a29609b27fc334ad9", + "0002316687f63f3b9b0155cb9272eca13aae63e3", + "747f1003ddf734b97b550d44b13c63ed71dc7986", + "c955f730781da63bf1d29480f5cb43b012ef430a", + "c8e5db16c9994affe8e1959fb76d58c3775d4075", + "cb63ee7f5d077a625fe93d292bbcf5a4b9dfc6a3", + "f2b725102b26185f179c7ccec5fba00f6b01f0a3", + "07f04cc3c7d1ddb4289469fdfa4740be0d0a82d2", + "67b805fc111706aca5b32d465c94d95659bab6aa", + "45912a6dc69ed04f1e7ef8ec3ecb4c9dc0860b6d", + "3f1fb7ed8b641542add19bb841e4e4be5651693e", + "0c5ccd18abda96efaed9e94e26ffe22def5e28ed", + "bf9fd885b2546e91fe3bab271aa481b070f47518", + "3cf6f08da562ee1bf6866fbc2db45a3c3af620ff", + "06e9a33d090d7d1d66ff4df0a423424c95f78123", + "66991c949f4352577d7d3bf83aa63abd8af15b95", + "33273e4258386ad1a073827b32a6346e37536adc", + "1dd731305ad709b792fb3bf345733d932ee426ed", + "b9af5d1234429fa0c3de856b20200335330bb882", + "3766941161b7a2e3cb4fed1441963e4317b7fb11", + "c097ad3e9e78f38699c6bec18f84b628f3fcde03", + "4d80d808b4425fa31e086985264385b02e98932e", + "859dbe27616c593238bad63be63e13a2d80579d9", + "ebb79803697acee75baf24073ef49af87ad7e483", + "593df8773d8deeff7d778fe39b59420ce293d7a5", + "9e3d5f29e2b6e2bcad3b0384e35e1faaa13e8272", + "503ec190a88da1dfa43294a98ef5530769095778", + "8e4b92d294c087423215a83b0e9c8282eedc9d12", + "e29071e4c9bf724f9679b7bcf2038d74cc44acd1", + "57f337a8e90360649112f8fc01d9ee2f9f2afa24", + "de124c32be47b01e2204269f26bd1f00ab15bb56", + "9de568372da86141ced85e4153494b0b159f2171", + "bc49677ec8aeed439c45832802918b36b1c04b5f", + "af18e92140f875f042325114108b8720d6836e96", + "ad355d4c9641953bb85c242c92f72f924edd4687", + "b794182ea7e57c9bde214bb9fd32040445a8ae38", + "d45cd2624848b185d10ab2f29b40fd581f407ac8", + "c74be11672cdf90cda60869961075965b02f213a", + "f6d64bd6ab3bf1a9587bbc13a00711029120d3e9", + "e7039f98449d0e39687aab14eda4b4383b3bce31", + "68e2c8ed69ce994a0da02c2dcf8b20a69f43c2b6", + "d55e5a9bde03235fbd796282e839966c5b39ec80", + "c6d76750e81af8a88dcda078916b4207b354bd83", + "f752b25fc43d5e79a4f1cd1878a51702e7fea977", + "bec21c71142ed44d8eb7d7ca5719c87d961044d0", + "34dc08c21429c613611f661e1ad160d4fbf7e5ec", + "2d385e166c2dff131ca21294216ce61eb62fd3c2", + "6471f8b31aba50c87d5616cc0a203160a80b5322", + "a28b32a8357b4bd67aa3ade5bb9a4e2ddb5cae1a", + "271d5cecf2e71f9ea171653306cc9ce7c6ec3f19", + "1fd2a6d328017c58f4863b76f430d4000cbfd1b5", + "98a62a62ce7e1e6e6100c6e888e9d2bd794378e2", + "d36a3ead3c896d0552207763ef483262bce9ac73", + "668703c23f8a6cde07c317f687d9b95606293752", + "ac67905fc44b2e4ebd1c295dfe73f87033c50826", + "51493157cd1fda08343e521ef47ee002009b8a40", + "3389fa554e953d07a12a34f5681aae46f17958f8", + "7db18c8241cfe40eee31539c086bb3f600d359c7", + "c9ae0f48a13022191285d998bf10234ccf20313a", + "96d2d2f68c07ef01650db1cba01071fbb2d98218", + "4417e4c193bf40e721c5bdf254b86904e3916b72", + "b2344d8fbc2b5b07b9eb06757fe5bbdecbb3107d", + "99c9be1d30ea78fad24d9eca8daa3526592a77b5", + "8030c3697019b32dd0fc2b232cea0c2c2574fe9d", + "a2a9e767f7fc5c4fa9dc6c91c6907612dda72cf3", + "52b359b24913ddab5d12d42f2f113b0e63843063", + "2d5c264ebc26c276ca6cc312389abde453ca69aa", + "10b408080a1009ca99be50cf8bc3fe45dfe7223b", + "aeac226d16523875a3fc77f61d6edcd2943155fc", + "57ab4c89e05d13b81722780ffc50eee0ea6cf445", + "a2ebe07b39823945aaedd4e1acbd70316ca13f1d", + "d8121f93c8df2e9066e929128886cae2fc81782b", + "0eb7e6d79b44b95d4aa6b22759322efcccde3521", + "2ca3810005f61bb033ccf6c48111e2aa4536b0e4", + "11bceb8f8bfdd8723da10bdcaa767a19d92a2a57", + "4231472c03e6c6e3374b1c19ef096ee28476f9dd", + "14272b21e95ed9a54fae21c27d33d3771a9ee30f", + "0ed2735d195d149766b242d972f95f3173ebc984", + "4d4837c4951375c877986e239304c95ebbe14633", + "8285cd278babadc98458194fb2dbc3ae7f00429c", + "80b65e99457344f5f05fb4948eb35c6b1d320e3f", + "6bcccb0ee6b875a41ed9e8fb7e299a6b98dd3faa", + "c143a86de8c5da3ae5127565b9ffe7094d2e5c28", + "ad2012d645b7146d31bb03f98e2bd9371635d11a", + "62cb0542be499ba913b3e6dab08927e615e741a0" ], "pr_numbers": [ - 12220, - 14495, - 15067, - 15120, - 15522, - 15525, - 15690, - 15771, - 15772, - 15791, - 15811, - 15828, - 15876, - 15891, - 15897, - 15898, - 15900, - 15903, - 15906, - 15909, - 15910, - 15917, - 15918, - 15919, - 15921, - 15922, - 15923, - 15928, - 15931, - 15933, - 15934, - 15944, - 15946, - 15948, - 15952, - 15953, - 15954, - 15955, - 15973, - 15985, - 15986, - 15995, - 15996, - 15998, - 15999, - 16000, - 16001, - 16010, - 16013, - 16014, - 16021, - 16026, - 16027, - 16030, - 16031, - 16035, - 16036, - 16041, - 16044, - 16046, - 16047, - 16050, - 16054, - 16057, - 16063, - 16067, - 16071, - 16072, - 16074, - 16080, - 16104, - 16106, - 16109, - 16110, - 16112, - 16114, - 16115, - 16116, - 16118, - 16120, - 16126, - 16128, - 16129, - 16130, - 16132, - 16136, - 16137, - 16138, - 16141, - 16154, - 16184, - 16192, - 16193, - 16194, - 16201, - 16202, - 16204, - 16225, - 16237, - 16238, - 16253, - 16254, - 16273, - 16279, - 16284, - 16286, - 16287, - 16288, - 16308, - 16317, - 16318, - 16322, - 16324, - 16325, - 16330, - 16345, - 16351, - 16353, - 16356, - 16361, - 16363, - 16366, - 16375, - 16378, - 16379, - 16406, - 16409, - 16419, - 16422, - 16424, - 16425, - 16426, - 16427, - 16433, - 16434, - 16448, - 16449, - 16455, - 16456, - 16457, - 16467, - 16469, - 16471, - 16473, - 16477, - 16480, - 16481, - 16482, - 16492, - 16493, - 16495, - 16497, - 16498, - 16499, - 16503, - 16504, - 16509, - 16510, - 16512, - 16513, - 16516, - 16521, - 16523, - 16524, - 16529, - 16559, - 16561, - 16564, - 16566, - 16567, - 16569, - 16571, - 16577, - 16578, - 16581, - 16588, - 16590, - 16591, - 16596, - 16601, - 16604, - 16606, - 16608, - 16613, - 16616, - 16617, - 16629, - 16630, - 16631, - 16633, - 16634, - 16635 + 22668, + 23763, + 23767, + 24617, + 24619, + 24620, + 24621, + 24622, + 24812, + 24859, + 24979, + 24980, + 24983, + 25060, + 25087, + 25089, + 25096, + 25113, + 25121, + 25135, + 25149, + 25151, + 25156, + 25165, + 25167, + 25176, + 25266, + 25316, + 25329, + 25330, + 25400, + 25435, + 25457, + 25462, + 25469, + 25485, + 25490, + 25491, + 25492, + 25504, + 25509, + 25576, + 25577, + 25603, + 25623, + 25624, + 25625, + 25628, + 25636, + 25638, + 25644, + 25649, + 25654, + 25655, + 25659, + 25661, + 25668, + 25669, + 25675, + 25679, + 25680, + 25681, + 25682, + 25683, + 25684, + 25689, + 25690, + 25700, + 25701, + 25702, + 25705, + 25707, + 25712, + 25717, + 25720, + 25721, + 25722, + 25723, + 25724, + 25738, + 25739, + 25775, + 25782, + 25783, + 25785, + 25814, + 25840, + 25841, + 25844, + 25847, + 25850, + 25857, + 25858, + 25862, + 25867, + 25868, + 25887, + 25890, + 25906, + 25907, + 25909, + 25911, + 25915, + 25916, + 25923, + 25925, + 25926, + 25938, + 25943, + 25944, + 25946, + 25948, + 25949, + 25953, + 25959, + 25960, + 25963, + 25988, + 26002, + 26047, + 26074, + 26075, + 26106, + 26114, + 26122, + 26144, + 26155, + 26156, + 26167, + 26175, + 26176, + 26179, + 26189, + 26216, + 26226, + 26251, + 26252, + 26254, + 26260 ], "status": "diverged", - "total_commits": 191, - "url": "https://github.com/openai/codex/compare/rust-v0.117.0...rust-v0.119.0-alpha.6" + "total_commits": 140, + "url": "https://github.com/openai/codex/compare/rust-v0.136.0...rust-v0.138.0-alpha.1" }, - "prerelease_tag_name": "rust-v0.119.0-alpha.6", - "stable_tag_name": "rust-v0.117.0", + "prerelease_tag_name": "rust-v0.138.0-alpha.1", + "stable_tag_name": "rust-v0.136.0", "tracked_signal_slugs": [ - "windows-tui-builds-stop-tripping-cfg-mismatched-local-binding", - "codex-core-sessiontask-builds-get-materially-lighter", - "wait-agent-no-longer-needs-targets", - "windows-mcp-startup-warning-snapshots-now-normalize-rendered-paths" + "multiagentv2-followup-task-replaces-assign-task" ] } ], - "generated_at": "2026-06-02T02:34:53Z", + "generated_at": "2026-06-05T09:07:58.572455Z", "prerelease": { - "name": "0.136.0-alpha.2", + "name": "0.138.0-alpha.4", "prerelease": true, - "published_at": "2026-05-31T19:40:07Z", - "tag_name": "rust-v0.136.0-alpha.2", - "url": "https://github.com/openai/codex/releases/tag/rust-v0.136.0-alpha.2" + "published_at": "2026-06-04T22:01:10Z", + "tag_name": "rust-v0.138.0-alpha.4", + "url": "https://github.com/openai/codex/releases/tag/rust-v0.138.0-alpha.4" }, "release_options": { "preview": [ { - "name": "0.136.0-alpha.2", - "prerelease": true, - "published_at": "2026-05-31T19:40:07Z", - "tag_name": "rust-v0.136.0-alpha.2", - "url": "https://github.com/openai/codex/releases/tag/rust-v0.136.0-alpha.2" - }, - { - "name": "0.119.0-alpha.13", - "prerelease": true, - "published_at": "2026-04-07T00:32:46Z", - "tag_name": "rust-v0.119.0-alpha.13", - "url": "https://github.com/openai/codex/releases/tag/rust-v0.119.0-alpha.13" - }, - { - "name": "0.119.0-alpha.12", - "prerelease": true, - "published_at": "2026-04-06T19:39:20Z", - "tag_name": "rust-v0.119.0-alpha.12", - "url": "https://github.com/openai/codex/releases/tag/rust-v0.119.0-alpha.12" - }, - { - "name": "0.119.0-alpha.9", - "prerelease": true, - "published_at": "2026-04-04T02:10:25Z", - "tag_name": "rust-v0.119.0-alpha.9", - "url": "https://github.com/openai/codex/releases/tag/rust-v0.119.0-alpha.9" - }, - { - "name": "0.119.0-alpha.11", + "name": "0.138.0-alpha.4", "prerelease": true, - "published_at": "2026-04-04T06:48:14Z", - "tag_name": "rust-v0.119.0-alpha.11", - "url": "https://github.com/openai/codex/releases/tag/rust-v0.119.0-alpha.11" + "published_at": "2026-06-04T22:01:10Z", + "tag_name": "rust-v0.138.0-alpha.4", + "url": "https://github.com/openai/codex/releases/tag/rust-v0.138.0-alpha.4" }, { - "name": "0.119.0-alpha.10", + "name": "0.138.0-alpha.3", "prerelease": true, - "published_at": "2026-04-04T03:10:33Z", - "tag_name": "rust-v0.119.0-alpha.10", - "url": "https://github.com/openai/codex/releases/tag/rust-v0.119.0-alpha.10" + "published_at": "2026-06-04T20:18:28Z", + "tag_name": "rust-v0.138.0-alpha.3", + "url": "https://github.com/openai/codex/releases/tag/rust-v0.138.0-alpha.3" }, { - "name": "0.119.0-alpha.8", + "name": "0.138.0-alpha.2", "prerelease": true, - "published_at": "2026-04-03T08:11:23Z", - "tag_name": "rust-v0.119.0-alpha.8", - "url": "https://github.com/openai/codex/releases/tag/rust-v0.119.0-alpha.8" + "published_at": "2026-06-04T17:26:28Z", + "tag_name": "rust-v0.138.0-alpha.2", + "url": "https://github.com/openai/codex/releases/tag/rust-v0.138.0-alpha.2" }, { - "name": "0.119.0-alpha.7", + "name": "0.138.0-alpha.1", "prerelease": true, - "published_at": "2026-04-03T06:52:11Z", - "tag_name": "rust-v0.119.0-alpha.7", - "url": "https://github.com/openai/codex/releases/tag/rust-v0.119.0-alpha.7" - }, - { - "name": "0.119.0-alpha.6", - "prerelease": true, - "published_at": "2026-04-03T03:19:00Z", - "tag_name": "rust-v0.119.0-alpha.6", - "url": "https://github.com/openai/codex/releases/tag/rust-v0.119.0-alpha.6" + "published_at": "2026-06-04T05:02:54Z", + "tag_name": "rust-v0.138.0-alpha.1", + "url": "https://github.com/openai/codex/releases/tag/rust-v0.138.0-alpha.1" } ], "stable": [ + { + "name": "0.137.0", + "prerelease": false, + "published_at": "2026-06-04T01:17:20Z", + "tag_name": "rust-v0.137.0", + "url": "https://github.com/openai/codex/releases/tag/rust-v0.137.0" + }, { "name": "0.136.0", "prerelease": false, "published_at": "2026-06-01T17:49:22Z", "tag_name": "rust-v0.136.0", "url": "https://github.com/openai/codex/releases/tag/rust-v0.136.0" - }, - { - "name": "0.118.0", - "prerelease": false, - "published_at": "2026-03-31T17:02:18Z", - "tag_name": "rust-v0.118.0", - "url": "https://github.com/openai/codex/releases/tag/rust-v0.118.0" - }, - { - "name": "0.117.0", - "prerelease": false, - "published_at": "2026-03-26T22:27:39Z", - "tag_name": "rust-v0.117.0", - "url": "https://github.com/openai/codex/releases/tag/rust-v0.117.0" - }, - { - "name": "0.116.0", - "prerelease": false, - "published_at": "2026-03-19T17:51:35Z", - "tag_name": "rust-v0.116.0", - "url": "https://github.com/openai/codex/releases/tag/rust-v0.116.0" } ] }, "repo": "openai/codex", "schema": "release_delta/v1", "stable_release": { - "name": "0.136.0", + "name": "0.137.0", "prerelease": false, - "published_at": "2026-06-01T17:49:22Z", - "tag_name": "rust-v0.136.0", - "url": "https://github.com/openai/codex/releases/tag/rust-v0.136.0" + "published_at": "2026-06-04T01:17:20Z", + "tag_name": "rust-v0.137.0", + "url": "https://github.com/openai/codex/releases/tag/rust-v0.137.0" }, "tag_prefix": "rust-v", "tracked_signal_slugs": [] From 54c20328f636a49dcaa443e70810d1a590f39a17 Mon Sep 17 00:00:00 2001 From: Yvette Carlisle Date: Fri, 5 Jun 2026 17:28:32 +0800 Subject: [PATCH 2/3] {"schema":"decodex/commit/1","summary":"Clarify benchmark account boundary","authority":"manual"} --- .../openai-codex-app-26-602.json | 12 +++---- ...ust-v0-138-0-alpha-4-prerelease-delta.json | 9 ++--- dev/skills/codex-release-analysis/SKILL.md | 19 ++++++----- dev/skills/x-post-publisher/SKILL.md | 23 ++++++------- dev/skills/x-post-quality-system/SKILL.md | 34 ++++++++++--------- docs/runbook/social-publishing-workflow.md | 26 +++++++------- docs/spec/social-publishing.md | 4 +-- 7 files changed, 61 insertions(+), 66 deletions(-) diff --git a/artifacts/github/social-candidates/openai-codex-app-26-602.json b/artifacts/github/social-candidates/openai-codex-app-26-602.json index 98c5cbe..3317f56 100644 --- a/artifacts/github/social-candidates/openai-codex-app-26-602.json +++ b/artifacts/github/social-candidates/openai-codex-app-26-602.json @@ -12,17 +12,14 @@ ], "source_refs": { "urls": [ - "https://developers.openai.com/codex/changelog", - "https://x.com/CodexReleases/status/2062672204207366488", - "https://x.com/Codex_Changelog/status/2062678248790589520" + "https://developers.openai.com/codex/changelog" ] }, "evidence_notes": [ "The official Codex changelog lists Codex app updates 26.602 on 2026-06-04.", "The changelog says activity insights and share cards were added to the Profile section, with sharing available on consumer ChatGPT plans.", "The changelog says Computer Use startup readiness and appshot error reporting improved.", - "The changelog says browser and review UI issues were fixed and onboarding was expanded with more role choices.", - "Read-only X benchmark sampling on 2026-06-05 showed @CodexReleases and @Codex_Changelog both covered Codex app 26.602 quickly; those posts were used for format and coverage calibration only." + "The changelog says browser and review UI issues were fixed and onboarding was expanded with more role choices." ], "claims": [ { @@ -43,12 +40,11 @@ ], "decision": { "worthiness": "publish", - "reason": "The official changelog has concrete user-visible app changes, and benchmark readback shows this update is timely enough for a source-led release pulse.", + "reason": "The official changelog has concrete user-visible app changes and enough reader value for a source-led release pulse.", "idempotency_key": "x:decodexspace:codex-app-26-602:release_pulse" }, "caveats": [ - "Sharing for profile cards is described as available on consumer ChatGPT plans.", - "Do not use X benchmark posts as technical evidence for the listed changes." + "Sharing for profile cards is described as available on consumer ChatGPT plans." ], "media_refs": [ "/Users/x/.codex/decodex/social-media/codex-app-26-602.png" diff --git a/artifacts/github/social-candidates/openai-codex-rust-v0-138-0-alpha-4-prerelease-delta.json b/artifacts/github/social-candidates/openai-codex-rust-v0-138-0-alpha-4-prerelease-delta.json index 318098a..a402e16 100644 --- a/artifacts/github/social-candidates/openai-codex-rust-v0-138-0-alpha-4-prerelease-delta.json +++ b/artifacts/github/social-candidates/openai-codex-rust-v0-138-0-alpha-4-prerelease-delta.json @@ -24,9 +24,7 @@ "https://github.com/openai/codex/pull/26444", "https://github.com/openai/codex/pull/26446", "https://github.com/openai/codex/pull/26447", - "https://github.com/openai/codex/pull/26312", - "https://x.com/CodexReleases", - "https://x.com/Codex_Changelog" + "https://github.com/openai/codex/pull/26312" ] }, "evidence_notes": [ @@ -37,8 +35,7 @@ "The missing alpha.3 quote target is a historical Publisher coverage gap; the candidate must not invent a quote URL.", "The alpha.3 -> alpha.4 commit titles cluster around model-defined reasoning efforts, model-advertised effort order, response.processed websocket removal, experimentalFeature/enablement/set cleanup, AGENTS.md environment filesystem routing, Windows sandbox lint, and release binary ThinLTO.", "Public copy uses direct GitHub PR URLs on first mention instead of raw PR-number-only references.", - "A fresh candidate-specific Decodex signal card was generated and visually reviewed at /Users/x/.codex/decodex/social-media/codex-cli-0-138-alpha3-alpha4.svg.png.", - "Read-only X benchmark sampling on 2026-06-05 showed @CodexReleases and @Codex_Changelog covering Codex app 26.602 and CLI 0.137.0, but not visible prerelease interpretation for 0.138.0-alpha.4." + "A fresh candidate-specific Decodex signal card was generated and visually reviewed at /Users/x/.codex/decodex/social-media/codex-cli-0-138-alpha3-alpha4.svg.png." ], "claims": [ { @@ -69,7 +66,7 @@ ], "decision": { "worthiness": "publish", - "reason": "Benchmark accounts are not visibly covering prerelease interpretation, and the adjacent alpha.3 -> alpha.4 compare supports a useful, formatted prerelease delta read with clickable PR URLs and explicit channel-lineage caveats.", + "reason": "The adjacent alpha.3 -> alpha.4 compare supports a useful, formatted prerelease delta read with clickable PR URLs and explicit channel-lineage caveats.", "idempotency_key": "x:decodexspace:openai-codex-rust-v0-138-0-alpha-4:alpha3-alpha4:thread" }, "caveats": [ diff --git a/dev/skills/codex-release-analysis/SKILL.md b/dev/skills/codex-release-analysis/SKILL.md index 40c118a..11c6bca 100644 --- a/dev/skills/codex-release-analysis/SKILL.md +++ b/dev/skills/codex-release-analysis/SKILL.md @@ -29,8 +29,10 @@ evidence. - Official Codex changelog entries from `https://developers.openai.com/codex/changelog` when the update is app-shaped, mobile-shaped, or otherwise not represented by an `openai/codex` GitHub release -- Current read-only benchmark observations from `@CodexReleases` and - `@Codex_Changelog` for format and coverage gaps only, never as technical evidence +- Historical style lessons from `@CodexReleases` and `@Codex_Changelog` only when + they are already encoded in repo docs or supplied by the operator. Recurring + automation must not browse those accounts, use their coverage as evidence, or decide + publish/skip state from whether they posted. This advisory pass does not replace deterministic `release_delta/v1` generation. @@ -78,11 +80,10 @@ source-backed artifacts plus release/compare metadata. latest checkpoint but source analysis is incomplete, emit an explicit watch decision: either a source-backed `watch_note` candidate that says only what is proven, or a durable `needs_upstream_analysis` / no-op record with the gap list. -- Treat prerelease interpretation as Decodex's differentiated lane. Benchmark accounts - often cover stable releases and app changelogs quickly but usually do not explain - prerelease direction. Decodex should use release metadata, compare metadata, PR - titles, and existing Radar artifacts to produce early theme reads that are better - than release-bot reposts while keeping alpha caveats explicit. +- Treat prerelease interpretation as Decodex's differentiated lane because official + release metadata, compare metadata, PR titles, and existing Radar artifacts can + support early theme reads. The advantage comes from source-backed interpretation, not + from reading or reacting to other accounts' coverage. ## Release Rollup Path @@ -135,8 +136,8 @@ When the target is an OpenAI Codex prerelease: When the target is an official Codex app or mobile changelog entry: 1. Read the current official changelog entry and preserve the version/date. -2. Check whether `@CodexReleases` or `@Codex_Changelog` already covered it; use that - only to calibrate format and urgency. +2. Use repo-local style lessons only; do not read benchmark accounts or use their + coverage to decide urgency or skipping. 3. Use `release_pulse` for a source-led update card when the changelog lists concrete user-visible changes. 4. Use `watch_note` when the changelog is useful but platform, plan, or rollout limits diff --git a/dev/skills/x-post-publisher/SKILL.md b/dev/skills/x-post-publisher/SKILL.md index 04ccd35..1fa4753 100644 --- a/dev/skills/x-post-publisher/SKILL.md +++ b/dev/skills/x-post-publisher/SKILL.md @@ -48,7 +48,11 @@ or upstream-impact evidence. ## Benchmark Patterns -Use these as format patterns only: +Use these as format patterns only. Historical observations from `@CodexReleases` and +`@Codex_Changelog` may inspire layout and scanability only when already encoded in repo +docs or supplied by the operator. Recurring automation must not browse or sample those +accounts, must not use their coverage as evidence, and must not decide publish/skip +state from whether they posted. | Pattern | Good for | Decodex adaptation | | --- | --- | --- | @@ -58,17 +62,12 @@ Use these as format patterns only: | Human workflow read | `practical_explainer` and `operator_impact`. | Start with the concrete workflow change, then explain why it matters and what caveat remains. | | Watch note | Interesting but incomplete evidence. | Say what changed, why Radar is watching, and what evidence is still missing. | -Refresh the benchmark sample when publishing about a current Codex app, mobile, CLI, or -prerelease update. `@CodexReleases` and `@Codex_Changelog` often cover the same updates -quickly; Decodex must either add sharper source-backed value or publish a concise, -honest watch note. Do not skip an official app update just because the source is the -OpenAI changelog rather than GitHub. - -For prereleases, Decodex should try to be better than the benchmark accounts. If they -do not cover prereleases, publish a careful prerelease read when compare metadata and -PR titles reveal useful direction. Keep it as a thread when necessary, but make the -thread concrete: important PR/commit clusters, anticipated workflow changes, -protocol/API/schema changes, operator-facing changes, then source/caveat. +Do not skip an official app update just because the source is the OpenAI changelog +rather than GitHub. For prereleases, Decodex should provide source-backed +interpretation beyond release-bot reposts when compare metadata and PR titles reveal +useful direction. Keep it as a thread when necessary, but make the thread concrete: +important PR/commit clusters, anticipated workflow changes, protocol/API/schema +changes, operator-facing changes, then source/caveat. Keep release and prerelease channels separate. Stable release posts compare the current stable release to the previous stable release. Prerelease posts compare the current diff --git a/dev/skills/x-post-quality-system/SKILL.md b/dev/skills/x-post-quality-system/SKILL.md index e0de911..bbf3124 100644 --- a/dev/skills/x-post-quality-system/SKILL.md +++ b/dev/skills/x-post-quality-system/SKILL.md @@ -20,27 +20,29 @@ started. ## Benchmarks Studied -The standard comes from live-readback sampling, but recurring automation must refresh -the sample before deciding publishability. Do not rely only on stale benchmark memory -when the user is asking about current release coverage. - -Recent samples: - -- 2026-06-05: `@CodexReleases` covered Codex app `26.602` with a release/update card, - thread split, and media; it also covered Codex CLI `0.137.0`. -- 2026-06-05: `@Codex_Changelog` covered Codex app `26.602` and Codex CLI `0.137.0` - with dense source-led bullets and changelog links. -- 2026-06-05: neither benchmark account's visible sample emphasized - `rust-v0.138.0-alpha.4` prerelease interpretation. This is a Decodex opportunity, - not a reason to skip. +The standard uses historical style observations as inspiration for layout, density, and +reader value. Recurring automation must not refresh `@CodexReleases` or +`@Codex_Changelog` before deciding publishability, must not treat their coverage as +evidence, and must not decide publish/skip state from whether they posted. + +Historical style samples: + +- 2026-06-05: `@CodexReleases` showed a release/update card, thread split, and media + pattern for Codex app `26.602` and Codex CLI `0.137.0`. +- 2026-06-05: `@Codex_Changelog` showed dense source-led bullets and changelog links + for Codex app `26.602` and Codex CLI `0.137.0`. +- 2026-06-05: prerelease interpretation was identified as a Decodex opportunity + because official release metadata and GitHub compare/PR evidence can support a more + useful source-backed read than a bare tag repost. - 2026-06-03: `@CodexReleases`: 55 visible posts/thread nodes from 2026-06-03 back to 2026-04-24. - 2026-06-03: `@Codex_Changelog`: 34 visible posts from 2026-06-03 back to 2026-02-18. -Treat these accounts as operational benchmarks, not as technical evidence for claims. -Every technical claim still needs source-backed GitHub, official OpenAI changelog, -release, signal, upstream-review, or upstream-impact evidence. +Treat these accounts as historical style references only, not as runtime inputs, +coverage evidence, urgency signals, or technical evidence for claims. Every technical +claim still needs source-backed GitHub, official OpenAI changelog, release, signal, +upstream-review, or upstream-impact evidence. ## Editorial Bar diff --git a/docs/runbook/social-publishing-workflow.md b/docs/runbook/social-publishing-workflow.md index 9346818..28084ef 100644 --- a/docs/runbook/social-publishing-workflow.md +++ b/docs/runbook/social-publishing-workflow.md @@ -39,18 +39,18 @@ Outputs: ## Style Benchmarks -These benchmark observations are for tone and format only. They are not source evidence -for technical claims. +These observations are historical tone and format inspiration only. Recurring +automation must not browse or sample these accounts, must not use their coverage as +source evidence, and must not decide publish/skip state from whether they posted. | Account | Useful pattern | Decodex stance | | --- | --- | --- | -| `@CodexReleases` | Fast release/update cards, media, and short thread splits for Codex app, mobile, and CLI updates. | Use as coverage and format benchmark; do not let it replace official source evidence. | +| `@CodexReleases` | Fast release/update cards, media, and short thread splits for Codex app, mobile, and CLI updates. | Use as static style inspiration; do not let it become a runtime input or evidence source. | | `@Codex_Changelog` | Fast release-aware bullets with a changelog link. | Useful for `release_pulse`, but Decodex should not become a duplicate release bot. | -| `@CodexReleases` | Version/update cards and short release threads. | Useful for timely release or prerelease intros, but Decodex should add evidence, caveats, and operator framing instead of only mirroring a tag. | | `@LLMJunky` | Practical user interpretation: how a feature changes real workflows, what is worth trying, and where limits remain. | Prefer this style when Radar evidence can support the claim quickly. | | `@decodexspace` | Low-frequency automated publication channel. | Establish a voice around evidence-backed Codex intelligence and Decodex operator impact. | -Live Chrome readback on 2026-06-04 confirmed two useful benchmark shapes: +Historical samples confirmed two useful shapes: - `@Codex_Changelog` works as a single-card pattern: product/version headline, three dense bullets, and a source link. Use this only when the checkpoint itself is the @@ -60,15 +60,15 @@ Live Chrome readback on 2026-06-04 confirmed two useful benchmark shapes: when the release needs structure, but keep Decodex-specific caveats and evidence in the lead instead of burying them in the thread. -For current release/app automation, refresh `@CodexReleases` and -`@Codex_Changelog` readback before deciding that Decodex should skip. A missed official -Codex app or mobile changelog entry is a Publisher coverage failure, not an upstream -GitHub analysis gap. +For current release/app automation, use official changelog, release, GitHub, checked +Radar artifacts, and prior `social_post/v1` records as the decision inputs. A missed +official Codex app or mobile changelog entry is a Publisher coverage failure, not an +upstream GitHub analysis gap and not something to decide from other accounts. -For current prereleases, lack of benchmark-account coverage is a Decodex advantage. -Use compare and PR-title metadata to publish an early prerelease read when the direction -is useful, while labeling the post as alpha metadata interpretation instead of a stable -feature summary. +For current prereleases, Decodex's advantage is source-backed interpretation before a +stable release. Use compare and PR-title metadata to publish an early prerelease read +when the direction is useful, while labeling the post as alpha metadata interpretation +instead of a stable feature summary. Keep release and prerelease channels separate: diff --git a/docs/spec/social-publishing.md b/docs/spec/social-publishing.md index 27f1da9..44f03a2 100644 --- a/docs/spec/social-publishing.md +++ b/docs/spec/social-publishing.md @@ -114,8 +114,8 @@ Rules: the quoted text is short and necessary. - Treat official OpenAI Codex changelog entries as evidence for app, mobile, and product-surface claims when the post stays within that changelog. -- Treat X benchmark accounts as format and coverage evidence only, not as proof for a - technical claim. +- Treat X benchmark accounts as historical format inspiration only. They are not + coverage evidence, technical evidence, urgency signals, or publish/skip gates. - For prerelease reads, map concrete bullets to PR numbers, commit titles, compare metadata, or release URLs. Do not publish a generic theme paragraph when the evidence can name important commits, anticipated features, protocol/API changes, removals, or From d60cc7140783d4a7d61cc55342ddbd0387ecc204 Mon Sep 17 00:00:00 2001 From: Yvette Carlisle Date: Fri, 5 Jun 2026 18:07:38 +0800 Subject: [PATCH 3/3] {"schema":"decodex/commit/1","summary":"Compact publisher skills","authority":"manual"} --- dev/skills/codex-release-analysis/SKILL.md | 243 ++++----------- .../social-release-publisher-gates.md | 78 +++++ dev/skills/x-post-publisher/SKILL.md | 226 +++----------- dev/skills/x-post-quality-system/SKILL.md | 285 +++--------------- 4 files changed, 215 insertions(+), 617 deletions(-) create mode 100644 dev/skills/references/social-release-publisher-gates.md diff --git a/dev/skills/codex-release-analysis/SKILL.md b/dev/skills/codex-release-analysis/SKILL.md index 11c6bca..dca4650 100644 --- a/dev/skills/codex-release-analysis/SKILL.md +++ b/dev/skills/codex-release-analysis/SKILL.md @@ -5,202 +5,63 @@ description: Use when evaluating upstream Codex releases, prereleases, app updat # Decodex Codex Release Analysis -Use this repo-local skill when GitHub releases, prerelease tags, changelogs, app update -notes, or release-focused social posts need interpretation from already-reviewed Radar -evidence. +Use this repo-local skill to turn already-reviewed Radar evidence, official Codex +changelog entries, GitHub release metadata, and GitHub compare metadata into a release +or prerelease decision. -## Read Before Analysis +## Read First -- `docs/spec/release-delta.md`, `docs/spec/signal-entry.md`, - `docs/spec/upstream-impact.md`, `docs/spec/social-candidate.md`, and - `docs/spec/social-publishing.md` +- `docs/spec/release-delta.md` +- `docs/spec/social-candidate.md` +- `docs/spec/social-publishing.md` - `docs/runbook/local-github-signal-workflow.md` -- `dev/skills/codex-upstream-triage/SKILL.md` -- `dev/skills/codex-code-analysis/SKILL.md` only when explicitly routing missing - release-window gaps back to source analysis - -## Inputs - -- Release tag, changelog URL, or app update URL -- Existing `release_delta/v1`, `upstream_review/v1`, `upstream_impact/v1`, and - `signal_entry/v1` artifacts -- GitHub compare metadata for gap detection and PR/commit-title grouping, not as a - substitute for source review -- Official Codex changelog entries from `https://developers.openai.com/codex/changelog` - when the update is app-shaped, mobile-shaped, or otherwise not represented by an - `openai/codex` GitHub release -- Historical style lessons from `@CodexReleases` and `@Codex_Changelog` only when - they are already encoded in repo docs or supplied by the operator. Recurring - automation must not browse those accounts, use their coverage as evidence, or decide - publish/skip state from whether they posted. - -This advisory pass does not replace deterministic `release_delta/v1` generation. - -## Source Analysis Boundary - -Do not perform fresh upstream source analysis. Use compare metadata only to find -unreviewed PR/commit gaps, then return `upstream_analysis_required` for -`codex-upstream-triage` and `codex-code-analysis`. Publish rollups only from -source-backed artifacts plus release/compare metadata. - -## Release Reading Rules - -- Treat release and prerelease tags as reporting checkpoints over the commit/PR stream, - not as a separate higher-priority intake lane. -- Keep release and prerelease channels separate: - - Stable release posts compare the current stable release against the previous stable - release in the same tag channel. - - Prerelease posts compare the current prerelease against the previous prerelease in - the same upcoming release train, such as `0.138.0-alpha.3` -> - `0.138.0-alpha.4`. - - The first prerelease after a stable release compares against that stable release - and does not quote a prior prerelease post. -- Do not use the homepage top-level stable-versus-prerelease `release_delta/v1` pair - as the copy basis for every prerelease post. It is an index. Select the adjacent - channel pair that matches the post being written. -- Treat release notes as discovery, not proof, when they are sparse. -- Treat official Codex app and mobile changelog entries as first-class release-shaped - sources. They can support a `release_pulse` or `watch_note` without GitHub compare - evidence when the post only summarizes the changelog entry and links that source. -- Use GitHub compare data and PR mappings to explain what changed between stable and - prerelease tags. For prerelease posts, extract named PR/commit clusters first: - user-visible or anticipated workflow changes, protocol/API/schema changes, - plugin/config/tooling changes, and removals/deprecations. A generic theme summary - is not enough when the compare window contains named PRs or commit titles. -- When a candidate names important PRs in public copy, include direct GitHub PR URLs - on first mention. Raw `#12345` shorthand is allowed only as secondary notation after - the URL is already present or when the exact compare URL is the sole source link. -- Prefer already-published `signal_entry/v1` items when they match the compare commit - or PR evidence. -- Do not imply a feature is broadly available when the source says alpha, beta, - rollout, platform-gated, or config-gated. -- Do not write a release recap that only duplicates a release bot. Prefer a summary - built from accumulated Decodex signal, upstream-impact, and commit/PR analysis. -- Do not let sparse prerelease bodies disappear silently. If a new prerelease is the - latest checkpoint but source analysis is incomplete, emit an explicit watch decision: - either a source-backed `watch_note` candidate that says only what is proven, or a - durable `needs_upstream_analysis` / no-op record with the gap list. -- Treat prerelease interpretation as Decodex's differentiated lane because official - release metadata, compare metadata, PR titles, and existing Radar artifacts can - support early theme reads. The advantage comes from source-backed interpretation, not - from reading or reacting to other accounts' coverage. - -## Release Rollup Path - -When the target is an OpenAI Codex stable release: - -1. Refresh or read release metadata. -2. Select the current stable release and the immediately previous stable release in - the same tag channel. -3. Compare current stable against previous stable. Do not mix prerelease-only - checkpoint copy into the stable release post unless it is already part of the - stable release delta. -4. Start from existing `signal_entry/v1`, `upstream_impact/v1`, and recent commit/PR - analyses that match the stable-to-stable compare range. -5. Use `release_rollup` only after accumulated evidence explains the useful changes. - -When the target is an OpenAI Codex prerelease: - -1. Refresh or read `release_delta/v1`. -2. Select the adjacent prerelease comparison for the same train. For example, if the - current checkpoint is `0.138.0-alpha.4`, prefer `0.138.0-alpha.3` -> - `0.138.0-alpha.4`. If it is the first prerelease after a stable release, compare - the current stable release -> first prerelease. -3. Start from existing `signal_entry/v1`, `upstream_impact/v1`, and recent - commit/PR analyses that match the compare range. -4. Use `decodex radar backfill-release-range --dry-run` to find `compare.pr_numbers` - gaps that still need code analysis. -5. Group findings by reader value: useful now, important for Decodex Control Plane, - anticipated user workflow changes, protocol/API changes, deprecated/removed - behavior, and watch-only changes. -6. Publish `release_rollup` only after the summary is grounded in those historical - analyses and passes the daily cap. -7. Publish a prerelease `watch_note` only when the latest checkpoint itself is useful - to readers and every claim is limited to release metadata, compare metadata, PR - titles, source URLs, and explicit caveats. Do not summarize unreviewed code behavior - in this mode. -8. Prefer a short prerelease-read thread when there is enough metadata to identify - themes. The first post should name the highest-value PR/commit cluster, follow-ups - should separate protocol/API changes from user-facing workflow changes, and the - final post should carry source and alpha caveats. -9. Record the channel lineage in candidate evidence: previous checkpoint, current - checkpoint, compare URL, previous prerelease post URL when one exists, and whether - this is the first prerelease after a stable release. -10. If material gaps remain, stop with `upstream_analysis_required` instead of filling - them inside this skill. -11. Write `social_candidate/v1` with `decision.worthiness = "publish"`, `"defer"`, or - `"skip"` when the checkpoint needs a durable Publisher decision. -12. Refresh `release_delta/v1` after new signals are rendered so the homepage can map - the release window to tracked signals. - -When the target is an official Codex app or mobile changelog entry: - -1. Read the current official changelog entry and preserve the version/date. -2. Use repo-local style lessons only; do not read benchmark accounts or use their - coverage to decide urgency or skipping. -3. Use `release_pulse` for a source-led update card when the changelog lists concrete - user-visible changes. -4. Use `watch_note` when the changelog is useful but platform, plan, or rollout limits - should be highlighted. -5. Do not require GitHub compare evidence unless the post claims repository behavior. - -## Analysis Modes - -Use exactly one primary mode: - -| Mode | Use when | Output | -| --- | --- | --- | -| `release_pulse` | The release headline is the story. | Short awareness note or social post. | -| `delta_explainer` | Compare commits map to existing signals or clear PRs. | Refresh existing `release_delta/v1` and summarize the evidence. | -| `operator_impact` | Release changes app-server, plugins, browser, MCP, permissions, sandbox, hooks, config, auth, or providers. | `upstream_impact/v1` plus follow-up if needed. | -| `watch_note` | The release is interesting but evidence is incomplete. | Watch note with caveats. | - -## Prerelease Intro Path - -For sparse Codex prereleases, prefer `delta_explainer`, `operator_impact`, or a -source-backed release rollup over `release_pulse`; the release version alone is rarely -the useful story. A timely prerelease-read `watch_note` is acceptable when it tells -readers what direction the metadata suggests, what is not yet reviewed, and where to -follow the exact checkpoint. - -Do not treat sparse prerelease notes as automatic silence. For every new prerelease -checkpoint, choose one outcome: - -- `release_pulse`: short candidate intro from public release and compare metadata. -- `watch_note`: a cautious preview when the checkpoint is interesting but release-window - source analysis is incomplete. -- `release_rollup`: a stronger post when existing upstream reviews, impacts, and signals - explain the useful changes. -- `defer` or `skip` candidate decision: when a post would only repeat a version tag or - would require unreviewed code claims. - -The intro must name the tag, source, timing, and evidence gap. Do not invent feature -claims from the tag name, sparse body, or social style references. - -Style constraints: - -- Release-bot style is useful for speed: version, three bullets, source link. -- Human analysis style is useful for value: what changes in a real workflow, why it - matters, what to try, and where the limit remains. -- Decodex should prefer the human-analysis shape whenever source evidence supports it. -- For app updates, the best shape is a concise update card: version/date, three - concrete user-visible changes, rollout caveat if present, and the official changelog. -- For prerelease alpha checkpoints, avoid excitement language. Use a careful watch - shape that names the exact tag, compare window, metadata-derived themes, and analysis - gap. -- Preserve scan-friendly formatting in every X draft: short headline, blank line, - two to four compact bullets or lines, then source/caveat. Do not publish a dense - paragraph when the source naturally splits into important commits, features, protocol - changes, and caveats. +- `../references/social-release-publisher-gates.md` when creating a social candidate +- `dev/skills/codex-upstream-triage/SKILL.md` and + `dev/skills/codex-code-analysis/SKILL.md` only when routing missing source analysis + +## Hard Boundaries + +- Do not perform fresh upstream source analysis here. +- Use compare metadata to identify PR/commit gaps; route behavior claims that need code + review to `upstream_analysis_required`. +- Treat official Codex app/mobile changelog entries as first-class sources when the post + only summarizes changelog facts. +- Treat `@CodexReleases` and `@Codex_Changelog` only as historical style inspiration + already encoded in repo docs or supplied by the operator. +- Do not browse those accounts, use their coverage as evidence, or decide publish/skip + state from whether they posted. + +## Workflow + +1. Identify the channel: stable release, prerelease, app/mobile changelog, or no new + checkpoint. +2. Select the correct comparison: + - stable: current stable -> previous stable + - prerelease: current prerelease -> previous prerelease in the same train + - first prerelease after stable: stable -> first prerelease +3. Read existing `release_delta/v1`, `signal_entry/v1`, `upstream_review/v1`, and + `upstream_impact/v1` artifacts that match the channel. +4. Use `decodex radar backfill-release-range --dry-run` when compare PR gaps may need + later source review. +5. Choose exactly one primary mode: + - `release_pulse`: release or changelog headline is the story + - `watch_note`: useful checkpoint with caveats or incomplete analysis + - `release_rollup`: accumulated source-backed Radar evidence explains the changes + - `delta_explainer`: compare metadata maps to existing signals or clear PRs + - `operator_impact`: app-server, plugin, browser, MCP, sandbox, config, auth, or + provider behavior affects external operators +6. If creating a social candidate, apply + `../references/social-release-publisher-gates.md` for channel lineage, quote + eligibility, clickable PR URLs, formatting, media, and benchmark-account boundaries. +7. If the checkpoint has no reader value or only a version tag, write a durable no-op, + defer, skip, or `needs_upstream_analysis` decision instead of silent omission. ## Output -Return: - -- source/timestamp, release-body quality, compare/PR evidence, matching signal slugs -- chosen mode, takeaway, Control Plane impact, and `social_candidate/v1` - `decision.worthiness` +Return source/timestamp, chosen mode, release-body quality, compare/PR evidence, +matching signal slugs, Control Plane impact if any, and `social_candidate/v1` +`decision.worthiness`. -Promote durable conclusions into existing artifacts only: `upstream_impact/v1`, -Codex-owned `analysis_draft` plus `decodex radar render-signal` output, refreshed +Promote durable conclusions only through existing artifacts: `upstream_impact/v1`, +Codex-owned `analysis_draft` plus `decodex radar render-signal`, refreshed `release_delta/v1`, `social_candidate/v1`, or terminal `social_post/v1`. diff --git a/dev/skills/references/social-release-publisher-gates.md b/dev/skills/references/social-release-publisher-gates.md new file mode 100644 index 0000000..318fd0f --- /dev/null +++ b/dev/skills/references/social-release-publisher-gates.md @@ -0,0 +1,78 @@ +# Social Release Publisher Gates + +Read this only when a Codex release, prerelease, app/mobile changelog entry, or +`social_candidate/v1` is being prepared or published for `@decodexspace`. + +## Source Authority + +- Use official OpenAI changelog, GitHub release metadata, GitHub compare metadata, + PR-title metadata, and checked Radar artifacts as source evidence. +- `@CodexReleases` and `@Codex_Changelog` are historical style references only when + already encoded in repo docs or supplied by the operator. +- Recurring automation must not browse or sample those accounts, must not treat their + coverage as evidence, and must not decide publish/skip state from whether they posted. +- Do not infer implementation behavior from sparse release notes, tag names, or social + style observations. + +## Channel Lineage + +- Stable release posts compare current stable release -> previous stable release in the + same tag channel. +- Prerelease posts compare current prerelease -> previous prerelease in the same train. +- The first prerelease after a stable release compares stable release -> first + prerelease and must not quote a prior prerelease post. +- Later prerelease posts should quote the previous live and quote-eligible + `@decodexspace` prerelease post when a real previous-post URL exists. +- If no quote-eligible previous post exists, record that Decodex coverage gap and do not + invent or reuse a deleted, failed, text-only test, blocked, skipped, or superseded URL. + +## Candidate Gate + +For every release or prerelease checkpoint, choose one explicit terminal outcome: + +- `publish`: source-backed reader value is clear. +- `defer`: useful direction exists, but source analysis gaps remain. +- `skip`: the only supported fact is a version tag or low-value internal churn. +- `needs_upstream_analysis`: behavior claims require unreviewed PR/commit evidence. +- `no_op`: no new checkpoint or no public value. + +For publishable prerelease candidates, evidence must name: + +- previous checkpoint and current checkpoint +- adjacent compare URL +- first-prerelease-after-stable state +- previous prerelease post URL when quote-eligible, or a caveat when absent +- important PR/commit clusters, protocol/API changes, anticipated workflow changes, and + remaining alpha or source-review caveats + +## Copy Gate + +- Public copy must be scan-friendly: short headline, blank line, compact bullets, then + source/caveat. +- Do not publish dense one-paragraph prerelease reads when the compare window contains + named PRs or commit titles. +- Important PRs should use direct GitHub PR URLs on first public mention. Raw `#12345` + shorthand is secondary only after a URL is present or when one exact compare URL + intentionally carries the detailed PR list. +- Do not imply broad availability for alpha, beta, rollout-gated, platform-gated, or + config-gated changes. + +## Media Gate + +- Generate or attach media only when it adds reader value and is candidate-specific. +- Use `decodex_signal_card` as a visual system, not a reused fixed image. +- Never reuse live-test images, generic cards, unrelated abstract art, or media that + depends on AI-rendered readable text. +- Generated images live in `$CODEX_HOME/decodex/social-media/` or temporary storage by + default, not Git. +- If account verification, duplicate detection, media upload, or final readback is + unreliable, fail closed. Do not downgrade to text-only unless the operator explicitly + approves that fallback for the current candidate. + +## Post Shapes + +Use a concise release/update card when the official changelog or release is the story. +Use a prerelease-read thread when sparse prerelease notes plus compare metadata reveal +useful direction. Use `operator_impact` only for an external operator decision such as +enabling or avoiding a provider/config/path, updating an integration assumption, planning +a rollout, or watching a beta/availability boundary. diff --git a/dev/skills/x-post-publisher/SKILL.md b/dev/skills/x-post-publisher/SKILL.md index 1fa4753..c5b797c 100644 --- a/dev/skills/x-post-publisher/SKILL.md +++ b/dev/skills/x-post-publisher/SKILL.md @@ -7,184 +7,61 @@ description: Use when publishing a checked `social_candidate/v1` or explicit ope Use after a `social_candidate/v1` with `decision.worthiness = "publish"` exists, or after an explicit operator handoff names checked Radar artifacts. This skill consumes -that candidate or handoff, optionally posts through Chrome as `@decodexspace`, and +the candidate or handoff, optionally posts through Chrome as `@decodexspace`, and always writes the terminal `social_post/v1` record. -This is a Decodex repository-development instruction surface, not an installable -Decodex plugin skill. +## Read First -## Required Context - -- `docs/spec/social-publishing.md` - `docs/spec/social-candidate.md` +- `docs/spec/social-publishing.md` - `docs/runbook/social-publishing-workflow.md` +- `../references/social-release-publisher-gates.md` - `dev/skills/x-post-quality-system/SKILL.md` -## Boundaries - -- Do not read upstream Codex source, patches, or PR files here. -- Do not create fresh analysis. Consume checked artifacts and the candidate or operator - handoff only. -- Treat X style observations as format input only. Technical claims must come from - GitHub, changelog, signal, upstream-review, upstream-impact, release-delta, or - candidate evidence. - -## Browser Boundary - -Use `@Chrome` for X publication only inside this low-frequency Publisher workflow. -Before composing, verify the logged-in account is `@decodexspace`. If account -verification, Chrome availability, X page structure, media upload, duplicate detection, -or final URL readback is unreliable, do not post. Write `status = "failed"` or -`status = "blocked"` with evidence instead. - -Treat Chrome tabs as scoped resources. After account verification, compose, upload, -and final URL readback are done, close or release all tabs opened for the workflow. -Keep a tab only as an explicit human handoff, such as login, CAPTCHA, account approval, -or an unfinished operator-controlled page, and record that handoff in the result. - -Style observations from X are not technical evidence. They can shape format and tone, -but every technical claim must point back to GitHub, changelog, signal, upstream-review, -or upstream-impact evidence. - -## Benchmark Patterns - -Use these as format patterns only. Historical observations from `@CodexReleases` and -`@Codex_Changelog` may inspire layout and scanability only when already encoded in repo -docs or supplied by the operator. Recurring automation must not browse or sample those -accounts, must not use their coverage as evidence, and must not decide publish/skip -state from whether they posted. - -| Pattern | Good for | Decodex adaptation | -| --- | --- | --- | -| Release/update card | `release_pulse` or high-value `release_rollup` posts. | Product/version/theme headline, two or three reader-visible changes, source link, optional thread details. | -| High-density changelog | One-post summaries from a source changelog or release. | Headline, three high-signal bullets, source card; no extra commentary. | -| Release rollup | `release_rollup` posts after a release or prerelease. | Summarize what prior commit/PR analysis found: useful now, Control Plane impact, deprecations, and watch-only gaps. | -| Human workflow read | `practical_explainer` and `operator_impact`. | Start with the concrete workflow change, then explain why it matters and what caveat remains. | -| Watch note | Interesting but incomplete evidence. | Say what changed, why Radar is watching, and what evidence is still missing. | - -Do not skip an official app update just because the source is the OpenAI changelog -rather than GitHub. For prereleases, Decodex should provide source-backed -interpretation beyond release-bot reposts when compare metadata and PR titles reveal -useful direction. Keep it as a thread when necessary, but make the thread concrete: -important PR/commit clusters, anticipated workflow changes, protocol/API/schema -changes, operator-facing changes, then source/caveat. - -Keep release and prerelease channels separate. Stable release posts compare the current -stable release to the previous stable release. Prerelease posts compare the current -prerelease to the previous prerelease in the same train; only the first prerelease after -a stable release compares against the stable release baseline. - -For prerelease posts after the first checkpoint in a train, quote the previous -`@decodexspace` prerelease post when a previous-post URL exists. This creates a visible -history of the prerelease sequence before the stable release. If the previous -prerelease checkpoint exists but Decodex has no previous post URL, treat that as a -Publisher coverage gap, record it in evidence/caveats, and do not invent a quote. -When a previous `social_post/v1` record has `post_lifecycle.quote_eligible = false`, -do not quote it even if `publication.published_urls` exists; deleted, failed, text-only -test, or superseded posts are lineage evidence, not quote targets. - -## Publish Modes - -Choose one mode: `release_pulse`, `release_rollup`, `practical_explainer`, -`operator_impact`, `thread`, or `watch_note`. Prefer `practical_explainer`, -`operator_impact`, and source-backed `release_rollup`. A prerelease can be a -`release_pulse` intro or `watch_note` only when tag, source, timing, compare metadata, -and caveats are explicit. - -## Worthiness Gate +## Hard Boundaries + +- Do not read upstream Codex source, patches, PR files, or release-window gaps here. +- Do not create fresh analysis; consume checked artifacts only. +- Technical claims must come from GitHub, changelog, signal, upstream-review, + upstream-impact, release-delta, or candidate evidence. +- Historical X style observations are format input only. Never infer claims, urgency, or + publish/skip state from other accounts. +- Do not publish candidates with `decision.worthiness = "defer"` or `"skip"` unless the + operator gives a fresh explicit handoff. + +## Publish Gate Publish only when all are true: -- The input is either a `social_candidate/v1` with - `decision.worthiness = "publish"`, or an explicit operator handoff naming checked - Radar artifacts. -- The post is in English and passes `x-post-quality-system`. -- The source evidence is enough for every technical claim. -- For `social_candidate/v1` input, `decision.worthiness` is `publish`; do not require - non-schema fields such as `status = publishable` or `decision.outcome = publishable`. -- `dev/skills/x-post-quality-system/SKILL.md` passes the candidate as externally - valuable. -- The candidate answers in one screen: what changed, who can use or observe it, and what - source proves it. -- The item is `critical` or `high`, or it is a release/app/prerelease update with clear - reader value. -- The post is useful to Codex users, Decodex operators, or builders tracking the Codex - app-server ecosystem. -- The idempotency key has not already been published or blocked for the same source. -- The daily cap of 8 posts for `@decodexspace` in `Asia/Shanghai` is not reached. - -For official Codex app changelog updates, source-backed reader-visible changes are -enough for a `release_pulse` when the post stays within the changelog facts. For sparse -Codex prereleases, publish only as a caveated prerelease-read `watch_note` unless -existing release-window analysis supports a stronger rollup. Metadata-derived themes -are allowed; unreviewed implementation claims are not. - -For prerelease-read threads, formatting is a publishability gate. Do not publish a -single dense paragraph that buries evidence. Use explicit line breaks and compact -bullets so readers can scan: - -- what is worth watching -- which PR/commit names support it -- what protocol/API contracts changed -- what remains alpha or unreviewed -- which previous prerelease checkpoint or quoted post this post follows - -Use clickable PR references. Important PRs should appear as direct GitHub PR URLs when -first introduced in the thread. Raw `#12345` references are secondary shorthand; do not -make readers manually search for the PR. - -Skip low-value internal churn. Do not post just because a signal exists. In particular, -do not publish single-PR renames, trace-only compatibility notes, low-context operator -cautions, or Decodex-internal audit reminders unless they roll up into a broader -release/update story or concrete external operator decision. - -## Daily Cap - -The daily cap is 8 X posts for `@decodexspace`, counted by `Asia/Shanghai` calendar day -unless the operator supplies another timezone. - -If publishing the candidate would exceed the cap: - -- do not post -- write `social_post/v1` with `status = "blocked"` -- set `block.reason = "daily_cap_exceeded"` -- preserve candidate text, source refs, priority, worthiness reason, and daily counts -- report the block in the automation result so the operator can analyze why volume - exceeded the cap - -## Image Generation - -Generate media only when a fresh candidate-specific image can pass quality review. -Never rely on generated readable text or reuse prior live-test, generic, or unrelated -media. Keep generated image files in `$CODEX_HOME/decodex/social-media/` or temporary -storage by default, not Git. After upload, record the X status URL, any `/photo/N` -readback URL, and a short prompt/hash note when useful. If text-only is still valuable -with the source link card, publish text-only; otherwise skip or fail closed. - -If the X file chooser, media upload, or post-upload Chrome control channel stalls, -stop the publication attempt. Do not keep retrying upload in the same run, and do not -downgrade to text-only publication unless the operator explicitly approves that -fallback for the current candidate. Write a `status = "failed"` `social_post/v1` -record when the prepared candidate or failure mode has durable audit value. - -## Claim Review - -Before publishing: - -- Map every sentence to evidence. -- Map every prerelease bullet to a PR number, commit title, compare URL, or release - URL when the claim names a concrete change. -- Check that important PR references in public copy are clickable URLs on first - mention, unless the thread includes the exact compare URL as the only practical link - target due to length. -- For prerelease posts, verify the adjacent channel pair and previous-post quote state: - current prerelease, previous prerelease or stable baseline, compare URL, and previous - prerelease post URL when one exists. Read `post_lifecycle.quote_eligible` before - deciding that a historical prerelease post is safe to quote. -- Remove claims based only on social posts or engagement. -- Make beta, rollout, platform, and config gates explicit. -- Avoid local paths, credentials, private issue details, or internal runtime state. -- Keep each `text[]` item within the X length limit. +- candidate or handoff is source-backed and externally valuable +- `x-post-quality-system` passes the post and any media +- every sentence maps to evidence +- important PRs have direct GitHub PR URLs on first public mention, unless one exact + compare URL intentionally carries the detailed PR list +- prerelease channel lineage and previous-post quote state were checked through + `post_lifecycle.quote_eligible` +- idempotency key has not already been published or blocked for the same source +- daily cap of 8 posts for `@decodexspace` in `Asia/Shanghai` is not reached + +For release/prerelease/app candidates, apply +`../references/social-release-publisher-gates.md` before composing. + +## Chrome And Media + +Use `@Chrome` only inside this low-frequency Publisher workflow. Before composing, +verify the logged-in account is `@decodexspace`. + +Fail closed if Chrome availability, account verification, X page structure, duplicate +detection, media upload, final URL readback, or account/media readback is unreliable. +Do not downgrade to text-only unless the operator explicitly approves that fallback for +the current candidate. + +Use generated media only when it is fresh, candidate-specific, and quality-checked. +Keep generated image files in `$CODEX_HOME/decodex/social-media/` or temporary storage +by default, not Git. + +Close or release scoped Chrome tabs before ending. Keep a tab only as an explicit human +handoff such as login, CAPTCHA, account approval, or upload permission repair. ## Output Record @@ -195,15 +72,10 @@ Write `artifacts/social/x/posts//.json` with: - `target_account = "decodexspace"` - `controller_account = "hackink"` - `status = "published"`, `blocked`, `failed`, or `skipped` -- `source_refs`, `evidence_notes`, `claims`, and `decision` -- `publication` when posted -- `block`, `failure`, or `skip` when not posted -- X media URL or media caveat when media was used or skipped; do not commit generated - image files unless explicitly operator-approved - -If the daily cap would be exceeded, write `status = "blocked"` with -`block.reason = "daily_cap_exceeded"` and preserve candidate text, source refs, -priority, worthiness reason, and daily counts. +- `source_refs`, `evidence_notes`, `claims`, `decision`, and publication/block/failure + details as applicable +- X status/media URL or media caveat when media was used or skipped +- `post_lifecycle` when the record can affect future prerelease quote chains Run: diff --git a/dev/skills/x-post-quality-system/SKILL.md b/dev/skills/x-post-quality-system/SKILL.md index bbf3124..6590499 100644 --- a/dev/skills/x-post-quality-system/SKILL.md +++ b/dev/skills/x-post-quality-system/SKILL.md @@ -5,280 +5,67 @@ description: Use when Decodex X Publisher needs to decide whether an artifact-ba # Decodex X Post Quality System -Use this skill before `x-post-publisher` decides that a `social_candidate/v1` or -explicit operator handoff is worth publishing. It raises the bar from source-backed +Use before `x-post-publisher` decides whether a `social_candidate/v1` or explicit +operator handoff is worth publishing. This skill raises the bar from source-backed correctness to public-reader value and media quality. -This is a repo-local skill for the `@decodexspace` automation. It is not a generic -social-media style guide. +## Read First -This skill evaluates value and media quality only. It must not read upstream Codex -source or invent missing technical evidence; keep weak candidates as -`decision.worthiness = "defer"` or `"skip"` before publishing, or write terminal -`skipped` or `blocked` `social_post/v1` records when the Publisher flow has already -started. +- `docs/spec/social-candidate.md` +- `docs/spec/social-publishing.md` +- `docs/runbook/social-publishing-workflow.md` +- `../references/social-release-publisher-gates.md` -## Benchmarks Studied +## Hard Boundaries -The standard uses historical style observations as inspiration for layout, density, and -reader value. Recurring automation must not refresh `@CodexReleases` or -`@Codex_Changelog` before deciding publishability, must not treat their coverage as -evidence, and must not decide publish/skip state from whether they posted. +- Do not read upstream Codex source or invent missing technical evidence. +- Keep weak candidates as `decision.worthiness = "defer"` or `"skip"`, or write a + terminal `skipped`/`blocked` `social_post/v1` when Publisher has already started. +- Historical `@CodexReleases` and `@Codex_Changelog` observations are style references + only. Recurring automation must not browse them or use their coverage as evidence. -Historical style samples: +## Editorial Gate -- 2026-06-05: `@CodexReleases` showed a release/update card, thread split, and media - pattern for Codex app `26.602` and Codex CLI `0.137.0`. -- 2026-06-05: `@Codex_Changelog` showed dense source-led bullets and changelog links - for Codex app `26.602` and Codex CLI `0.137.0`. -- 2026-06-05: prerelease interpretation was identified as a Decodex opportunity - because official release metadata and GitHub compare/PR evidence can support a more - useful source-backed read than a bare tag repost. -- 2026-06-03: `@CodexReleases`: 55 visible posts/thread nodes from 2026-06-03 back to - 2026-04-24. -- 2026-06-03: `@Codex_Changelog`: 34 visible posts from 2026-06-03 back to - 2026-02-18. - -Treat these accounts as historical style references only, not as runtime inputs, -coverage evidence, urgency signals, or technical evidence for claims. Every technical -claim still needs source-backed GitHub, official OpenAI changelog, release, signal, -upstream-review, or upstream-impact evidence. - -## Editorial Bar - -Publish only when the candidate can answer all three questions in one screen: +Publish only when the candidate answers all three questions in one screen: - What changed? - Who can use, observe, or act on it? - What source proves it? -Reject candidates that are only: - -- single-PR renames -- trace-only compatibility notes -- narrow bug/fix/source-only details -- Decodex-internal audit targets -- low-context operator cautions -- generic "watching this" notes - -Those items can still be tracked in Radar artifacts. They should not become X posts +Reject candidates that are only single-PR renames, trace-only compatibility notes, +narrow bug/fix details, Decodex-internal audit targets, low-context cautions, or generic +"watching this" notes. They may remain Radar artifacts, but should not become X posts unless they roll up into a broader release, product update, concrete workflow change, or external operator decision. -Do not reject a current official app update solely because Decodex has no matching -GitHub compare artifact. If the official changelog gives concrete user-visible changes, -the correct gate is source-led `release_pulse` or caveated `watch_note`, not -`needs_upstream_analysis`. - -Do reject a sparse prerelease candidate if it tries to infer implementation behavior -from unreviewed code. A sparse prerelease can pass as a precise prerelease-read watch -note: exact tag, source link, compare/backfill status, metadata-derived themes, and a -caveat that release-window source analysis is still open. - -For prerelease threads, reject generic "platform plumbing" prose when the compare -window contains named PRs or commit titles. The draft must surface at least two of: - -- important PR/commit cluster names or numbers -- anticipated user workflow changes -- protocol/API/schema changes -- removals, deprecations, or compatibility boundaries -- plugin, config, sandbox, tool, or release-engineering changes - -Formatting is part of the quality bar. Reject drafts that read as one dense paragraph -when bullets or line breaks would make the source evidence easier to scan. - -For public X copy, do not leave important PR references as raw `#12345` only. Prefer -direct clickable PR URLs the first time a PR is used in a thread. Short PR numbers are -acceptable only when the same post or an adjacent source post already provides the URL -or when character budget makes the URL impossible and the final source link covers the -exact compare range. - -## Good Post Shapes - -Prefer concise release/update cards, dense changelog summaries, practical workflow -reads, prerelease intros, or concrete operator decisions. A good prerelease intro names -the tag/source/timing, says what is known, and states what Radar still needs to analyze; -it should feel more useful than a bare release bot without inventing details. Use -`operator_impact` only when the public action is external and concrete, such as enabling -or avoiding a provider/config/path, updating an integration assumption, planning a -rollout, or watching a beta/availability boundary. Do not turn a Decodex-internal audit -reminder into an X post. - -Use threads only when the first post is valuable alone. Follow-ups should be focused -buckets such as highlights, fixed, added, security, availability, caveats, or source; -do not split a weak candidate into a thread to make it look substantial. - -### Release Or Update Card - -Use when a release, prerelease, app update, or changelog entry is the story. - -Pattern: - -```text -Codex update: - -What changed: -- -- -- - -Source: -``` - -Use a short thread only when the main post already has enough value and details would not -fit cleanly. Follow-up posts should be `details`, `fixed`, `availability`, or `source`; -do not fragment weak material into a thread. - -For Codex app updates, prefer this shape when the official changelog has three or more -reader-visible changes. Include the version and the official changelog URL. - -For sparse prereleases, use this shape only as a prerelease-read watch note. Replace -"What changed" with "What the metadata suggests" plus "What is still being reviewed" -when needed. - -### Prerelease Read Thread - -Use when a prerelease is sparse but the compare window carries useful direction. - -Pattern: - -```text -Codex CLI prerelease read - -Worth watching: -- -- - -Alpha caveat: -``` - -```text -Protocol/API changes: -- -- -- -``` +For prerelease threads, reject generic theme prose when compare metadata contains named +PRs or commit titles. The draft must surface at least two of: important PR/commit +clusters, anticipated user workflow changes, protocol/API/schema changes, removals or +compatibility boundaries, and plugin/config/sandbox/tool/release-engineering changes. -```text -Developer/operator surface: -- -- +Formatting is part of the quality bar. Reject dense paragraphs when bullets, blank +lines, and direct PR URLs would make the evidence easier to scan. -Source: -``` +## Media Gate -Keep each thread node visually comfortable: one idea per post, a blank line after the -headline, compact bullets, and no wall-of-text paragraph. - -### High-Density Changelog - -Use when the value is a concise summary of a known source. - -Pattern: - -```text -Codex is out. - -- -- -- - -Changelog: -``` - -This shape should be dense and source-led. Do not add commentary that hides the actual -change. - -### Operator Decision - -Use `operator_impact` sparingly. It must read as an external operator decision, not a -Decodex maintenance note. - -Good operator-impact posts name a concrete action: - -- enable or avoid a provider/config/path -- update an integration assumption -- plan a rollout or migration -- watch a beta/availability boundary - -Do not publish an operator-impact post if the action is only "Decodex should audit this -internally." - -## Visual System - -`decodex_signal_card` is a visual system, not a fixed image. Publish media only when a -fresh candidate-specific image is useful; the image must share the same visual grammar. +Use media only when it is fresh, candidate-specific, and adds reader value beyond the +source link card. `decodex_signal_card` is a visual system, not a fixed image. Required shared elements: -- square card, suitable for X image preview +- square card suitable for X preview - calm technical composition, not a decorative poster - restrained off-white or near-black background - thin signal paths, sparse nodes, light grid or terminal/UI structure -- one dominant subject tied to the source: release, provider, platform, workflow, or UI +- one dominant subject tied to the source - stable Decodex identity area or small label zone - deterministic title/source/date overlay when text is needed -- no AI-rendered long text -- no mascots, people, logos, noisy gradients, generic orbs, or stock-like abstraction -- no reused live-test image, old generic release card, or source-agnostic placeholder - -Allowed subject variations: - -- release card: product/version/date/source -- source card: GitHub or OpenAI changelog source preview -- product card: simplified UI or device/workflow preview -- operator card: provider/config/sandbox/control-plane diagram with concrete labels - -Do not reuse: - -- prior live-test images -- old generic signal-card images -- unrelated abstract cards -- weak decorative filler - -If no fresh, candidate-specific, quality-checked media exists, prefer text-only plus the -source link card when the post still has enough standalone value. Otherwise skip or fail -closed. - -Generated image files are temporary Publisher resources. Store them in -`$CODEX_HOME/decodex/social-media/` or temporary storage by default, not Git. The durable -repository record should keep the X status/media URL, prompt summary or content hash -when useful, and any media caveat. - -## Image Prompt Contract - -Start from the `docs/spec/social-publishing.md` base prompt, then add source-specific -slots: - -- `subject`: the concrete release/update/workflow being explained -- `source`: GitHub release, OpenAI changelog, PR, or signal artifact -- `visual_metaphor`: release card, source card, UI/workflow preview, or operator diagram -- `palette`: near-black or off-white with restrained magenta, lime, and blue accents -- `forbidden`: generic abstract art, long text, unreadable labels, people, mascots, - decorative blobs, unrelated UI - -Before upload, perform a visual quality check. The image must pass all: - -- It is specific to this candidate. -- It is visually consistent with the Decodex system. -- It is not ugly, noisy, generic, or off-brand. -- It still makes sense if the post text is read first. -- It does not rely on AI-rendered readable text. -- It has enough negative space and contrast for a deterministic overlay or X preview. -- It avoids false UI screenshots, fake OpenAI branding, and unreadable pseudo-text. - -Record the prompt, media path, and quality-check outcome in `social_post/v1` evidence -notes or caveats. Include a content hash or final X media URL when available. - -## Failure Rules - -Fail closed when: +- no AI-rendered long text, people, logos, mascots, noisy gradients, generic orbs, or + source-agnostic placeholders -- the candidate is source-backed but not externally valuable -- the post cannot be expressed as release/update, changelog, or concrete operator decision -- the media is generic, reused, ugly, or unavailable but the post depends on media -- duplicate detection, account verification, upload, or final readback is unreliable +Before upload, verify the image is specific, visually consistent, readable as an X +preview, and not generic or off-brand. Record prompt/media path/quality outcome in +`social_post/v1` evidence notes or caveats when useful. -Write a `social_post/v1` `skipped` or `failed` record only when the artifact itself has -durable value for later analysis. Do not create repository PRs for meaningless failed -publication records. +Fail closed when media is generic, reused, unavailable but required, or when duplicate +detection, account verification, upload, or final readback is unreliable.