Merge branch 'v2.1.x' into develop

This commit is contained in:
Puskar Basu
2025-07-09 18:24:00 +05:30
committed by GitHub
2 changed files with 15 additions and 1 deletions

View File

@@ -1,3 +1,17 @@
## v2.1.0 [2025-07-09]
_Whats new_
- Compiled with Go 1.24.
- The versioning mechanism has been changed to use GoReleaser for automated version management during the build process.
_Breaking changes_
- The [version](https://pkg.go.dev/github.com/turbot/steampipe@v1.1.4/pkg/version) package, which was previously used to control CLI versioning, has been removed in this version. This change only affects users who were importing the Steampipe version package in their Go code. Regular CLI usage is not impacted.
_Bug fixes_
- Bump module to v2. ([#4593](https://github.com/turbot/steampipe/issues/4593))
_Dependencies_
- Update `go-viper` package to remediate moderate vulnerabilities.
## v2.0.1 [2025-06-11]
_Bug fixes_
- Fix `plugin manager is not running` error when starting steampipe via a symlink. ([#4573](https://github.com/turbot/steampipe/issues/4573))

View File

@@ -28,7 +28,7 @@ const (
// constants for installing db and fdw images
const (
DatabaseVersion = "14.17.0"
FdwVersion = "2.0.0"
FdwVersion = "2.1.0"
// PostgresImageRef is the OCI Image ref for the database binaries
PostgresImageRef = "ghcr.io/turbot/steampipe/db:14.17.0"