moov-io / irs

Internal Revenue Service (IRS) Filing Information Returns Electronically (FIRE)
https://moov-io.github.io/irs/
Apache License 2.0
44 stars 15 forks source link

fix(deps): update all #193

Closed renovate[bot] closed 3 years ago

renovate[bot] commented 3 years ago

WhiteSource Renovate

This PR contains the following updates:

Package Type Update Change
github.com/moov-io/base require minor v0.15.4 -> v0.20.1
github.com/spf13/cobra require minor v1.1.1 -> v1.2.1
golang.org/x/oauth2 require digest f9ce19e -> a41e5a7

Release Notes

moov-io/base ### [`v0.20.1`](https://togithub.com/moov-io/base/compare/v0.20.0...v0.20.1) [Compare Source](https://togithub.com/moov-io/base/compare/v0.20.0...v0.20.1) ### [`v0.20.0`](https://togithub.com/moov-io/base/blob/master/CHANGELOG.md#v0200-Released-2021-06-21) [Compare Source](https://togithub.com/moov-io/base/compare/v0.19.0...v0.20.0) ADDITIONS - database: mask mysql password in JSON marshaling BUILD - fix(deps): update module github.com/prometheus/client_golang to v1.11.0 - fix(deps): update module github.com/ory/dockertest/v3 to v3.7.0 - build: update gotilla/websocket and spf13/viper ### [`v0.19.0`](https://togithub.com/moov-io/base/blob/master/CHANGELOG.md#v0190-Released-2021-05-11) [Compare Source](https://togithub.com/moov-io/base/compare/v0.18.3...v0.19.0) ADDITIONS - Add database Transaction functions ### [`v0.18.3`](https://togithub.com/moov-io/base/blob/master/CHANGELOG.md#v0183-Released-2021-04-30) [Compare Source](https://togithub.com/moov-io/base/compare/v0.18.2...v0.18.3) IMPROVEMENTS - config: include which file is missing BUILD - fix(deps): update module github.com/go-sql-driver/mysql to v1.6.0 - fix(deps): update module github.com/mattn/go-sqlite3 to v1.14.7 - fix(deps): update module github.com/ory/dockertest/v3 to v3.6.5 ### [`v0.18.2`](https://togithub.com/moov-io/base/blob/master/CHANGELOG.md#v0182-Released-2021-04-09) [Compare Source](https://togithub.com/moov-io/base/compare/v0.18.1...v0.18.2) ADDITIONS - add subrouter function to Server ([#​160](https://togithub.com/moov-io/base/issues/160)) ### [`v0.18.1`](https://togithub.com/moov-io/base/blob/master/CHANGELOG.md#v0181-Released-2021-04-09) [Compare Source](https://togithub.com/moov-io/base/compare/v0.18.0...v0.18.1) ADDITIONS - log: timeOrNil() ([#​157](https://togithub.com/moov-io/base/issues/157)) - Adding in a .Nil() method to the logged error so you can log and return nil in the same oneliner ### [`v0.18.0`](https://togithub.com/moov-io/base/blob/master/CHANGELOG.md#v0180-Released-2021-03-29) [Compare Source](https://togithub.com/moov-io/base/compare/v0.17.0...v0.18.0) IMPROVEMENTS - database: set STRICT_ALL_TABLES on mysql connections BUILD - Bump gogo/protobuf to fix CVE - fix(deps): update module github.com/prometheus/client_golang to v1.10.0 ### [`v0.17.0`](https://togithub.com/moov-io/base/blob/master/CHANGELOG.md#v0170-Released-2021-02-18) [Compare Source](https://togithub.com/moov-io/base/compare/v0.16.0...v0.17.0) ADDITIONS - Adding in configurable sql connections ### [`v0.16.0`](https://togithub.com/moov-io/base/blob/master/CHANGELOG.md#v0160-Released-2021-02-10) [Compare Source](https://togithub.com/moov-io/base/compare/v0.15.4...v0.16.0) BREAKING CHANGES - Adding timezone/location parameter to time Now func IMPROVEMENTS - docs: update "Getting Help" section BUILD - chore(deps): update module golang-migrate/migrate/v4 to v4.14.1 - chore(deps): update module google/uuid to v1.2.0 - chore(deps): update module mattn/go-sqlite3 to v1.14.6 - chore(deps): update module ory/dockertest/v3 to v3.6.3 - chore(deps): update module prometheus/client_golang to v1.9.0
spf13/cobra ### [`v1.2.1`](https://togithub.com/spf13/cobra/releases/v1.2.1) [Compare Source](https://togithub.com/spf13/cobra/compare/v1.2.0...v1.2.1) ##### Bug fixes - Quickfix for https://github.com/spf13/cobra/issues/1437 after v1.2.0 where parallel use of the `cmd.RegisterFlagCompletionFunc()` (and subsequent map) now works correctly and flag completions now work again ### [`v1.2.0`](https://togithub.com/spf13/cobra/releases/v1.2.0) [Compare Source](https://togithub.com/spf13/cobra/compare/v1.1.3...v1.2.0) ### :stars: v1.2.0 - The completions release Welcome to v1.2.0 of Cobra! This release focuses on code completions, several critical bug fixes, some documentation updates, and security bumps. Upgrading should be simple but note please take note of the introduction of completions V2 and their default use. The v1 completions library is still available, but will be *deprecated* in the future. Please open an issue with any problems! *** #### New Features - Automatically adds `completion` command for shell completions. If a `completion` command is already provided, uses that instead. This will *automatically* provide shell completions for bash, zsh, fish, and PowerShell https://github.com/spf13/cobra/pull/1192 - Users can configure the command auto creation: - disable the creation of the completion command - disable completion descriptions - disable the `--no-descriptions` flag for "always on" completion descriptions - Introduction of bash completions V2, a uniform completion approach which include completion descriptions. The V1 bash completions are still available *and will be deprecated* in a latter release - https://github.com/spf13/cobra/pull/1146 - Note that projects providing completion through a different command name (say a command named "complete") will continue to use v1 for their own command but will also provide cobra's implicit "completion" command which will use v2, unless of course, these projects take the time to disable the default "completion" command as noted above. - Commands now support context being passed to completions - https://github.com/spf13/cobra/pull/1265 - An example can be found here: https://github.com/spf13/cobra/pull/1265#issuecomment-734551031 - Removed dependency on`mitchellh/go-homedir` in favor of core Go `os.UserHomeDir()` - https://github.com/spf13/cobra/commit/8eaca5f0f49ad747a0722d39dca7a75c34abd21a #### Bug Fixes - Fix trailing whitespace not being handled in powershell completion scripts https://github.com/spf13/cobra/pull/1342 - Bash completion variable leak fix https://github.com/spf13/cobra/pull/1352 - Fish shell completions correctly ignore trailing empty lines https://github.com/spf13/cobra/pull/1284 - PowerShell completions fix for "no file comp directive" - https://github.com/spf13/cobra/pull/1363 - Custom completions now correctly handle multiple shorthand flags together - https://github.com/spf13/cobra/pull/1258 - zsh completions now correctly handle `ShellDirectiveCompletionNoSpace` and file completion all the time - https://github.com/spf13/cobra/pull/1213 - Multiple fixes / improvements to the fish shell support - https://github.com/spf13/cobra/pull/1249 - Fix home directory config not loading correctly - https://github.com/spf13/cobra/pull/1282 - Fix for `RegisterFlagCompletionFunc` as a global var not working in multi-threaded programs: https://github.com/spf13/cobra/pull/1423 - Custom completions correctly do not complete flags after args when interspersed is false [#​1308](https://togithub.com/spf13/cobra/issues/1308) #### Testing - Deprecated Travis CI. Now fully using Github Actions - https://github.com/spf13/cobra/commit/d0f318d45bdb46e3c1bc314c6096674426f1a620 - Added test cases and enhancements (thank you to everyone for taking the time to add tests to your PRs!) - Shoutout to [@​marckhouzam](https://togithub.com/marckhouzam) and [@​Luap99](https://togithub.com/Luap99) for their hard work on a cobra command completions testing library. [Check out the repo here!](https://togithub.com/marckhouzam/cobra-completion-testing) #### Security - Bump viper to 1.8.1. This corrects several issues with vulnerabilities existing in the dependency tree - https://github.com/spf13/cobra/pull/1433 #### Other - Add PR labeler with pull_request_target to enable tests to run from forks - https://github.com/spf13/cobra/pull/1338 - CI using MSYS2 windows machines pull latest - https://github.com/spf13/cobra/pull/1366 - Multiple small fixes to spelling / documentation - https://github.com/spf13/cobra/pull/1349 https://github.com/spf13/cobra/pull/1417 https://github.com/spf13/cobra/pull/1434 **Thank you to *all* our amazing contributors :snake::rocket:** ### [`v1.1.3`](https://togithub.com/spf13/cobra/blob/master/CHANGELOG.md#v113) [Compare Source](https://togithub.com/spf13/cobra/compare/v1.1.2...v1.1.3) - **Fix:** release-branch.cobra1.1 only: Revert "Deprecate Go < 1.14" to maintain backward compatibility ### [`v1.1.2`](https://togithub.com/spf13/cobra/blob/master/CHANGELOG.md#v112) [Compare Source](https://togithub.com/spf13/cobra/compare/v1.1.1...v1.1.2) ##### Notable Changes - Bump license year to 2021 in golden files ([#​1309](https://togithub.com/spf13/cobra/issues/1309)) [@​Bowbaq](https://togithub.com/Bowbaq) - Enhance PowerShell completion with custom comp ([#​1208](https://togithub.com/spf13/cobra/issues/1208)) [@​Luap99](https://togithub.com/Luap99) - Update gopkg.in/yaml.v2 to v2.4.0: The previous breaking change in yaml.v2 v2.3.0 has been reverted, see [go-yaml/yaml#​670](https://togithub.com/go-yaml/yaml/issues/670) - Documentation readability improvements ([#​1228](https://togithub.com/spf13/cobra/issues/1228) etc.) [@​zaataylor](https://togithub.com/zaataylor) etc. - Use golangci-lint: Repair warnings and errors resulting from linting ([#​1044](https://togithub.com/spf13/cobra/issues/1044)) [@​umarcor](https://togithub.com/umarcor)

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



