Skip to content

Commit

Permalink
v1.11.0-rc.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kaidaguerre committed Apr 25, 2024
1 parent bbed48c commit b121c3e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
## v1.11.0 [tbd]
* Update Steampipe timing output to show all scans for all connections.
_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))
* Update Steampipe timing output to show all scans for all connections. ([#439](https://github.com/turbot/steampipe-postgres-fdw/issues/439))
* Add support for WHERE column=val1 OR column=val2 OR column=val3... ([#440](https://github.com/turbot/steampipe-postgres-fdw/issues/440))
* Add support for running plugins in-process. ([#383](https://github.com/turbot/steampipe-postgres-fdw/issues/383))
* Fixes issue where the install script fails if pg_config in not in users path. ([#404](https://github.com/turbot/steampipe-postgres-fdw/issues/404))
* Always build with netgo to fix runtime error `undefined symbol: __res_search` when building on ubuntu20. ([#450](https://github.com/turbot/steampipe-postgres-fdw/issues/450))

* _Bug fixes_
* Add signal handler for signal 16 to avoid FDW crash. ([#457](https://github.com/turbot/steampipe-postgres-fdw/issues/457))

## v1.10.0 [2024-03-04]
_Whats new_
_Whats new_
* If `STEAMPIPE_FDW_PARALLEL_SAFE` env var is set is set, mark FDW as PARALLEL SAFE to improve performance. ([#428](https://github.com/turbot/steampipe-postgres-fdw/issues/428))

## v1.9.3 [2024-02-09]
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ var fdwVersion = "1.11.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 = "rc.3"
var prerelease = "rc.4"

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

0 comments on commit b121c3e

Please sign in to comment.