-
Notifications
You must be signed in to change notification settings - Fork 856
docs(devlog): record the local Windows verification behind the 2.27.0 promotion #2158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+55
−0
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
55 changes: 55 additions & 0 deletions
55
devlog/_plan/260819_unclaimed_bug_selection/200_local_windows_verification.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| # 200 - local Windows verification before promoting 2.27.0 | ||
|
|
||
| Run on the maintainer Windows machine at `dev` = `70e8bab42` (v2.27.0), | ||
| Bun 1.3.14, Windows 11. This is the operator-side check that 190 asked for | ||
| before promotion, recorded with its evidence rather than summarized after. | ||
|
|
||
| ## Results | ||
|
|
||
| | Gate | Result | | ||
| |---|---| | ||
| | `bun install` | clean, no changes across 105 installs | | ||
| | `bun run typecheck` | exit 0 | | ||
| | `bun run test` | 8028 pass, 1 fail, then a Bun runtime panic | | ||
|
|
||
| The suite took 2021s against a ~210s idle baseline, so the machine was heavily | ||
| contended. That matters for reading the result: slowness alone did not produce | ||
| the failure below, which is why it was re-run in isolation. | ||
|
|
||
| ## The one failure, and why it is not this release's | ||
|
|
||
| `tests/codex-app-server-processes.test.ts` - "a defaulted read is memoized, and | ||
| invalidation is what clears it" (#1046). | ||
|
|
||
| It reproduces standalone in six seconds, so it is not a contention artifact. | ||
| It is also not caused by `main...dev`: checking out **`origin/main`'s copy of | ||
| both `src/codex/app-server-processes.ts` and the test file** and re-running | ||
| produces the identical single failure. Same defect, older code. | ||
|
|
||
| The mechanism is environmental. This machine runs live Codex app-servers, so | ||
| the probe finds real processes and returns `unknown`, which carries the | ||
| deliberate 250ms `CATALOG_STATE_UNKNOWN_TTL_MS` window instead of the 5s one. | ||
| The second call lands outside that window, recomputes, and returns a | ||
| structurally equal but distinct object - hence "serializes to the same string". | ||
| A CI runner has no Codex app-server running, reaches `not_running`, and gets | ||
| the full 5s TTL, so the case passes there and fails only on a developer box | ||
| that is actually using Codex. | ||
|
|
||
| Worth stating plainly: the test asserts object identity through a cache whose | ||
| TTL depends on what the machine happens to be running. That is a real test | ||
| defect, not a product defect, and it belongs to #2152's family rather than to | ||
| this release. | ||
|
|
||
| ## The trailing panic | ||
|
|
||
| The run ended with `panic: Internal assertion failure` inside Bun itself, after | ||
| the last test file reported. This is the shard-2 Bun runtime panic already | ||
| tracked in [#2152](https://github.com/lidge-jun/opencodex/issues/2152) - a | ||
| runtime crash, not a test result. | ||
|
|
||
| ## Verdict | ||
|
|
||
| Promotion criterion as stated in 190 and confirmed at the audit gate: zero | ||
| failures **outside** the tracked #2152 set. Met. Typecheck is green, the suite | ||
| is green except for one pre-existing environment-dependent case proven against | ||
| `origin/main`, and the panic is a known tracked crash. | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎯 Functional Correctness | 🟠 Major | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
Repository: lidge-jun/opencodex
Length of output: 50378
🌐 Web query:
https://github.com/lidge-jun/opencodex/issues/2152💡 Result:
The URL provided, #2152, does not currently exist as a valid or public issue in the OpenCodex repository [1][2]. OpenCodex is a universal provider proxy designed to allow users to run various LLMs (such as those from Claude, Gemini, Grok, and others) with OpenAI Codex, Claude Code, and other developer tools [1][3][4]. It is possible the issue number is either incorrect, refers to a deleted issue, or has not yet been created [1][2]. If you are looking for assistance with OpenCodex, you can check the official repository's issue tracker to search for open and closed bugs, or review the documentation for common troubleshooting [1][3][4]. Many common issues in the project relate to provider connectivity, model registry visibility, or session management, and these are tracked and addressed by the maintainers in the public repository [5][6][7][8][9].
Citations:
🏁 Script executed:
Repository: lidge-jun/opencodex
Length of output: 4981
🏁 Script executed:
Repository: lidge-jun/opencodex
Length of output: 4948
🏁 Script executed:
Repository: lidge-jun/opencodex
Length of output: 6650
🏁 Script executed:
Repository: lidge-jun/opencodex
Length of output: 10516
Do not classify the memoization failure under
#2152.#2152covers three WP13 failures, three npm symlink-fixture failures, and the shard-2 Bun panic. It does not covertests/codex-app-server-processes.test.tsor the memoization failure atdevlog/_plan/260819_unclaimed_bug_selection/200_local_windows_verification.md:21-40. GitHub issue#1046is a separate closed product bug.Change lines 52-55 to report one untracked failure, or update the tracked exception with this exact test before marking the promotion criterion as met. Do not add
#1046as the exception identifier.🤖 Prompt for AI Agents