| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| openai-codex-security-0.1.25.tgz | 2026-09-02 | 1.5 MB | |
| Codex Security 0.1.25 source code.tar.gz | 2026-09-01 | 2.0 MB | |
| Codex Security 0.1.25 source code.zip | 2026-09-01 | 2.3 MB | |
| README.md | 2026-09-01 | 8.8 kB | |
| Totals: 4 Items | 5.9 MB | 0 | |
Highlights
- Preserve confirmed finding identities across scans and comparisons, and show related findings with their reasons while keeping distinct findings separate. Large comparisons now use bounded batches without truncating finding text; inputs that cannot fit leave matching explicitly incomplete.
- Improve deduplication with separate screening and pair reviews, validated
pair assignments, and groups that respect explicit
DISTINCTdecisions. Invalid submissions receive one corrective turn; blocked reviews fail without recording a verdict.DeduplicationReviewErrorexposes structured, sanitized failure details. The SDK also addsdeduplicateScanDirectoryfor complete, sealed scans outside local history. - Generate synthetic Standard scan results with
scan --mockor the SDK'smock: true, without authentication or model calls. Mock results support normal reports, exports, history, and reruns. See mock scans. - Increase a running scan's total budget from the interactive dashboard when
usage reaches 80% of its limit, or use the SDK's
onBudgetApproachingcallback. The existing limit remains enforced until an increase is saved. See scan cost limits. - Recognize existing Codex authentication in CLI and SDK login status. SDK scans, comparisons, and deduplication reviews now honor native command-auth providers, including renewable tokens.
- Configure the findings service's full embeddings endpoint with
CODEX_SECURITY_EMBEDDINGS_URL. The new@openai/codex-security/serverexports support embedding credentials supplied by a callback before each HTTP batch. See embeddings and storage. - Include PowerShell module (
.psm1) and data (.psd1) files in scan inventories, and recognize BOM-marked UTF-16 source files as text. - Preserve scoped scan and component-plan inventories after directory renames that change only letter casing on case-insensitive filesystems.
- Support long Codex executable paths on Windows, including nested Deep Scan
workers, and retry credential snapshots for another
Get-Aclpath-not-found race when a descendant disappears during inspection. - Honor case-insensitive Windows environment variable names during finding deduplication, so configured API credentials and private configuration paths are used consistently.
- Stream tracked binary diffs when hashing repository snapshots, reducing memory use while preserving the existing digest format.
- Include complete OCI metadata in container image labels and multiarchitecture annotations, with documentation pinned to the source commit and image verification commands in the release workflow summary. See container metadata and verification.
Upgrade notes
- Mock mode is opt-in and saves clearly marked synthetic findings in local
history; use a separate
CODEX_SECURITY_STATE_DIRfor disposable test data. It supports Standard scans only and does not audit the repository. - Interactive budget increases are unavailable in CI, JSON/JSONL, headless, and verbose modes. Existing cost limits continue to apply in those modes.
- The embeddings URL defaults to the existing OpenAI endpoint. A configured endpoint receives finding inputs and the bearer credential and must support the OpenAI embeddings format. Embeddings credentials remain separate from Codex ChatGPT sign-in.
- Local history applies an automatic database index migration. Completed scan artifacts remain unchanged.
- Source builds now use repository-pinned pnpm 11.19.0, including MCP app
dependencies, whose configuration requires a seven-day minimum release age.
From the repository root, run
pnpm --dir plugins/codex-security/mcp-app install --frozen-lockfile. See running without Docker. - Container publication remains separate from npm publication. Existing stable container tags are not updated in place.
Build and CI updates also improve package verification, portable Python checks, Windows fixtures, and test scheduling. Documentation clarifies portable environment-variable guidance and safe examples.
The categorized list below contains the individual changes.
What's Changed
Features
- feat: allow configuring the findings embeddings URL by @kmbroai in https://github.com/openai/codex-security/pull/765
- feat(cli): allow interactive scan budget increases by @mldangelo-oai in https://github.com/openai/codex-security/pull/724
- feat(sdk): honor command auth and renewable embeddings credentials by @kmbroai in https://github.com/openai/codex-security/pull/769
- feat: preserve cross-scan finding relationships by @mldangelo-oai in https://github.com/openai/codex-security/pull/574
- feat(sdk): deduplicate sealed scan directories by @kmbroai in https://github.com/openai/codex-security/pull/779
- feat(cli): add mock scans with synthetic findings by @kmbroai in https://github.com/openai/codex-security/pull/783
- feat(typescript): align deduplication review stages by @kmbroai in https://github.com/openai/codex-security/pull/780
Fixes
- fix(sdk): retry Windows Get-Acl path-not-found races by @faizan-oai in https://github.com/openai/codex-security/pull/731
- fix(ci): preserve LF Python source checkouts by @faizan-oai in https://github.com/openai/codex-security/pull/726
- fix(container): publish metadata on multi-architecture images by @mldangelo-oai in https://github.com/openai/codex-security/pull/714
- fix(plugin): include PowerShell module and data files by @faizan-oai in https://github.com/openai/codex-security/pull/715
- fix(windows): preserve scoped inventories after case-only renames by @faizan-oai in https://github.com/openai/codex-security/pull/633
- fix(windows): honor dedupe environment settings by @faizan-oai in https://github.com/openai/codex-security/pull/696
- fix(windows): support long Codex executable paths by @faizan-oai in https://github.com/openai/codex-security/pull/704
- fix(plugin): recognize BOM-marked UTF-16 source files by @faizan-oai in https://github.com/openai/codex-security/pull/716
- fix(cli): use shell-neutral env-var removal guidance by @mangeshraut712 in https://github.com/openai/codex-security/pull/754
- fix(auth): make login status recognize existing Codex authentication by @Ultron09 in https://github.com/openai/codex-security/pull/738
- fix: limit finding comparison input size by @ianw-oai in https://github.com/openai/codex-security/pull/638
- fix: surface deduplication review failure reasons by @kmbroai in https://github.com/openai/codex-security/pull/766
- fix(plugin): stream tracked diffs while hashing by @Hughhhhcoder in https://github.com/openai/codex-security/pull/773
- fix(typescript): harden deduplication review validation by @kmbroai in https://github.com/openai/codex-security/pull/781
Documentation
- docs: clarify safe documentation examples by @zcrab-oai in https://github.com/openai/codex-security/pull/693
Other changes
- ci: run full checks for authored plugin Markdown by @mldangelo-oai in https://github.com/openai/codex-security/pull/729
- build(plugin): use pnpm for MCP app dependencies by @mldangelo-oai in https://github.com/openai/codex-security/pull/725
- ci: reuse one package and balance test jobs by @mldangelo-oai in https://github.com/openai/codex-security/pull/734
- ci: run static checks independently of package builds by @mldangelo-oai in https://github.com/openai/codex-security/pull/745
- build: align pnpm toolchain on 11.19 by @soyeon-oai in https://github.com/openai/codex-security/pull/760
- ci(plugin): align portable Ruff checks by @soyeon-oai in https://github.com/openai/codex-security/pull/770
New Contributors
- @mangeshraut712 made their first contribution in https://github.com/openai/codex-security/pull/754
- @Ultron09 made their first contribution in https://github.com/openai/codex-security/pull/738
- @zcrab-oai made their first contribution in https://github.com/openai/codex-security/pull/693
Full Changelog: https://github.com/openai/codex-security/compare/npm-v0.1.24...npm-v0.1.25