Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace mapstructure with fork #5377

Merged
merged 1 commit into from
Apr 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ replace gopkg.in/DATA-DOG/go-sqlmock.v1 => gopkg.in/DATA-DOG/go-sqlmock.v1 v1.3.
// See https://github.com/mattn/go-ieproxy/issues/31
replace github.com/mattn/go-ieproxy => github.com/mattn/go-ieproxy v0.0.1

// See https://github.com/mitchellh/mapstructure/pull/278
replace github.com/mitchellh/mapstructure v1.4.3 => github.com/TheThingsIndustries/mapstructure v0.0.0-20220329135826-c42f9f170b2a

require (
contrib.go.opencensus.io/exporter/prometheus v0.4.0
// NOTE: github.com/Azure/azure-storage-blob-go is actually a different version (see above).
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ github.com/TheThingsIndustries/gogoprotobuf v1.3.1 h1:bjjlt2OLpIpUxinNSvZH/0wQxz
github.com/TheThingsIndustries/gogoprotobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o=
github.com/TheThingsIndustries/grpc-gateway v1.15.2-gogo h1:rWB4sbEKoL7xUC9ixUkJOBlPOeF0hcwzXHTISXZM7eA=
github.com/TheThingsIndustries/grpc-gateway v1.15.2-gogo/go.mod h1:fU1VeKM8T+38FAMQNH0zO2BT6grnMyphff4CD9w1DTM=
github.com/TheThingsIndustries/mapstructure v0.0.0-20220329135826-c42f9f170b2a h1:b/0P0Ria7uJgfGnk6dgPdarnaYR/KGV92Dr7mxejME8=
github.com/TheThingsIndustries/mapstructure v0.0.0-20220329135826-c42f9f170b2a/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=
github.com/TheThingsIndustries/mystique v0.0.0-20211230093812-d4088bd06959 h1:YRyHofsKjSff/aofUxYl0PuSibYaYZMXGrOGD4w1ayE=
github.com/TheThingsIndustries/mystique v0.0.0-20211230093812-d4088bd06959/go.mod h1:zJmv+zv/E4SFsThOS+ExjtJf3M1x2MOziwyHI7l5zZo=
github.com/TheThingsIndustries/protoc-gen-go-json v1.3.1 h1:17cc7BIOP+gxnQiWKWchjtefcz1daA2O5wZKM/3n2xw=
Expand Down Expand Up @@ -510,8 +512,6 @@ github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:F
github.com/mitchellh/mapstructure v0.0.0-20170523030023-d0303fe80992/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=
github.com/mitchellh/mapstructure v1.4.3 h1:OVowDSCllw/YjdLkam3/sm7wEtOy59d8ndGgCcyj8cs=
github.com/mitchellh/mapstructure v1.4.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
Expand Down