Skip to content

Commit

Permalink
v0.23.0-rc.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kaidaguerre committed May 3, 2024
1 parent 96203da commit 0e38877
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 <nil> when there was no message to show. ([#4206](https://github.com/turbot/steampipe/issues/4206))
Expand Down
2 changes: 1 addition & 1 deletion pkg/constants/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0e38877

Please sign in to comment.