Skip to content

Commit 55ba583

Browse files
committed
Bump dependencies for Snyk (closes #37)
1 parent 83fecde commit 55ba583

File tree

5 files changed

+93
-62
lines changed

5 files changed

+93
-62
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 0.7.3 (2023-11-01)
2+
--------------------------
3+
Bump dependencies for Snyk (#37)
4+
15
Version 0.7.2 (2023-07-14)
26
--------------------------
37
Bump Go Version to 1.20 (#34)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ payload_2 = "${replace(local.payload_1, "/\"(true)\"/", "$1")}"
128128
# Convert "false" > false
129129
payload_3 = "${replace(local.payload_2, "/\"(false)\"/", "$1")}"
130130
```
131-
131+
132132
### Publishing
133133

134134
This is handled through CI/CD on Github Actions. However all binaries will be generated by using the `make` command for local publishing.
@@ -149,7 +149,7 @@ limitations under the License.
149149
[actions-image]: https://github.com/snowplow-devops/terraform-provider-snowplow/workflows/ci/badge.svg
150150
[actions]: https://github.com/snowplow-devops/terraform-provider-snowplow/actions
151151

152-
[release-image]: http://img.shields.io/badge/release-0.7.2-6ad7e5.svg?style=flat
152+
[release-image]: http://img.shields.io/badge/release-0.7.3-6ad7e5.svg?style=flat
153153
[releases]: https://github.com/snowplow-devops/terraform-provider-snowplow/releases
154154

155155
[license-image]: http://img.shields.io/badge/license-Apache--2-blue.svg?style=flat

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.2
1+
0.7.3-rc1

go.mod

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,40 +3,40 @@ module github.com/snowplow-devops/terraform-provider-snowplow
33
go 1.20
44

55
require (
6-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.27.0
6+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.29.0
77
github.com/imdario/mergo v0.3.16
88
github.com/snowplow/snowplow-golang-tracker/v2 v2.4.1
9-
github.com/stretchr/testify v1.7.2
9+
github.com/stretchr/testify v1.8.4
1010
github.com/twinj/uuid v1.0.0
1111
)
1212

1313
require (
1414
github.com/agext/levenshtein v1.2.3 // indirect
15-
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
15+
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
1616
github.com/davecgh/go-spew v1.1.1 // indirect
1717
github.com/fatih/color v1.15.0 // indirect
1818
github.com/golang/protobuf v1.5.3 // indirect
19-
github.com/google/go-cmp v0.5.9 // indirect
20-
github.com/google/uuid v1.3.0 // indirect
19+
github.com/google/go-cmp v0.6.0 // indirect
20+
github.com/google/uuid v1.4.0 // indirect
2121
github.com/hashicorp/errwrap v1.1.0 // indirect
2222
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect
2323
github.com/hashicorp/go-hclog v1.5.0 // indirect
2424
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
2525
github.com/hashicorp/go-memdb v1.3.4 // indirect
2626
github.com/hashicorp/go-multierror v1.1.1 // indirect
27-
github.com/hashicorp/go-plugin v1.4.10 // indirect
27+
github.com/hashicorp/go-plugin v1.5.2 // indirect
2828
github.com/hashicorp/go-uuid v1.0.3 // indirect
2929
github.com/hashicorp/go-version v1.6.0 // indirect
30-
github.com/hashicorp/golang-lru v0.5.4 // indirect
31-
github.com/hashicorp/hcl/v2 v2.17.0 // indirect
30+
github.com/hashicorp/golang-lru v1.0.2 // indirect
31+
github.com/hashicorp/hcl/v2 v2.19.1 // indirect
3232
github.com/hashicorp/logutils v1.0.0 // indirect
33-
github.com/hashicorp/terraform-plugin-go v0.18.0 // indirect
33+
github.com/hashicorp/terraform-plugin-go v0.19.0 // indirect
3434
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
35-
github.com/hashicorp/terraform-registry-address v0.2.1 // indirect
35+
github.com/hashicorp/terraform-registry-address v0.2.3 // indirect
3636
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
3737
github.com/hashicorp/yamux v0.1.1 // indirect
3838
github.com/mattn/go-colorable v0.1.13 // indirect
39-
github.com/mattn/go-isatty v0.0.19 // indirect
39+
github.com/mattn/go-isatty v0.0.20 // indirect
4040
github.com/mattn/go-sqlite3 v2.0.2+incompatible // indirect
4141
github.com/mitchellh/copystructure v1.2.0 // indirect
4242
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
@@ -47,15 +47,17 @@ require (
4747
github.com/oklog/run v1.1.0 // indirect
4848
github.com/pmezard/go-difflib v1.0.0 // indirect
4949
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
50-
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect
50+
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
5151
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
52-
github.com/zclconf/go-cty v1.13.2 // indirect
53-
golang.org/x/net v0.12.0 // indirect
54-
golang.org/x/sys v0.10.0 // indirect
55-
golang.org/x/text v0.11.0 // indirect
56-
google.golang.org/appengine v1.6.7 // indirect
57-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529 // indirect
58-
google.golang.org/grpc v1.56.1 // indirect
52+
github.com/zclconf/go-cty v1.14.1 // indirect
53+
golang.org/x/net v0.17.0 // indirect
54+
golang.org/x/sys v0.13.0 // indirect
55+
golang.org/x/text v0.13.0 // indirect
56+
golang.org/x/tools v0.14.0 // indirect
57+
golang.org/x/tools/cmd/cover v0.1.0-deprecated // indirect
58+
google.golang.org/appengine v1.6.8 // indirect
59+
google.golang.org/genproto/googleapis/rpc v0.0.0-20231030173426-d783a09b4405 // indirect
60+
google.golang.org/grpc v1.59.0 // indirect
5961
google.golang.org/protobuf v1.31.0 // indirect
6062
gopkg.in/stretchr/testify.v1 v1.2.2 // indirect
6163
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)