Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates to lumberjack package released 4 years ago (#6)
This updates to gopkg.in/natefinch/lumberjack.v2 which was released in mid 2017. This and other tidies result in less dependency declarations in downstream projects. For example: ```diff --- a/go.mod +++ b/go.mod @@ -20,7 +20,6 @@ require ( github.com/mattn/go-sqlite3 v1.14.6 github.com/mitchellh/go-homedir v1.1.0 github.com/mitchellh/mapstructure v1.4.1 // indirect - github.com/natefinch/lumberjack v2.0.0+incompatible // indirect github.com/neo4j/neo4j-go-driver/v4 v4.2.4 github.com/pelletier/go-toml v1.8.1 // indirect github.com/rogpeppe/go-internal v1.7.0 // indirect @@ -32,8 +31,6 @@ require ( github.com/spf13/pflag v1.0.5 github.com/spf13/viper v1.7.1 github.com/tetratelabs/log v0.0.0-20210128123858-0fba4e2dac7d - go.uber.org/multierr v1.6.0 // indirect - go.uber.org/zap v1.16.0 // indirect golang.org/x/crypto v0.0.0-20210317152858-513c2a44f670 // indirect golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 // indirect golang.org/x/mod v0.4.1 // indirect @@ -46,3 +43,5 @@ require ( gopkg.in/ini.v1 v1.62.0 // indirect gopkg.in/yaml.v2 v2.4.0 ) + +replace github.com/tetratelabs/log => ../log ```
- Loading branch information