This PR has been generated by WhiteSource Renovate. View repository job log here.

codecov-io commented 3 years ago

Codecov Report

Merging #193 (d321d82) into master (4aa4df5) will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #193   +/-   ##
=======================================
  Coverage   79.10%   79.10%           
=======================================
  Files          18       18           
  Lines        1378     1378           
=======================================
  Hits         1090     1090           
  Misses        167      167           
  Partials      121      121           

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 4aa4df5...d321d82. Read the comment docs.

renovate[bot] commented 3 years ago

:warning: Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

:recycle: Renovate will retry this branch, including artifacts, only when one of the following happens:

The artifact failure details are included below:

File name: go.sum
Command failed: docker run --rm --name=renovate_go --label=renovate_child -v "/mnt/renovate/gh/moov-io/irs":"/mnt/renovate/gh/moov-io/irs" -v "/tmp/renovate-cache":"/tmp/renovate-cache" -v "/tmp/renovate-cache/others/go":"/tmp/renovate-cache/others/go" -e GOPATH -e CGO_ENABLED -w "/mnt/renovate/gh/moov-io/irs" docker.io/renovate/go:1.16.3 bash -l -c "git config --global url.\"https://**redacted**@github.com/\".insteadOf \"https://github.com/\" && go get -d ./..."
go: downloading github.com/moov-io/base v0.18.3
go: downloading github.com/spf13/cobra v1.1.3
go: downloading github.com/antihax/optional v1.0.0
go: downloading golang.org/x/oauth2 v0.0.0-20210427180440-81ed05c6b58c
go: downloading github.com/gorilla/mux v1.8.0
go: downloading github.com/go-kit/kit v0.10.0
go: downloading github.com/inconshreveable/mousetrap v1.0.0
go: downloading github.com/spf13/pflag v1.0.5
go: downloading github.com/prometheus/client_golang v1.10.0
go: downloading github.com/markbates/pkger v0.17.1
go: downloading github.com/spf13/viper v1.7.1
go: downloading github.com/go-sql-driver/mysql v1.6.0
go: downloading github.com/golang-migrate/migrate/v4 v4.14.1
go: downloading github.com/mattn/go-sqlite3 v1.14.7
go: downloading github.com/ory/dockertest/v3 v3.6.5
go: downloading github.com/stretchr/testify v1.7.0
go: downloading github.com/go-logfmt/logfmt v0.5.0
go: downloading golang.org/x/net v0.0.0-20201029221708-28c70e62bb1d
go: downloading google.golang.org/appengine v1.6.6
go: downloading github.com/prometheus/client_model v0.2.0
go: downloading github.com/prometheus/common v0.18.0
go: downloading github.com/fsnotify/fsnotify v1.4.7
go: downloading github.com/hashicorp/hcl v1.0.0
go: downloading github.com/magiconair/properties v1.8.1
go: downloading github.com/mitchellh/mapstructure v1.1.2
go: downloading github.com/pelletier/go-toml v1.2.0
go: downloading github.com/spf13/afero v1.1.2
go: downloading github.com/spf13/cast v1.3.0
go: downloading github.com/spf13/jwalterweatherman v1.0.0
go: downloading github.com/subosito/gotenv v1.2.0
go: downloading gopkg.in/ini.v1 v1.51.0
go: downloading gopkg.in/yaml.v2 v2.4.0
go: downloading github.com/hashicorp/go-multierror v1.1.0
go: downloading github.com/rickar/cal v1.0.5
go: downloading github.com/cenkalti/backoff v2.2.1+incompatible
go: downloading github.com/cenkalti/backoff/v4 v4.1.0
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/Microsoft/go-winio v0.4.15-0.20190919025122-fc70bd9a86b5
go: downloading github.com/docker/go-units v0.4.0
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/cespare/xxhash v1.1.0
go: downloading github.com/cespare/xxhash/v2 v2.1.1
go: downloading github.com/golang/protobuf v1.4.3
go: downloading github.com/prometheus/procfs v0.6.0
go: downloading golang.org/x/sys v0.0.0-20210309074719-68d13333faf2
go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.1
go: downloading github.com/gobuffalo/here v0.6.0
go: downloading golang.org/x/text v0.3.3
go: downloading github.com/hashicorp/errwrap v1.0.0
go: downloading github.com/sirupsen/logrus v1.7.0
go: downloading github.com/opencontainers/runc v1.0.0-rc9
go: downloading github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5
go: downloading github.com/moby/term v0.0.0-20201216013528-df9cb8a40635
go: downloading github.com/opencontainers/image-spec v1.0.1
go: downloading google.golang.org/protobuf v1.25.0
go: downloading github.com/davecgh/go-spew v1.1.1
go: downloading github.com/pmezard/go-difflib v1.0.0
go: downloading gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
go: downloading github.com/docker/go-connections v0.4.0
go: downloading github.com/containerd/continuity v0.0.0-20190827140505-75bee3e2ccb6
go: downloading github.com/opencontainers/go-digest v1.0.0
go: downloading github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78
github.com/moov-io/irs/pkg/service imports
    github.com/moov-io/base/config imports
    github.com/spf13/viper imports
    gopkg.in/ini.v1: fstatat /tmp/renovate-cache/others/go/pkg/mod/gopkg.in/ini.v1@v1.51.0: permission denied
