Skip to content

Commit 3738cd0

Browse files
committed
v1.13.0
1 parent 40e8934 commit 3738cd0

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## v1.13.0 [2025-06-11]
2+
_Breaking changes_
3+
- 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.
4+
5+
_Whats new_
6+
- Allow using `pprof` on FDW when `STEAMPIPE_FDW_PPROF` environment variable is set. ([#368](https://github.com/turbot/steampipe-postgres-fdw/issues/368))
7+
8+
_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))
10+
11+
_Dependencies_
12+
- Upgrade `go-jose/v4` to remediate vulnerabilities.
13+
114
## v1.12.7 [2025-06-03]
215
_Dependencies_
316
- Upgrade `golang.org/x/net` to remediate high vulnerabilities.

version/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ import (
1111
)
1212

1313
// The main version number that is being run at the moment.
14-
var fdwVersion = "1.12.8"
14+
var fdwVersion = "1.13.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
1818
// such as "dev" (in development), "beta", "rc1", etc.
19-
var prerelease = "rc.2"
19+
var prerelease = ""
2020

2121
// FdwVersion is an instance of semver.Version. This has the secondary
2222
// benefit of verifying during tests and init time that our version is a

0 commit comments

Comments
 (0)