Skip to content

Commit 992b5dc

Browse files
authored
Fixed the steampipe commit reference for the issue fixed in v1.11.3 (#482)
1 parent ac602a8 commit 992b5dc

File tree

4 files changed

+52
-48
lines changed

4 files changed

+52
-48
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v1.11.4 [2024-07-17]
2+
_Bug fixes_
3+
* Fixed the steampipe commit reference for the issue fixed in v1.11.3.
4+
15
## v1.11.3 [2024-06-06]
26
_Bug fixes_
37
* Update CreateConnectionPlugins to do not abort when unrelated connections are not yet loaded. ([#474](https://github.com/turbot/steampipe-postgres-fdw/issues/474))

go.mod

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ require (
1010
github.com/hashicorp/go-hclog v1.6.3
1111
github.com/hashicorp/go-version v1.6.0 // indirect
1212
github.com/turbot/go-kit v0.10.0-rc.0
13-
//main 7cb8edd1b25cfc85e9d5c56786fecf4f0ead9339 (fix: do not abort when unrelated connections are not yet loaded)
14-
github.com/turbot/steampipe v1.7.0-rc.0.0.20240417105518-bd915693c2ea
13+
//v0.23.x 99d3e09e3c0b (fix: do not abort when unrelated connections are not yet loaded)
14+
github.com/turbot/steampipe v1.7.0-rc.0.0.20240717120241-99d3e09e3c0b
1515
github.com/turbot/steampipe-plugin-sdk/v5 v5.11.0-alpha.1
1616
go.opentelemetry.io/otel v1.26.0
1717
google.golang.org/protobuf v1.34.1
@@ -23,17 +23,18 @@ require (
2323
)
2424

2525
require (
26-
cloud.google.com/go v0.112.0 // indirect
27-
cloud.google.com/go/compute v1.24.0 // indirect
26+
cloud.google.com/go v0.112.1 // indirect
27+
cloud.google.com/go/compute v1.25.1 // indirect
2828
cloud.google.com/go/compute/metadata v0.2.3 // indirect
2929
cloud.google.com/go/iam v1.1.6 // indirect
30-
cloud.google.com/go/storage v1.36.0 // indirect
30+
cloud.google.com/go/storage v1.38.0 // indirect
3131
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect
32-
github.com/Microsoft/hcsshim v0.11.4 // indirect
32+
github.com/Microsoft/hcsshim v0.11.5 // indirect
3333
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
3434
github.com/aws/aws-sdk-go v1.44.189 // indirect
3535
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
3636
github.com/briandowns/spinner v1.23.0 // indirect
37+
github.com/containerd/errdefs v0.1.0 // indirect
3738
github.com/containerd/log v0.1.0 // indirect
3839
github.com/eko/gocache/lib/v4 v4.1.5 // indirect
3940
github.com/eko/gocache/store/bigcache/v4 v4.2.1 // indirect
@@ -46,7 +47,7 @@ require (
4647
github.com/golang/mock v1.6.0 // indirect
4748
github.com/google/s2a-go v0.1.7 // indirect
4849
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
49-
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
50+
github.com/googleapis/gax-go/v2 v2.12.2 // indirect
5051
github.com/hashicorp/go-getter v1.7.4 // indirect
5152
github.com/hashicorp/go-safetemp v1.0.0 // indirect
5253
github.com/hashicorp/terraform-registry-address v0.2.1 // indirect
@@ -67,16 +68,16 @@ require (
6768
github.com/turbot/pipe-fittings v1.2.0 // indirect
6869
github.com/turbot/terraform-components v0.0.0-20231213122222-1f3526cab7a7 // indirect
6970
github.com/ulikunitz/xz v0.5.10 // indirect
70-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.47.0 // indirect
71-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 // indirect
71+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect
72+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
7273
go.uber.org/atomic v1.9.0 // indirect
7374
go.uber.org/multierr v1.9.0 // indirect
7475
golang.org/x/mod v0.13.0 // indirect
7576
golang.org/x/term v0.20.0 // indirect
7677
golang.org/x/time v0.5.0 // indirect
7778
golang.org/x/tools v0.14.0 // indirect
78-
google.golang.org/api v0.162.0 // indirect
79-
google.golang.org/genproto/googleapis/api v0.0.0-20240227224415-6ceb2ff114de // indirect
79+
google.golang.org/api v0.169.0 // indirect
80+
google.golang.org/genproto/googleapis/api v0.0.0-20240318140521-94a12d6c2237 // indirect
8081
google.golang.org/genproto/googleapis/rpc v0.0.0-20240401170217-c3f982113cda // indirect
8182
oras.land/oras-go/v2 v2.5.0 // indirect
8283
sigs.k8s.io/yaml v1.4.0 // indirect
@@ -94,7 +95,7 @@ require (
9495
github.com/btubbs/datetime v0.1.1 // indirect
9596
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
9697
github.com/cespare/xxhash/v2 v2.2.0 // indirect
97-
github.com/containerd/containerd v1.7.16 // indirect
98+
github.com/containerd/containerd v1.7.18 // indirect
9899
github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964 // indirect
99100
github.com/dustin/go-humanize v1.0.0 // indirect
100101
github.com/fatih/color v1.17.0 // indirect
@@ -175,13 +176,13 @@ require (
175176
golang.org/x/crypto v0.23.0 // indirect
176177
golang.org/x/exp v0.0.0-20231006140011-7918f672742d
177178
golang.org/x/net v0.25.0 // indirect
178-
golang.org/x/oauth2 v0.17.0 // indirect
179+
golang.org/x/oauth2 v0.18.0 // indirect
179180
golang.org/x/sync v0.7.0 // indirect
180181
golang.org/x/sys v0.20.0 // indirect
181182
golang.org/x/text v0.15.0 // indirect
182183
google.golang.org/appengine v1.6.8 // indirect
183184
google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect
184-
google.golang.org/grpc v1.63.2 // indirect
185+
google.golang.org/grpc v1.64.0 // indirect
185186
gopkg.in/ini.v1 v1.67.0 // indirect
186187
gopkg.in/yaml.v2 v2.4.0 // indirect
187188
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)