Skip to content

Commit 8eb45ae

Browse files
Merge pull request #2 from cyrilgdn/master
Merge from upstream
2 parents 0941172 + 6850ed9 commit 8eb45ae

22 files changed

+2867
-233
lines changed

.github/workflows/golangci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v2.3.4
13+
uses: actions/checkout@v3.0.1
1414

1515
- name: Setup Go
1616
uses: actions/setup-go@v2
@@ -20,6 +20,6 @@ jobs:
2020
- run: go mod vendor
2121

2222
- name: Run golangci-lint
23-
uses: golangci/golangci-lint-action@v2.5.2
23+
uses: golangci/golangci-lint-action@v3.1.0
2424
with:
2525
version: v1.40

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
## Unreleased
22

3+
## 1.16.0 (May 8, 2022)
4+
5+
FEATURES:
6+
7+
* Add SOCKS proxy support - @Tenzer
8+
[#195](https://github.com/cyrilgdn/terraform-provider-postgresql/pull/195)
9+
10+
* New resource: `postgresql_function` - @dump247
11+
[#200](https://github.com/cyrilgdn/terraform-provider-postgresql/pull/200)
12+
13+
* New resource: `postgresql_publication` - @chromko
14+
[#192](https://github.com/cyrilgdn/terraform-provider-postgresql/pull/192)
15+
16+
DEV IMPROVEMENTS:
17+
18+
* Update gocloud to v0.25 - @alethenorio
19+
[#204](https://github.com/cyrilgdn/terraform-provider-postgresql/pull/204)
20+
21+
* Update terraform-plugin-sdk to v2.15 - @cyrilgdn
22+
[#205](https://github.com/cyrilgdn/terraform-provider-postgresql/pull/205)
23+
324
## 1.15.0 (February 4, 2022)
425

526
FEATURES:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ In order to manually run some Acceptance test locally, run the following command
7171
make testacc_setup
7272

7373
# Load the needed environment variables for the tests
74-
source tests/env.sh
74+
source tests/switch_superuser.sh
7575

7676
# Run the test(s) that you're working on as often as you want
7777
TF_LOG=INFO go test -v ./postgresql -run ^TestAccPostgresqlRole_Basic$

go.mod

Lines changed: 48 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -3,75 +3,82 @@ module github.com/terraform-providers/terraform-provider-postgresql
33
go 1.17
44

55
require (
6-
github.com/aws/aws-sdk-go-v2 v1.9.0
7-
github.com/aws/aws-sdk-go-v2/config v1.8.0
6+
github.com/aws/aws-sdk-go-v2 v1.16.2
7+
github.com/aws/aws-sdk-go-v2/config v1.15.3
88
github.com/aws/aws-sdk-go-v2/feature/rds/auth v1.1.6
99
github.com/blang/semver v3.5.1+incompatible
10-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.10.1
11-
github.com/lib/pq v1.9.0
10+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.15.0
11+
github.com/lib/pq v1.10.4
1212
github.com/sean-/postgresql-acl v0.0.0-20161225120419-d10489e5d217
13-
gocloud.dev v0.21.0
13+
gocloud.dev v0.25.0
14+
golang.org/x/net v0.0.0-20220401154927-543a649e0bdd
1415
)
1516

1617
require (
17-
cloud.google.com/go v0.72.0 // indirect
18+
cloud.google.com/go/compute v1.5.0 // indirect
1819
contrib.go.opencensus.io/integrations/ocsql v0.1.7 // indirect
19-
github.com/GoogleCloudPlatform/cloudsql-proxy v1.19.1 // indirect
20+
github.com/GoogleCloudPlatform/cloudsql-proxy v1.29.0 // indirect
2021
github.com/agext/levenshtein v1.2.2 // indirect
21-
github.com/apparentlymart/go-textseg v1.0.0 // indirect
2222
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
23-
github.com/aws/aws-sdk-go-v2/credentials v1.4.0 // indirect
24-
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.5.0 // indirect
25-
github.com/aws/aws-sdk-go-v2/internal/ini v1.2.2 // indirect
26-
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.3.0 // indirect
27-
github.com/aws/aws-sdk-go-v2/service/sso v1.4.0 // indirect
28-
github.com/aws/aws-sdk-go-v2/service/sts v1.7.0 // indirect
29-
github.com/aws/smithy-go v1.8.0 // indirect
23+
github.com/aws/aws-sdk-go-v2/credentials v1.11.2 // indirect
24+
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.3 // indirect
25+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.9 // indirect
26+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.3 // indirect
27+
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.10 // indirect
28+
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.3 // indirect
29+
github.com/aws/aws-sdk-go-v2/service/sso v1.11.3 // indirect
30+
github.com/aws/aws-sdk-go-v2/service/sts v1.16.3 // indirect
31+
github.com/aws/smithy-go v1.11.2 // indirect
3032
github.com/davecgh/go-spew v1.1.1 // indirect
3133
github.com/fatih/color v1.7.0 // indirect
32-
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
33-
github.com/golang/protobuf v1.4.3 // indirect
34-
github.com/google/go-cmp v0.5.6 // indirect
35-
github.com/google/wire v0.4.0 // indirect
36-
github.com/googleapis/gax-go/v2 v2.0.5 // indirect
34+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
35+
github.com/golang/protobuf v1.5.2 // indirect
36+
github.com/google/go-cmp v0.5.8 // indirect
37+
github.com/google/wire v0.5.0 // indirect
38+
github.com/googleapis/gax-go/v2 v2.2.0 // indirect
3739
github.com/hashicorp/errwrap v1.0.0 // indirect
3840
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
3941
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
4042
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect
41-
github.com/hashicorp/go-hclog v0.16.1 // indirect
43+
github.com/hashicorp/go-hclog v1.2.0 // indirect
4244
github.com/hashicorp/go-multierror v1.1.1 // indirect
43-
github.com/hashicorp/go-plugin v1.4.1 // indirect
44-
github.com/hashicorp/go-uuid v1.0.2 // indirect
45-
github.com/hashicorp/go-version v1.3.0 // indirect
45+
github.com/hashicorp/go-plugin v1.4.3 // indirect
46+
github.com/hashicorp/go-uuid v1.0.3 // indirect
47+
github.com/hashicorp/go-version v1.4.0 // indirect
4648
github.com/hashicorp/hc-install v0.3.1 // indirect
47-
github.com/hashicorp/hcl/v2 v2.3.0 // indirect
49+
github.com/hashicorp/hcl/v2 v2.12.0 // indirect
4850
github.com/hashicorp/logutils v1.0.0 // indirect
49-
github.com/hashicorp/terraform-exec v0.15.0 // indirect
51+
github.com/hashicorp/terraform-exec v0.16.1 // indirect
5052
github.com/hashicorp/terraform-json v0.13.0 // indirect
51-
github.com/hashicorp/terraform-plugin-go v0.5.0 // indirect
52-
github.com/hashicorp/terraform-plugin-log v0.2.0 // indirect
53+
github.com/hashicorp/terraform-plugin-go v0.9.0 // indirect
54+
github.com/hashicorp/terraform-plugin-log v0.4.0 // indirect
5355
github.com/hashicorp/terraform-registry-address v0.0.0-20210412075316-9b2996cce896 // indirect
5456
github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734 // indirect
5557
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // indirect
56-
github.com/mattn/go-colorable v0.1.4 // indirect
58+
github.com/mattn/go-colorable v0.1.6 // indirect
5759
github.com/mattn/go-isatty v0.0.12 // indirect
5860
github.com/mitchellh/copystructure v1.2.0 // indirect
5961
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
6062
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
61-
github.com/mitchellh/mapstructure v1.4.0 // indirect
63+
github.com/mitchellh/mapstructure v1.5.0 // indirect
6264
github.com/mitchellh/reflectwalk v1.0.2 // indirect
6365
github.com/oklog/run v1.0.0 // indirect
6466
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
65-
github.com/zclconf/go-cty v1.9.1 // indirect
66-
go.opencensus.io v0.22.5 // indirect
67-
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e // indirect
68-
golang.org/x/net v0.0.0-20210326060303-6b1517762897 // indirect
69-
golang.org/x/oauth2 v0.0.0-20201203001011-0b49973bad19 // indirect
70-
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
71-
golang.org/x/text v0.3.5 // indirect
72-
google.golang.org/api v0.36.0 // indirect
67+
github.com/vmihailenco/msgpack/v4 v4.3.12 // indirect
68+
github.com/vmihailenco/tagparser v0.1.1 // indirect
69+
github.com/zclconf/go-cty v1.10.0 // indirect
70+
go.opencensus.io v0.23.0 // indirect
71+
go.uber.org/atomic v1.9.0 // indirect
72+
go.uber.org/multierr v1.8.0 // indirect
73+
go.uber.org/zap v1.21.0 // indirect
74+
golang.org/x/crypto v0.0.0-20220331220935-ae2d96664a29 // indirect
75+
golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a // indirect
76+
golang.org/x/sys v0.0.0-20220330033206-e17cdc41300f // indirect
77+
golang.org/x/text v0.3.7 // indirect
78+
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65 // indirect
79+
google.golang.org/api v0.74.0 // indirect
7380
google.golang.org/appengine v1.6.7 // indirect
74-
google.golang.org/genproto v0.0.0-20201203001206-6486ece9c497 // indirect
75-
google.golang.org/grpc v1.34.0 // indirect
76-
google.golang.org/protobuf v1.25.0 // indirect
81+
google.golang.org/genproto v0.0.0-20220401170504-314d38edb7de // indirect
82+
google.golang.org/grpc v1.45.0 // indirect
83+
google.golang.org/protobuf v1.28.0 // indirect
7784
)

0 commit comments

Comments
 (0)