Skip to content

Commit 82b4844

Browse files
dependabot[bot]demeyerthom
authored andcommitted
chore(deps): bump the go group with 3 updates
Bumps the go group with 3 updates: [github.com/hashicorp/terraform-plugin-framework](https://github.com/hashicorp/terraform-plugin-framework), [github.com/hashicorp/terraform-plugin-go](https://github.com/hashicorp/terraform-plugin-go) and [github.com/labd/contentstack-go-sdk](https://github.com/labd/contentstack-go-sdk). Updates `github.com/hashicorp/terraform-plugin-framework` from 0.8.1-0.20220531184835-f0051665855e to 1.8.0 - [Release notes](https://github.com/hashicorp/terraform-plugin-framework/releases) - [Changelog](https://github.com/hashicorp/terraform-plugin-framework/blob/main/CHANGELOG.md) - [Commits](https://github.com/hashicorp/terraform-plugin-framework/commits/v1.8.0) Updates `github.com/hashicorp/terraform-plugin-go` from 0.9.1 to 0.22.2 - [Release notes](https://github.com/hashicorp/terraform-plugin-go/releases) - [Changelog](https://github.com/hashicorp/terraform-plugin-go/blob/main/CHANGELOG.md) - [Commits](hashicorp/terraform-plugin-go@v0.9.1...v0.22.2) Updates `github.com/labd/contentstack-go-sdk` from 0.0.0-20220603201036-f342c4fb5d4e to 0.0.1 - [Release notes](https://github.com/labd/contentstack-go-sdk/releases) - [Changelog](https://github.com/labd/contentstack-go-sdk/blob/main/CHANGELOG.md) - [Commits](https://github.com/labd/contentstack-go-sdk/commits/v0.0.1) --- updated-dependencies: - dependency-name: github.com/hashicorp/terraform-plugin-framework dependency-type: direct:production update-type: version-update:semver-major dependency-group: go - dependency-name: github.com/hashicorp/terraform-plugin-go dependency-type: direct:production update-type: version-update:semver-minor dependency-group: go - dependency-name: github.com/labd/contentstack-go-sdk dependency-type: direct:production update-type: version-update:semver-patch dependency-group: go ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 6a0b20b commit 82b4844

File tree

2 files changed

+76
-180
lines changed

2 files changed

+76
-180
lines changed

go.mod

+23-24
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ go 1.18
44

55
require (
66
github.com/hashicorp/terraform-plugin-docs v0.9.0
7-
github.com/hashicorp/terraform-plugin-framework v0.8.1-0.20220531184835-f0051665855e
8-
github.com/hashicorp/terraform-plugin-go v0.9.1
9-
github.com/labd/contentstack-go-sdk v0.0.0-20220603201036-f342c4fb5d4e
7+
github.com/hashicorp/terraform-plugin-framework v1.8.0
8+
github.com/hashicorp/terraform-plugin-go v0.22.2
9+
github.com/labd/contentstack-go-sdk v0.0.1
1010
)
1111

1212
// replace github.com/labd/contentstack-go-sdk => ../contentstack-go-sdk
@@ -15,27 +15,27 @@ require (
1515
github.com/Masterminds/goutils v1.1.1 // indirect
1616
github.com/Masterminds/semver/v3 v3.1.1 // indirect
1717
github.com/Masterminds/sprig/v3 v3.2.2 // indirect
18+
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
1819
github.com/armon/go-radix v1.0.0 // indirect
1920
github.com/bgentry/speakeasy v0.1.0 // indirect
2021
github.com/fatih/color v1.13.0 // indirect
21-
github.com/golang/protobuf v1.5.2 // indirect
22-
github.com/google/go-cmp v0.5.8 // indirect
23-
github.com/google/uuid v1.3.0 // indirect
22+
github.com/golang/protobuf v1.5.4 // indirect
23+
github.com/google/uuid v1.6.0 // indirect
2424
github.com/hashicorp/errwrap v1.1.0 // indirect
2525
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
2626
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
27-
github.com/hashicorp/go-hclog v1.2.0 // indirect
27+
github.com/hashicorp/go-hclog v1.5.0 // indirect
2828
github.com/hashicorp/go-multierror v1.1.1 // indirect
29-
github.com/hashicorp/go-plugin v1.4.4 // indirect
29+
github.com/hashicorp/go-plugin v1.6.0 // indirect
3030
github.com/hashicorp/go-uuid v1.0.3 // indirect
31-
github.com/hashicorp/go-version v1.5.0 // indirect
31+
github.com/hashicorp/go-version v1.6.0 // indirect
3232
github.com/hashicorp/hc-install v0.3.2 // indirect
3333
github.com/hashicorp/terraform-exec v0.16.1 // indirect
3434
github.com/hashicorp/terraform-json v0.14.0 // indirect
35-
github.com/hashicorp/terraform-plugin-log v0.4.0 // indirect
36-
github.com/hashicorp/terraform-registry-address v0.0.0-20210412075316-9b2996cce896 // indirect
37-
github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734 // indirect
38-
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // indirect
35+
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
36+
github.com/hashicorp/terraform-registry-address v0.2.3 // indirect
37+
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
38+
github.com/hashicorp/yamux v0.1.1 // indirect
3939
github.com/huandu/xstrings v1.3.2 // indirect
4040
github.com/imdario/mergo v0.3.13 // indirect
4141
github.com/mattn/go-colorable v0.1.12 // indirect
@@ -49,15 +49,14 @@ require (
4949
github.com/russross/blackfriday v1.6.0 // indirect
5050
github.com/shopspring/decimal v1.3.1 // indirect
5151
github.com/spf13/cast v1.5.0 // indirect
52-
github.com/vmihailenco/msgpack/v4 v4.3.12 // indirect
53-
github.com/vmihailenco/tagparser v0.1.1 // indirect
54-
github.com/zclconf/go-cty v1.10.0 // indirect
55-
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
56-
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
57-
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
58-
golang.org/x/text v0.3.7 // indirect
59-
google.golang.org/appengine v1.6.6 // indirect
60-
google.golang.org/genproto v0.0.0-20200711021454-869866162049 // indirect
61-
google.golang.org/grpc v1.46.0 // indirect
62-
google.golang.org/protobuf v1.28.0 // indirect
52+
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
53+
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
54+
github.com/zclconf/go-cty v1.13.1 // indirect
55+
golang.org/x/crypto v0.19.0 // indirect
56+
golang.org/x/net v0.21.0 // indirect
57+
golang.org/x/sys v0.17.0 // indirect
58+
golang.org/x/text v0.14.0 // indirect
59+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de // indirect
60+
google.golang.org/grpc v1.63.2 // indirect
61+
google.golang.org/protobuf v1.33.0 // indirect
6362
)

0 commit comments

Comments
 (0)