mirror of
https://github.com/danielmiessler/fabric.git
synced 2026-09-10 07:36:44 -04:00
chore(release): Update version to v1.4.442
This commit is contained in:
parent
294954d7e6
commit
83b77a59bd
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -1,5 +1,15 @@
|
|||
# Changelog
|
||||
|
||||
## v1.4.442 (2026-03-25)
|
||||
|
||||
### PR [#2075](https://github.com/danielmiessler/Fabric/pull/2075) by [ksylvan](https://github.com/ksylvan) and [mikaelpr](https://github.com/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 `SendStream` HTTP error mapping and channel close behavior, improving test coverage for the client module.
|
||||
|
||||
## v1.4.441 (2026-03-22)
|
||||
|
||||
### PR [#2068](https://github.com/danielmiessler/Fabric/pull/2068) by [dependabot](https://github.com/apps/dependabot) and [ksylvan](https://github.com/ksylvan): chore(deps): bump google.golang.org/grpc from 1.79.0 to 1.79.3 in the go_modules group across 1 directory
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
package main
|
||||
|
||||
var version = "v1.4.441"
|
||||
var version = "v1.4.442"
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -1,7 +0,0 @@
|
|||
### PR [#2075](https://github.com/danielmiessler/Fabric/pull/2075) by [ksylvan](https://github.com/ksylvan) and [mikaelpr](https://github.com/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 `SendStream` HTTP error mapping and channel close behavior, improving test coverage for the client module.
|
||||
|
|
@ -1 +1 @@
|
|||
"1.4.441"
|
||||
"1.4.442"
|
||||
|
|
|
|||
Loading…
Reference in a new issue