From e44b6f0cef1dcc9660ee24e7b81caab8b001889e Mon Sep 17 00:00:00 2001 From: kai Date: Wed, 27 Sep 2023 19:51:13 +0100 Subject: [PATCH] Update FDW to v1.8.0 - fix file watching not working when renaming csv files. Closes #3913 Update sdk to v5.6.0 --- go.mod | 2 +- go.sum | 4 ++-- pkg/constants/db.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/go.mod b/go.mod index 3f884d4ead..216c7b81e7 100644 --- a/go.mod +++ b/go.mod @@ -45,7 +45,7 @@ require ( github.com/stevenle/topsort v0.2.0 github.com/turbot/go-kit v0.9.0-rc.0 github.com/turbot/steampipe-cloud-sdk-go v0.6.0 - github.com/turbot/steampipe-plugin-sdk/v5 v5.6.0-rc.30 + github.com/turbot/steampipe-plugin-sdk/v5 v5.6.0 github.com/xlab/treeprint v1.2.0 github.com/zclconf/go-cty v1.14.0 github.com/zclconf/go-cty-yaml v1.0.3 diff --git a/go.sum b/go.sum index 898c79da5b..db24b7fd06 100644 --- a/go.sum +++ b/go.sum @@ -1098,8 +1098,8 @@ github.com/turbot/go-prompt v0.2.6-steampipe.0.0.20221028122246-eb118ec58d50 h1: github.com/turbot/go-prompt v0.2.6-steampipe.0.0.20221028122246-eb118ec58d50/go.mod h1:vFnjEGDIIA/Lib7giyE4E9c50Lvl8j0S+7FVlAwDAVw= github.com/turbot/steampipe-cloud-sdk-go v0.6.0 h1:ufAxOpKS1uq7eejuE5sfEu1+d7QAd0RBjl8Bn6+mIs8= github.com/turbot/steampipe-cloud-sdk-go v0.6.0/go.mod h1:M42TMBdMim4bV1YTMxhKyzfSGSMo4CXUkm3wt9w7t1Y= -github.com/turbot/steampipe-plugin-sdk/v5 v5.6.0-rc.30 h1:hZCDSwtRMpctj+4/3ieXU8IbcLB5StgYDZjBWZ01qks= -github.com/turbot/steampipe-plugin-sdk/v5 v5.6.0-rc.30/go.mod h1:ldQ2VDEBaHR3JdaUHtjjM+7DBoBTe9Fzg5D7CfNVAhA= +github.com/turbot/steampipe-plugin-sdk/v5 v5.6.0 h1:jC7APLD/VBOHQ/NY/aAJVN9v3fhow0ges4YP0x+hOSk= +github.com/turbot/steampipe-plugin-sdk/v5 v5.6.0/go.mod h1:u2ubq9W5/5y6wG481LyulS7vuMOTRPmXAUfGLoVmwnA= github.com/twitchyliquid64/golang-asm v0.15.1 h1:SU5vSMR7hnwNxj24w34ZyCi/FmDZTkS4MhqMhdFk5YI= github.com/twitchyliquid64/golang-asm v0.15.1/go.mod h1:a1lVb/DtPvCB8fslRZhAngC2+aY1QWCk3Cedj/Gdt08= github.com/ugorji/go v0.0.0-20180813092308-00b869d2f4a5/go.mod h1:hnLbHMwcvSihnDhEfx2/BzKp2xb0Y+ErdfYcrs9tkJQ= diff --git a/pkg/constants/db.go b/pkg/constants/db.go index bd7c0b65cf..ef1ebe4833 100644 --- a/pkg/constants/db.go +++ b/pkg/constants/db.go @@ -28,7 +28,7 @@ const ( // constants for installing db and fdw images const ( DatabaseVersion = "14.2.0" - FdwVersion = "1.8.0-rc.14" + FdwVersion = "1.8.0" // PostgresImageRef is the OCI Image ref for the database binaries PostgresImageRef = "us-docker.pkg.dev/steampipe/steampipe/db:14.2.0"