| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| fabric_1.4.442_checksums.txt | 2026-03-26 | 736 Bytes | |
| fabric_Darwin_arm64.tar.gz | 2026-03-26 | 21.0 MB | |
| fabric_Linux_arm64.tar.gz | 2026-03-26 | 20.0 MB | |
| fabric_Linux_i386.tar.gz | 2026-03-26 | 20.4 MB | |
| fabric_Windows_i386.zip | 2026-03-26 | 21.1 MB | |
| fabric_Darwin_x86_64.tar.gz | 2026-03-26 | 22.2 MB | |
| fabric_Linux_x86_64.tar.gz | 2026-03-26 | 21.8 MB | |
| fabric_Windows_arm64.zip | 2026-03-26 | 20.1 MB | |
| fabric_Windows_x86_64.zip | 2026-03-26 | 22.2 MB | |
| README.md | 2026-03-25 | 858 Bytes | |
| v1.4.442 source code.tar.gz | 2026-03-25 | 20.7 MB | |
| v1.4.442 source code.zip | 2026-03-25 | 21.2 MB | |
| Totals: 12 Items | 210.7 MB | 1 | |
Changes
PR #2075 by ksylvan and mikaelpr: refactor: extract OAuth and auth logic from Codex client module
- Refactored the Codex client module by extracting all OAuth and authentication logic into a dedicated module, improving separation of concerns.
- Removed the OAuth flow, PKCE handling, and token refresh logic from
codex.go, streamlining the client's core responsibilities. - Removed the auth transport round-trip retry logic, simplifying the HTTP transport layer.
- Removed JWT parsing and token expiry utilities, along with unused OAuth types and helper structs, reducing dead code in the package.
- Added a test for
SendStreamHTTP error mapping and channel close behavior, improving test coverage for the client module.