Skip to content

Commit 79a6604

Browse files
chore(deps): update module github.com/spf13/cast to v1.7.1 (open-telemetry#6086)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/spf13/cast](https://redirect.github.com/spf13/cast) | `v1.7.0` -> `v1.7.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fspf13%2fcast/v1.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fspf13%2fcast/v1.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fspf13%2fcast/v1.7.0/v1.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fspf13%2fcast/v1.7.0/v1.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>spf13/cast (github.com/spf13/cast)</summary> ### [`v1.7.1`](https://redirect.github.com/spf13/cast/releases/tag/v1.7.1) [Compare Source](https://redirect.github.com/spf13/cast/compare/v1.7.0...v1.7.1) #### What's Changed - Update README.md by [@&#8203;lesichkovm](https://redirect.github.com/lesichkovm) in [https://github.com/spf13/cast/pull/224](https://redirect.github.com/spf13/cast/pull/224) - Fix ToUint64 issue with string input exceeding maximum int64 by [@&#8203;skyjerry](https://redirect.github.com/skyjerry) in [https://github.com/spf13/cast/pull/213](https://redirect.github.com/spf13/cast/pull/213) #### New Contributors - [@&#8203;lesichkovm](https://redirect.github.com/lesichkovm) made their first contribution in [https://github.com/spf13/cast/pull/224](https://redirect.github.com/spf13/cast/pull/224) - [@&#8203;skyjerry](https://redirect.github.com/skyjerry) made their first contribution in [https://github.com/spf13/cast/pull/213](https://redirect.github.com/spf13/cast/pull/213) **Full Changelog**: spf13/cast@v1.7.0...v1.7.1 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-go). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS43Mi41IiwidXBkYXRlZEluVmVyIjoiMzkuNzIuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiU2tpcCBDaGFuZ2Vsb2ciLCJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 78fa22a commit 79a6604

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

internal/tools/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ require (
172172
github.com/sourcegraph/conc v0.3.0 // indirect
173173
github.com/sourcegraph/go-diff v0.7.0 // indirect
174174
github.com/spf13/afero v1.11.0 // indirect
175-
github.com/spf13/cast v1.7.0 // indirect
175+
github.com/spf13/cast v1.7.1 // indirect
176176
github.com/spf13/cobra v1.8.1 // indirect
177177
github.com/spf13/pflag v1.0.5 // indirect
178178
github.com/spf13/viper v1.19.0 // indirect

internal/tools/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -397,8 +397,8 @@ github.com/sourcegraph/go-diff v0.7.0 h1:9uLlrd5T46OXs5qpp8L/MTltk0zikUGi0sNNyCp
397397
github.com/sourcegraph/go-diff v0.7.0/go.mod h1:iBszgVvyxdc8SFZ7gm69go2KDdt3ag071iBaWPF6cjs=
398398
github.com/spf13/afero v1.11.0 h1:WJQKhtpdm3v2IzqG8VMqrr6Rf3UYpEF239Jy9wNepM8=
399399
github.com/spf13/afero v1.11.0/go.mod h1:GH9Y3pIexgf1MTIWtNGyogA5MwRIDXGUr+hbWNoBjkY=
400-
github.com/spf13/cast v1.7.0 h1:ntdiHjuueXFgm5nzDRdOS4yfT43P5Fnud6DH50rz/7w=
401-
github.com/spf13/cast v1.7.0/go.mod h1:ancEpBxwJDODSW/UG4rDrAqiKolqNNh2DX3mk86cAdo=
400+
github.com/spf13/cast v1.7.1 h1:cuNEagBQEHWN1FnbGEjCXL2szYEXqfJPbP2HNUaca9Y=
401+
github.com/spf13/cast v1.7.1/go.mod h1:ancEpBxwJDODSW/UG4rDrAqiKolqNNh2DX3mk86cAdo=
402402
github.com/spf13/cobra v1.8.1 h1:e5/vxKd/rZsfSJMUX1agtjeTDf+qv1/JdBF8gg5k9ZM=
403403
github.com/spf13/cobra v1.8.1/go.mod h1:wHxEcudfqmLYa8iTfL+OuZPbBZkmvliBWKIezN3kD9Y=
404404
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=

0 commit comments

Comments
 (0)