From d28035e6494c597633e1d47110931657ca7a4e51 Mon Sep 17 00:00:00 2001 From: kaidaguerre Date: Wed, 11 Jun 2025 10:46:04 +0100 Subject: [PATCH 1/2] Update CHANGELOG for v1.13.0 (#563) --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f13d5a7..d00cc063 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ _Whats new_ - Allow using `pprof` on FDW when `STEAMPIPE_FDW_PPROF` environment variable is set. ([#368](https://github.com/turbot/steampipe-postgres-fdw/issues/368)) _Bug fixes_ -- Fix issue where the FDW ignored to apply filter for `anyOf` key columns for complex queries. ([#558](https://github.com/turbot/steampipe-postgres-fdw/issues/558)) +- Fix issue where the FDW did not correctly provide planning cost information for key-columns with an `any-of` requirement. This could lead the Postgres planner to choose query plans that do not include filters on those columns, even when filters were present in the query. . ([#558](https://github.com/turbot/steampipe-postgres-fdw/issues/558)) _Dependencies_ - Upgrade `go-jose/v4` to remediate vulnerabilities. From 1f3a50c3863be7d258033e31b2c602373a2b58f7 Mon Sep 17 00:00:00 2001 From: Puskar Basu Date: Wed, 11 Jun 2025 18:25:00 +0530 Subject: [PATCH 2/2] v2.0.0 --- CHANGELOG.md | 2 +- version/version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d00cc063..dcd0ed4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## v1.13.0 [2025-06-11] +## v2.0.0 [2025-06-11] _Breaking changes_ - Increased minimum required `glibc` version to `2.34` due to upgrading the Linux build environment from Ubuntu 20.04 to Ubuntu 22.04 GitHub runners. As a result, the FDW no longer supports older Linux distributions such as Ubuntu 20.04 and Amazon Linux 2. diff --git a/version/version.go b/version/version.go index 047360dd..465d3b47 100644 --- a/version/version.go +++ b/version/version.go @@ -11,7 +11,7 @@ import ( ) // The main version number that is being run at the moment. -var fdwVersion = "1.13.0" +var fdwVersion = "2.0.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