Skip to content

Commit 62530c6

Browse files
authored
Merge pull request #5 from pulumi/upstream-v2.8.0
upstream v2.8.0
2 parents 2cf755b + b23eb83 commit 62530c6

File tree

28 files changed

+437
-660
lines changed

28 files changed

+437
-660
lines changed

.circleci/config.yml

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ commands:
1414
- "/go/pkg/mod"
1515

1616
jobs:
17-
"docker-go115 build":
17+
"docker-go116 build":
1818
docker:
19-
- image: docker.mirror.hashicorp.services/circleci/golang:1.15
19+
- image: docker.mirror.hashicorp.services/circleci/golang:1.16
2020
steps:
2121
- get_dependencies
2222
- run: go build ./...
23-
"docker-go115 test":
23+
"docker-go116 test":
2424
docker:
25-
- image: docker.mirror.hashicorp.services/circleci/golang:1.15
25+
- image: docker.mirror.hashicorp.services/circleci/golang:1.16
2626
environment:
2727
TF_ACC_TERRAFORM_VERSION: "0.12.26"
2828
parameters:
@@ -42,36 +42,36 @@ jobs:
4242
destination: raw-test-output
4343
- store_test_results:
4444
path: << parameters.test_results >>
45-
"docker-go115 vet":
45+
"docker-go116 vet":
4646
docker:
47-
- image: docker.mirror.hashicorp.services/circleci/golang:1.15
47+
- image: docker.mirror.hashicorp.services/circleci/golang:1.16
4848
steps:
4949
- get_dependencies
5050
- run: go vet ./...
51-
"docker-go115 gofmt":
51+
"docker-go116 gofmt":
5252
docker:
53-
- image: docker.mirror.hashicorp.services/circleci/golang:1.15
53+
- image: docker.mirror.hashicorp.services/circleci/golang:1.16
5454
steps:
5555
- get_dependencies
5656
- run: ./scripts/gofmtcheck.sh
57-
"docker-go115 release":
57+
"docker-go116 release":
5858
docker:
59-
- image: docker.mirror.hashicorp.services/circleci/golang:1.15
59+
- image: docker.mirror.hashicorp.services/circleci/golang:1.16
6060
steps:
6161
- add_ssh_keys:
6262
fingerprints:
6363
- "3b:ec:3f:f1:0d:1a:a9:2c:a6:6f:03:cb:46:37:11:50"
6464
- get_dependencies
6565
- run: ./scripts/release/release.sh
66-
"docker-go116 build":
66+
"docker-go117 build":
6767
docker:
68-
- image: docker.mirror.hashicorp.services/circleci/golang:1.16
68+
- image: docker.mirror.hashicorp.services/circleci/golang:1.17
6969
steps:
7070
- get_dependencies
7171
- run: go build ./...
72-
"docker-go116 test":
72+
"docker-go117 test":
7373
docker:
74-
- image: docker.mirror.hashicorp.services/circleci/golang:1.16
74+
- image: docker.mirror.hashicorp.services/circleci/golang:1.17
7575
environment:
7676
TF_ACC_TERRAFORM_VERSION: "0.12.26"
7777
parameters:
@@ -91,15 +91,15 @@ jobs:
9191
destination: raw-test-output
9292
- store_test_results:
9393
path: << parameters.test_results >>
94-
"docker-go116 vet":
94+
"docker-go117 vet":
9595
docker:
96-
- image: docker.mirror.hashicorp.services/circleci/golang:1.16
96+
- image: docker.mirror.hashicorp.services/circleci/golang:1.17
9797
steps:
9898
- get_dependencies
9999
- run: go vet ./...
100-
"docker-go116 gofmt":
100+
"docker-go117 gofmt":
101101
docker:
102-
- image: docker.mirror.hashicorp.services/circleci/golang:1.16
102+
- image: docker.mirror.hashicorp.services/circleci/golang:1.17
103103
steps:
104104
- get_dependencies
105105
- run: ./scripts/gofmtcheck.sh
@@ -108,16 +108,6 @@ workflows:
108108
version: 2
109109
pr:
110110
jobs:
111-
- "docker-go115 build"
112-
- "docker-go115 test":
113-
requires:
114-
- "docker-go115 build"
115-
- "docker-go115 vet":
116-
requires:
117-
- "docker-go115 build"
118-
- "docker-go115 gofmt":
119-
requires:
120-
- "docker-go115 build"
121111
- "docker-go116 build"
122112
- "docker-go116 test":
123113
requires:
@@ -128,18 +118,18 @@ workflows:
128118
- "docker-go116 gofmt":
129119
requires:
130120
- "docker-go116 build"
131-
release:
132-
jobs:
133-
- "docker-go115 build"
134-
- "docker-go115 test":
121+
- "docker-go117 build"
122+
- "docker-go117 test":
135123
requires:
136-
- "docker-go115 build"
137-
- "docker-go115 vet":
124+
- "docker-go117 build"
125+
- "docker-go117 vet":
138126
requires:
139-
- "docker-go115 build"
140-
- "docker-go115 gofmt":
127+
- "docker-go117 build"
128+
- "docker-go117 gofmt":
141129
requires:
142-
- "docker-go115 build"
130+
- "docker-go117 build"
131+
release:
132+
jobs:
143133
- "docker-go116 build"
144134
- "docker-go116 test":
145135
requires:
@@ -150,22 +140,32 @@ workflows:
150140
- "docker-go116 gofmt":
151141
requires:
152142
- "docker-go116 build"
143+
- "docker-go117 build"
144+
- "docker-go117 test":
145+
requires:
146+
- "docker-go117 build"
147+
- "docker-go117 vet":
148+
requires:
149+
- "docker-go117 build"
150+
- "docker-go117 gofmt":
151+
requires:
152+
- "docker-go117 build"
153153
- trigger-release:
154154
filters:
155155
branches:
156156
only:
157157
- main
158158
type: approval
159-
- "docker-go115 release":
159+
- "docker-go116 release":
160160
filters:
161161
branches:
162162
only:
163163
- main
164164
requires:
165165
- trigger-release
166-
- "docker-go115 test"
167-
- "docker-go115 vet"
168-
- "docker-go115 gofmt"
169166
- "docker-go116 test"
170167
- "docker-go116 vet"
171168
- "docker-go116 gofmt"
169+
- "docker-go117 test"
170+
- "docker-go117 vet"
171+
- "docker-go117 gofmt"

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.15.8
1+
1.16.7

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# 2.8.0 (September 24, 2021)
2+
3+
NOTES:
4+
5+
* Updated to [terraform-plugin-go v0.4.0](https://github.com/hashicorp/terraform-plugin-go/blob/main/CHANGELOG.md#040-september-24-2021). Users of terraform-plugin-mux will need to upgrade terraform-plugin-mux as well.
6+
7+
ENHANCEMENTS:
8+
9+
* Added experimental support for retrieving underlying raw protocol values from `helper/schema.ResourceData` and `helper/schema.ResourceDiff`, bypassing the shims. ([#802](https://github.com/hashicorp/terraform-plugin-sdk/issues/802))
10+
11+
# 2.7.1 (August 31, 2021)
12+
13+
BUG FIXES:
14+
15+
* helper/schema: Ensure `Provider.ConfigureContextFunc` warning-only diagnostics are returned ([#791](https://github.com/hashicorp/terraform-plugin-sdk/issues/791))
16+
117
# 2.7.0 (June 25, 2021)
218

319
ENHANCEMENTS:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ When running provider tests, Terraform 0.12.26 or later is needed for version 2.
1616

1717
The Terraform Plugin SDK is built in Go, and uses the [support policy](https://golang.org/doc/devel/release.html#policy) of Go as its support policy. The two latest major releases of Go are supported by the SDK.
1818

19-
Currently, that means Go **1.15** or later must be used when building a provider with the SDK.
19+
Currently, that means Go **1.16** or later must be used when building a provider with the SDK.
2020

2121
## Getting Started
2222

ROADMAP.md

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Q1 2021 Roadmap
1+
# Q3 2021 Roadmap
22

33
Each quarter, the team will highlight areas of focus for our work and upcoming
44
research.
55

66
Each release will include necessary tasks that lead to the completion of the
77
stated goals as well as community pull requests, enhancements, and features
88
that are not highlighted in the roadmap. This upcoming calendar quarter
9-
(Jan-Mar 2021) we will be prioritizing the following areas of work:
9+
(Aug-Oct 2021) we will be prioritizing the following areas of work:
1010

1111
## Currently In Progress
1212

@@ -27,25 +27,26 @@ abstractions](https://github.com/hashicorp/terraform-plugin-go-contrib) for
2727
terraform-plugin-go that developers may find useful and will help inform our
2828
future design efforts.
2929

30-
## Under Research
31-
3230
### An HCL2-native framework
3331

34-
With the release of terraform-plugin-go, we're researching, prototyping, and
35-
designing a framework based on the same ideas and foundations, meant to mirror
36-
terraform-plugin-sdk in approachability and ease of use while retaining
37-
terraform-plugin-go's level of suitability for modern Terraform development.
32+
Following the release of
33+
[terraform-plugin-framework](https://github.com/hashicorp/terraform-plugin-framework)
34+
we will work to add more features to the framework, aiming for feature parity with
35+
SDKv2, and work to make the framework more approachable, easier to use, and better
36+
documented.
37+
38+
### More observable provider development
39+
40+
With the release of
41+
[terraform-plugin-log](https://github.com/hashicorp/terraform-plugin-log) we will work
42+
to integrate this tooling into terraform-plugin-go, terraform-plugin-framework, and v2
43+
of the SDK to help enable more powerful debugging of Terraform providers.
44+
45+
## Under Research
3846

3947
### A modernized testing framework
4048

4149
Following the creation of our reattach-based binary test driver in v2.0.0 of
4250
the SDK, we're investigating what a redesigned approach to testing Terraform
4351
providers may look like and if we can aid developers in making and testing
4452
clearer assertions about their providers.
45-
46-
### More observable provider development
47-
48-
We're currently researching and investigating ways in which we can surface more
49-
information to provider developers about what is happening in their providers,
50-
and how we can make the information we surface more accessible and easier to
51-
digest.

go.mod

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/hashicorp/terraform-plugin-sdk/v2
22

3-
go 1.15
3+
go 1.16
44

55
require (
66
cloud.google.com/go v0.61.0 // indirect
@@ -11,9 +11,7 @@ require (
1111
github.com/davecgh/go-spew v1.1.1
1212
github.com/go-test/deep v1.0.3
1313
github.com/golang/mock v1.4.3
14-
github.com/golang/snappy v0.0.1
1514
github.com/google/go-cmp v0.5.6
16-
github.com/hashicorp/errwrap v1.0.0
1715
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320
1816
github.com/hashicorp/go-hclog v0.15.0
1917
github.com/hashicorp/go-multierror v1.0.0
@@ -24,15 +22,14 @@ require (
2422
github.com/hashicorp/logutils v1.0.0
2523
github.com/hashicorp/terraform-exec v0.14.0
2624
github.com/hashicorp/terraform-json v0.12.0
27-
github.com/hashicorp/terraform-plugin-go v0.3.0
25+
github.com/hashicorp/terraform-plugin-go v0.4.0
2826
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // indirect
2927
github.com/kylelemons/godebug v1.1.0 // indirect
3028
github.com/mitchellh/copystructure v1.2.0
3129
github.com/mitchellh/go-testing-interface v1.0.4
3230
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
3331
github.com/mitchellh/mapstructure v1.1.2
3432
github.com/mitchellh/reflectwalk v1.0.2
35-
github.com/pierrec/lz4 v2.0.5+incompatible
3633
github.com/zclconf/go-cty v1.8.4
3734
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b
3835
golang.org/x/tools v0.0.0-20200713011307-fd294ab11aed

go.sum

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ github.com/agext/levenshtein v1.2.1/go.mod h1:JEDfjyjHDjOF/1e4FlBE/PkbqA9OfWu2ki
4848
github.com/agext/levenshtein v1.2.2 h1:0S/Yg6LYmFJ5stwQeRp6EeOcCbj7xiqQSdNelsXvaqE=
4949
github.com/agext/levenshtein v1.2.2/go.mod h1:JEDfjyjHDjOF/1e4FlBE/PkbqA9OfWu2ki2W0IB5558=
5050
github.com/andybalholm/crlf v0.0.0-20171020200849-670099aa064f/go.mod h1:k8feO4+kXDxro6ErPXBRTJ/ro2mf0SsFG8s7doP9kJE=
51-
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239 h1:kFOfPq6dUM1hTo4JG6LR5AXSUEsOjtdm0kw0FtQtMJA=
5251
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod h1:2FmKhYUyUczH0OGQWaF5ceTx0UBShxjsH6f8oGKYe2c=
5352
github.com/apparentlymart/go-cidr v1.0.1 h1:NmIwLZ/KdsjIUlhf+/Np40atNXm/+lZ5txfTJ/SpF+U=
5453
github.com/apparentlymart/go-cidr v1.0.1/go.mod h1:EBcsNrHc3zQeuaeCeCtQruQm+n9/YjEn/vI25Lg7Gwc=
@@ -61,7 +60,6 @@ github.com/apparentlymart/go-textseg/v12 v12.0.0/go.mod h1:S/4uRK2UtaQttw1GenVJE
6160
github.com/apparentlymart/go-textseg/v13 v13.0.0 h1:Y+KvPE1NYz0xl601PVImeQfFyEy6iT90AvPUL1NNfNw=
6261
github.com/apparentlymart/go-textseg/v13 v13.0.0/go.mod h1:ZK2fH7c4NqDTLtiYLvIkEghdlcqw7yxLeM89kiTRPUo=
6362
github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8=
64-
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio=
6563
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=
6664
github.com/aws/aws-sdk-go v1.15.78/go.mod h1:E3/ieXAlvM0XWO57iftYVDLLvQ824smPP3ATZkfNZeM=
6765
github.com/aws/aws-sdk-go v1.25.3 h1:uM16hIw9BotjZKMZlX05SN2EFtaWfi/NonPKIARiBLQ=
@@ -88,16 +86,13 @@ github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1m
8886
github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
8987
github.com/fatih/color v1.7.0 h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=
9088
github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=
91-
github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 h1:BHsljHzVlRcyQhjrss6TZTdY2VfCqZPbv5k3iBFa2ZQ=
9289
github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod h1:xEzjJPgXI435gkrCt3MPfRiAkVrwSbHsst4LCFVfpJc=
93-
github.com/gliderlabs/ssh v0.2.2 h1:6zsha5zo/TWhRhwqCD3+EarCAgZ2yN28ipRnGPnwkI0=
9490
github.com/gliderlabs/ssh v0.2.2/go.mod h1:U7qILu1NlMHj9FlMhZLlkCdDnU1DBEAqr0aevW3Awn0=
9591
github.com/go-git/gcfg v1.5.0 h1:Q5ViNfGF8zFgyJWPqYwA7qGFoMTEiBmdlkcfRmpIMa4=
9692
github.com/go-git/gcfg v1.5.0/go.mod h1:5m20vg6GwYabIxaOonVkTdrILxQMpEShl1xiMF4ua+E=
9793
github.com/go-git/go-billy/v5 v5.2.0/go.mod h1:pmpqyWchKfYfrkb/UVH4otLvyi/5gJlGI4Hb3ZqZ3W0=
9894
github.com/go-git/go-billy/v5 v5.3.1 h1:CPiOUAzKtMRvolEKw+bG1PLRpT7D3LIs3/3ey4Aiu34=
9995
github.com/go-git/go-billy/v5 v5.3.1/go.mod h1:pmpqyWchKfYfrkb/UVH4otLvyi/5gJlGI4Hb3ZqZ3W0=
100-
github.com/go-git/go-git-fixtures/v4 v4.2.1 h1:n9gGL1Ct/yIw+nfsfr8s4+sbhT+Ncu2SubfXjIWgci8=
10196
github.com/go-git/go-git-fixtures/v4 v4.2.1/go.mod h1:K8zd3kDUAykwTdDCr+I0per6Y6vMiRR/nnVTBtavnB0=
10297
github.com/go-git/go-git/v5 v5.4.2 h1:BXyZu9t0VkbiHtqrsvdq39UDhGJTl1h55VW6CSC4aY4=
10398
github.com/go-git/go-git/v5 v5.4.2/go.mod h1:gQ1kArt6d+n+BGd+/B/I74HwRTLhth2+zti4ihgckDc=
@@ -133,8 +128,6 @@ github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvq
133128
github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8=
134129
github.com/golang/protobuf v1.4.2 h1:+Z5KGCizgyZCbGh1KZqA0fcLLkwbsjIzS4aV2v7wJX0=
135130
github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
136-
github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4=
137-
github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
138131
github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
139132
github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
140133
github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=
@@ -200,8 +193,8 @@ github.com/hashicorp/terraform-exec v0.14.0 h1:UQoUcxKTZZXhyyK68Cwn4mApT4mnFPmEX
200193
github.com/hashicorp/terraform-exec v0.14.0/go.mod h1:qrAASDq28KZiMPDnQ02sFS9udcqEkRly002EA2izXTA=
201194
github.com/hashicorp/terraform-json v0.12.0 h1:8czPgEEWWPROStjkWPUnTQDXmpmZPlkQAwYYLETaTvw=
202195
github.com/hashicorp/terraform-json v0.12.0/go.mod h1:pmbq9o4EuL43db5+0ogX10Yofv1nozM+wskr/bGFJpI=
203-
github.com/hashicorp/terraform-plugin-go v0.3.0 h1:AJqYzP52JFYl9NABRI7smXI1pNjgR5Q/y2WyVJ/BOZA=
204-
github.com/hashicorp/terraform-plugin-go v0.3.0/go.mod h1:dFHsQMaTLpON2gWhVWT96fvtlc/MF1vSy3OdMhWBzdM=
196+
github.com/hashicorp/terraform-plugin-go v0.4.0 h1:LFbXNeLDo0J/wR0kUzSPq0RpdmFh2gNedzU0n/gzPAo=
197+
github.com/hashicorp/terraform-plugin-go v0.4.0/go.mod h1:7u/6nt6vaiwcWE2GuJKbJwNlDFnf5n95xKw4hqIVr58=
205198
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb/go.mod h1:+NfK9FKeTrX5uv1uIXGdwYDTeHna2qgaIlx54MXqjAM=
206199
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d h1:kJCB4vdITiW1eC1vq2e6IsrXKrZit1bv/TDYFGMp4BQ=
207200
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d/go.mod h1:+NfK9FKeTrX5uv1uIXGdwYDTeHna2qgaIlx54MXqjAM=
@@ -237,7 +230,6 @@ github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
237230
github.com/kylelemons/godebug v0.0.0-20170820004349-d65d576e9348/go.mod h1:B69LEHPfb2qLo0BaaOLcbitczOKLWTsrBG9LczfCD4k=
238231
github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc=
239232
github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw=
240-
github.com/matryer/is v1.2.0 h1:92UTHpy8CDwaJ08GqLDzhhuixiBUUD1p3AU6PHddz4A=
241233
github.com/matryer/is v1.2.0/go.mod h1:2fLPjFQM9rhQ15aVEtbuwhJinnOqrmgXPNdZsdwlWXA=
242234
github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU=
243235
github.com/mattn/go-colorable v0.1.4 h1:snbPLB8fVfU9iwbbo30TPtbLRzwWu6aJS6Xh4eaaviA=
@@ -272,10 +264,7 @@ github.com/nsf/jsondiff v0.0.0-20200515183724-f29ed568f4ce h1:RPclfga2SEJmgMmz2k
272264
github.com/nsf/jsondiff v0.0.0-20200515183724-f29ed568f4ce/go.mod h1:uFMI8w+ref4v2r9jz+c9i1IfIttS/OkmLfrk1jne5hs=
273265
github.com/oklog/run v1.0.0 h1:Ru7dDtJNOyC66gQ5dQmaCa0qIsAUFY3sFpK1Xk8igrw=
274266
github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA=
275-
github.com/pierrec/lz4 v2.0.5+incompatible h1:2xWsjqPFWcplujydGg4WmhC/6fZqK42wMM8aXeqhl0I=
276-
github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY=
277267
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
278-
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
279268
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
280269
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
281270
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
@@ -585,7 +574,6 @@ gopkg.in/warnings.v0 v0.1.2 h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME=
585574
gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI=
586575
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
587576
gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
588-
gopkg.in/yaml.v2 v2.3.0 h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU=
589577
gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
590578
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo=
591579
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

0 commit comments

Comments
 (0)