diff --git a/CHANGELOG.md b/CHANGELOG.md index 58883141ab..0a78bd381d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ + +## v0.23.0 [tbd] +_Whats new_ +- Add support for pushing down sort order. ([#447](https://github.com/turbot/steampipe-postgres-fdw/issues/447)) +- Update limit pushdown logic to push down the limit if all sort clauses are pushed down. ([#458](https://github.com/turbot/steampipe-postgres-fdw/issues/458)) +- Add support for WHERE column=val1 OR column=val2 OR column=val3... +- Adds support for verbose timing information. ([#4244](https://github.com/turbot/steampipe/issues/4244)) +- Migrate from plugin registry from GCP to GHCR. ([#4232](https://github.com/turbot/steampipe/issues/4232)) + +_Bug fixes_ +- Fix hang when timing disabled. ([#4237](https://github.com/turbot/steampipe/issues/4237)) +- Add signal handler for signal 16 to avoid FDW crash. ([#457](https://github.com/turbot/steampipe-postgres-fdw/issues/457)) + + ## v0.22.2 [2024-04-05] _Bug fixes_ * Fix issue where daily update check message showed a when there was no message to show. ([#4206](https://github.com/turbot/steampipe/issues/4206)) diff --git a/pkg/constants/db.go b/pkg/constants/db.go index 0896815e62..819d4b27fc 100644 --- a/pkg/constants/db.go +++ b/pkg/constants/db.go @@ -28,7 +28,7 @@ const ( // constants for installing db and fdw images const ( DatabaseVersion = "14.2.0" - FdwVersion = "1.11.0-rc.6" + FdwVersion = "1.11.0" // PostgresImageRef is the OCI Image ref for the database binaries PostgresImageRef = "us-docker.pkg.dev/steampipe/steampipe/db:14.2.0" diff --git a/pkg/version/version.go b/pkg/version/version.go index 985c7d0e85..31919752d6 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -23,7 +23,7 @@ var steampipeVersion = "0.23.0" // A pre-release marker for the version. If this is "" (empty string) // then it means that it is a final release. Otherwise, this is a pre-release // such as "dev" (in development), "beta", "rc1", etc. -var prerelease = "alpha.7" +var prerelease = "rc.0" // SteampipeVersion is an instance of semver.Version. This has the secondary // benefit of verifying during tests and init time that our version is a