diff --git a/CHANGELOG.md b/CHANGELOG.md index 15d99426..02b09e80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## v1.4.408 (2026-02-17) + +### PR [#2007](https://github.com/danielmiessler/Fabric/pull/2007) by [ksylvan](https://github.com/ksylvan): Add optional API key authentication to LM Studio client + +- Add optional API key authentication to LM Studio client +- Add optional API key setup question to client configuration +- Add `ApiKey` field to the LM Studio `Client` struct +- Create `addAuthorizationHeader` helper to attach Bearer token to requests +- Apply authorization header to all outgoing HTTP requests + ## v1.4.407 (2026-02-16) ### PR [#2005](https://github.com/danielmiessler/Fabric/pull/2005) by [ksylvan](https://github.com/ksylvan): I18N: For file manager, Vertex AI, and Copilot errors diff --git a/cmd/fabric/version.go b/cmd/fabric/version.go index f0a196ac..7ad6bc20 100644 --- a/cmd/fabric/version.go +++ b/cmd/fabric/version.go @@ -1,3 +1,3 @@ package main -var version = "v1.4.407" +var version = "v1.4.408" diff --git a/cmd/generate_changelog/changelog.db b/cmd/generate_changelog/changelog.db index 2961dc06..f7e15e12 100644 Binary files a/cmd/generate_changelog/changelog.db and b/cmd/generate_changelog/changelog.db differ diff --git a/cmd/generate_changelog/incoming/2007.txt b/cmd/generate_changelog/incoming/2007.txt deleted file mode 100644 index e763a58b..00000000 --- a/cmd/generate_changelog/incoming/2007.txt +++ /dev/null @@ -1,7 +0,0 @@ -### PR [#2007](https://github.com/danielmiessler/Fabric/pull/2007) by [ksylvan](https://github.com/ksylvan): Add optional API key authentication to LM Studio client - -- Add optional API key authentication to LM Studio client -- Add optional API key setup question to client configuration -- Add `ApiKey` field to the LM Studio `Client` struct -- Create `addAuthorizationHeader` helper to attach Bearer token to requests -- Apply authorization header to all outgoing HTTP requests diff --git a/nix/pkgs/fabric/version.nix b/nix/pkgs/fabric/version.nix index a043a709..6e0f3112 100644 --- a/nix/pkgs/fabric/version.nix +++ b/nix/pkgs/fabric/version.nix @@ -1 +1 @@ -"1.4.407" +"1.4.408"