Aias00 opened a new pull request, #981: URL: https://github.com/apache/dubbo-go-pixiu/pull/981
## Summary Replace the obsolete `github.com/goinggo/mapstructure` fork (v0.0.0-20140717182941, from 2014) with the standard `github.com/mitchellh/mapstructure` v1.5.0, which is already a dependency in go.mod. ## Changes - `pkg/config/config_load.go`: Updated import from `github.com/goinggo/mapstructure` → `github.com/mitchellh/mapstructure` - `go.mod`: Removed `github.com/goinggo/mapstructure` dependency - `go.sum`: Removed checksum entries for the old fork ## Why - `goinggo/mapstructure` is a 2014 fork with no updates in 12 years - It was only used in one place (`config_load.go`) for `mapstructure.Decode()` - The standard `mitchellh/mapstructure` v1.5.0 is already in go.mod and used by 6 other files in the codebase with the same API - Removing the fork reduces dependency count and maintenance burden ## Verification - ✅ `go build ./...` passes - ✅ `go test ./pkg/config/...` passes - ✅ `go mod tidy` removes the old dependency cleanly 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