github.com/moov-io/irs/pkg/service imports
    github.com/moov-io/base/config imports
    github.com/spf13/viper imports
    gopkg.in/yaml.v2: fstatat /tmp/renovate-cache/others/go/pkg/mod/gopkg.in/yaml.v2@v2.4.0: permission denied
github.com/moov-io/irs/pkg/service imports
    github.com/moov-io/base/database imports
    github.com/stretchr/testify/require imports
    github.com/stretchr/testify/assert imports
    gopkg.in/yaml.v3: fstatat /tmp/renovate-cache/others/go/pkg/mod/gopkg.in/yaml.v3@v3.0.0-20200313102051-9f266ea9e77c: permission denied
codecov-commenter commented 3 years ago

Codecov Report

Merging #193 (c6963bd) into master (e170868) will not change coverage. The diff coverage is n/a.

:exclamation: Current head c6963bd differs from pull request most recent head 39046a2. Consider uploading reports for the commit 39046a2 to get more accurate results Impacted file tree graph

@@           Coverage Diff           @@
##           master     #193   +/-   ##
=======================================
  Coverage   79.10%   79.10%           
=======================================
  Files          18       18           
  Lines        1378     1378           
=======================================
  Hits         1090     1090           
  Misses        167      167           
  Partials      121      121           

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update e170868...39046a2. Read the comment docs.