diff --git a/CHANGELOG.md b/CHANGELOG.md index 022a9556..3b0ac243 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 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 + +- Bump go-sqlite3 from v1.14.33 to v1.14.34, ollama from v0.15.6 to v0.16.1, google.golang.org/api from v0.265.0 to v0.266.0, and google.golang.org/grpc from v1.78.0 to v1.79.0 to keep dependencies up to date. +- Removed deprecated Claude 3.x model references from the Anthropic client and the claude-3-7-sonnet model from the OpenAI-compatible provider config. + ## v1.4.411 (2026-02-18) ### PR [#2011](https://github.com/danielmiessler/Fabric/pull/2011) by [ksylvan](https://github.com/ksylvan): Add support for Claude Sonnet 4.6 diff --git a/cmd/fabric/version.go b/cmd/fabric/version.go index 1765c317..c14a089e 100644 --- a/cmd/fabric/version.go +++ b/cmd/fabric/version.go @@ -1,3 +1,3 @@ package main -var version = "v1.4.411" +var version = "v1.4.412" diff --git a/cmd/generate_changelog/changelog.db b/cmd/generate_changelog/changelog.db index 1b4c5a99..c4d583e3 100644 Binary files a/cmd/generate_changelog/changelog.db and b/cmd/generate_changelog/changelog.db differ diff --git a/cmd/generate_changelog/incoming/1996.txt b/cmd/generate_changelog/incoming/1996.txt deleted file mode 100644 index ba13f872..00000000 --- a/cmd/generate_changelog/incoming/1996.txt +++ /dev/null @@ -1,4 +0,0 @@ -### PR [#1996](https://github.com/danielmiessler/Fabric/pull/1996) by [ksylvan](https://github.com/ksylvan): chore: bump Go dependencies and remove deprecated Anthropic models - -- Bump go-sqlite3 from v1.14.33 to v1.14.34, ollama from v0.15.6 to v0.16.1, google.golang.org/api from v0.265.0 to v0.266.0, and google.golang.org/grpc from v1.78.0 to v1.79.0 to keep dependencies up to date. -- Removed deprecated Claude 3.x model references from the Anthropic client and the claude-3-7-sonnet model from the OpenAI-compatible provider config. diff --git a/nix/pkgs/fabric/gomod2nix.toml b/nix/pkgs/fabric/gomod2nix.toml index 9963672c..74974bf8 100644 --- a/nix/pkgs/fabric/gomod2nix.toml +++ b/nix/pkgs/fabric/gomod2nix.toml @@ -275,8 +275,8 @@ schema = 3 version = "v0.0.20" hash = "sha256-qhw9hWtU5wnyFyuMbKx+7RB8ckQaFQ8D+8GKPkN3HHQ=" [mod."github.com/mattn/go-sqlite3"] - version = "v1.14.33" - hash = "sha256-MDedRg8E0liw2t5zkvKWFMcR/aO7G0uAwdlfI3n2Iyg=" + version = "v1.14.34" + hash = "sha256-PGOevTQb3gNdGu4H2bhvXJlntkMkDt+UhuiK1IpuorQ=" [mod."github.com/modern-go/concurrent"] version = "v0.0.0-20180306012644-bacd9c7ef1dd" hash = "sha256-OTySieAgPWR4oJnlohaFTeK1tRaVp/b0d1rYY8xKMzo=" @@ -287,8 +287,8 @@ schema = 3 version = "v2.6.1" hash = "sha256-ag/8GBAwqkOyIVrdlaFYLxy9dgPOq7VbactrLmzxK7E=" [mod."github.com/ollama/ollama"] - version = "v0.15.6" - hash = "sha256-T1ShIX6znCkjR3EARswXd7z6TL2rZFUuN/bZVKhaw18=" + version = "v0.16.2" + hash = "sha256-5yZdLw7FS6uGOba7D4FfHjAFr9Nez05apXuD23TxZ50=" [mod."github.com/openai/openai-go"] version = "v1.12.0" hash = "sha256-JHLlKvDwERPf728GUXBsKU58ODgCxcxEe9TKJTGAG1w=" @@ -428,8 +428,8 @@ schema = 3 version = "v0.42.0" hash = "sha256-JTwzoJeqCW5aphjQR0SItRGov7dKVbFk3a4V2U2+vd4=" [mod."google.golang.org/api"] - version = "v0.265.0" - hash = "sha256-GOEPWWePKOVLGukOHVy76Zuc646d3d2qKoQko3MJztI=" + version = "v0.266.0" + hash = "sha256-Hogjfgm2y7hqE5hdcg38C/nspk7xXGQxbgCY92SxNlA=" [mod."google.golang.org/genai"] version = "v1.46.0" hash = "sha256-yf0roQdGDEC4vZeES/LgFqxTvIOAY5waIpKqQC33sFo=" @@ -437,8 +437,8 @@ schema = 3 version = "v0.0.0-20260209200024-4cfbd4190f57" hash = "sha256-gdgUw1LzgVOrarF1cGBUI9uoaR/d6lur2RwxUDKnOZA=" [mod."google.golang.org/grpc"] - version = "v1.78.0" - hash = "sha256-oKsu3+Eae5tpFOZ9K2ZzYh1FgdYdEnEIB1C+UIxSD+E=" + version = "v1.79.0" + hash = "sha256-JPEuLV/QOgLnd3EmCjHMemQPSezF4mv2ZW6rGAWt9Lk=" [mod."google.golang.org/protobuf"] version = "v1.36.11" hash = "sha256-7W+6jntfI/awWL3JP6yQedxqP5S9o3XvPgJ2XxxsIeE=" diff --git a/nix/pkgs/fabric/version.nix b/nix/pkgs/fabric/version.nix index dcd787c4..0ad35f19 100644 --- a/nix/pkgs/fabric/version.nix +++ b/nix/pkgs/fabric/version.nix @@ -1 +1 @@ -"1.4.411" +"1.4.412"