Skip to content

Commit c7fad62

Browse files
authored
Release steampipe-postgres-fdw v2.0.0 (#564)
2 parents b8bb107 + 1f3a50c commit c7fad62

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
## v1.13.0 [2025-06-11]
1+
## v2.0.0 [2025-06-11]
22
_Breaking changes_
33
- 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.
44

55
_Whats new_
66
- Allow using `pprof` on FDW when `STEAMPIPE_FDW_PPROF` environment variable is set. ([#368](https://github.com/turbot/steampipe-postgres-fdw/issues/368))
77

88
_Bug fixes_
9-
- 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))
9+
- 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))
1010

1111
_Dependencies_
1212
- Upgrade `go-jose/v4` to remediate vulnerabilities.

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
)
1212

1313
// The main version number that is being run at the moment.
14-
var fdwVersion = "1.13.0"
14+
var fdwVersion = "2.0.0"
1515

1616
// A pre-release marker for the version. If this is "" (empty string)
1717
// then it means that it is a final release. Otherwise, this is a pre-release

0 commit comments

Comments
 (0)