diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b0ac243..28c05ef0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## v1.4.413 (2026-02-18) + +### PR [#2012](https://github.com/danielmiessler/Fabric/pull/2012) by [ksylvan](https://github.com/ksylvan): Remove unused `gemini_openai` plugin and `oauth_storage` utility + +- Removed the unused `gemini_openai` plugin package, including its OpenAI-compatible client wrapper. +- Removed the `OAuthToken` struct and its expiry-check logic from the `util` package. +- Removed the `OAuthStorage` utility, including persistent token save, load, and delete handlers. +- Dropped the `HasValidToken` helper function and atomic file-write token saving mechanism. +- Deleted all `oauth_storage` unit tests covering the token lifecycle. + ## v1.4.412 (2026-02-18) ### PR [#1996](https://github.com/danielmiessler/Fabric/pull/1996) by [ksylvan](https://github.com/ksylvan): chore: bump Go dependencies and remove deprecated Anthropic models diff --git a/cmd/fabric/version.go b/cmd/fabric/version.go index c14a089e..79a4cfe8 100644 --- a/cmd/fabric/version.go +++ b/cmd/fabric/version.go @@ -1,3 +1,3 @@ package main -var version = "v1.4.412" +var version = "v1.4.413" diff --git a/cmd/generate_changelog/changelog.db b/cmd/generate_changelog/changelog.db index c4d583e3..9fb24db5 100644 Binary files a/cmd/generate_changelog/changelog.db and b/cmd/generate_changelog/changelog.db differ diff --git a/cmd/generate_changelog/incoming/2012.txt b/cmd/generate_changelog/incoming/2012.txt deleted file mode 100644 index 7b0b96ad..00000000 --- a/cmd/generate_changelog/incoming/2012.txt +++ /dev/null @@ -1,7 +0,0 @@ -### PR [#2012](https://github.com/danielmiessler/Fabric/pull/2012) by [ksylvan](https://github.com/ksylvan): Remove unused `gemini_openai` plugin and `oauth_storage` utility - -- Removed the unused `gemini_openai` plugin package, including its OpenAI-compatible client wrapper. -- Removed the `OAuthToken` struct and its expiry-check logic from the `util` package. -- Removed the `OAuthStorage` utility, including persistent token save, load, and delete handlers. -- Dropped the `HasValidToken` helper function and atomic file-write token saving mechanism. -- Deleted all `oauth_storage` unit tests covering the token lifecycle. diff --git a/nix/pkgs/fabric/version.nix b/nix/pkgs/fabric/version.nix index 0ad35f19..1a00c8d9 100644 --- a/nix/pkgs/fabric/version.nix +++ b/nix/pkgs/fabric/version.nix @@ -1 +1 @@ -"1.4.412" +"1.4.413"