Skip to content

Commit e04abb0

Browse files
authored
fix(deps): update module github.com/spf13/pflag to v1.0.6 (jaegertracing#6632)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/spf13/pflag](https://redirect.github.com/spf13/pflag) | `v1.0.5` -> `v1.0.6` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fspf13%2fpflag/v1.0.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fspf13%2fpflag/v1.0.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fspf13%2fpflag/v1.0.5/v1.0.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fspf13%2fpflag/v1.0.5/v1.0.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>spf13/pflag (github.com/spf13/pflag)</summary> ### [`v1.0.6`](https://redirect.github.com/spf13/pflag/releases/tag/v1.0.6) [Compare Source](https://redirect.github.com/spf13/pflag/compare/v1.0.5...v1.0.6) #### What's Changed - Add exported functions to preserve `pkg/flag` compatibility by [@&#8203;mckern](https://redirect.github.com/mckern) in [https://github.com/spf13/pflag/pull/220](https://redirect.github.com/spf13/pflag/pull/220) - remove dead code for checking error nil by [@&#8203;yashbhutwala](https://redirect.github.com/yashbhutwala) in [https://github.com/spf13/pflag/pull/282](https://redirect.github.com/spf13/pflag/pull/282) - Add IPNetSlice and unit tests by [@&#8203;rpothier](https://redirect.github.com/rpothier) in [https://github.com/spf13/pflag/pull/170](https://redirect.github.com/spf13/pflag/pull/170) - allow for blank ip addresses by [@&#8203;duhruh](https://redirect.github.com/duhruh) in [https://github.com/spf13/pflag/pull/316](https://redirect.github.com/spf13/pflag/pull/316) - add github actions by [@&#8203;sagikazarmark](https://redirect.github.com/sagikazarmark) in [https://github.com/spf13/pflag/pull/419](https://redirect.github.com/spf13/pflag/pull/419) #### New Contributors - [@&#8203;mckern](https://redirect.github.com/mckern) made their first contribution in [https://github.com/spf13/pflag/pull/220](https://redirect.github.com/spf13/pflag/pull/220) - [@&#8203;yashbhutwala](https://redirect.github.com/yashbhutwala) made their first contribution in [https://github.com/spf13/pflag/pull/282](https://redirect.github.com/spf13/pflag/pull/282) - [@&#8203;rpothier](https://redirect.github.com/rpothier) made their first contribution in [https://github.com/spf13/pflag/pull/170](https://redirect.github.com/spf13/pflag/pull/170) - [@&#8203;duhruh](https://redirect.github.com/duhruh) made their first contribution in [https://github.com/spf13/pflag/pull/316](https://redirect.github.com/spf13/pflag/pull/316) - [@&#8203;sagikazarmark](https://redirect.github.com/sagikazarmark) made their first contribution in [https://github.com/spf13/pflag/pull/419](https://redirect.github.com/spf13/pflag/pull/419) **Full Changelog**: spf13/pflag@v1.0.5...v1.0.6 </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 becomes conflicted, 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/jaegertracing/jaeger). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xMjUuMSIsInVwZGF0ZWRJblZlciI6IjM5LjEyNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJjaGFuZ2Vsb2c6ZGVwZW5kZW5jaWVzIl19--> Signed-off-by: Mend Renovate <[email protected]>
1 parent fa74006 commit e04abb0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ require (
3838
github.com/prometheus/common v0.62.0
3939
github.com/soheilhy/cmux v0.1.5
4040
github.com/spf13/cobra v1.8.1
41-
github.com/spf13/pflag v1.0.5
41+
github.com/spf13/pflag v1.0.6
4242
github.com/spf13/viper v1.19.0
4343
github.com/stretchr/testify v1.10.0
4444
github.com/uber/jaeger-client-go v2.30.0+incompatible

go.sum

+2-1
Original file line numberDiff line numberDiff line change
@@ -565,8 +565,9 @@ github.com/spf13/cast v1.6.0 h1:GEiTHELF+vaR5dhz3VqZfFSzZjYbgeKDpBxQVS4GYJ0=
565565
github.com/spf13/cast v1.6.0/go.mod h1:ancEpBxwJDODSW/UG4rDrAqiKolqNNh2DX3mk86cAdo=
566566
github.com/spf13/cobra v1.8.1 h1:e5/vxKd/rZsfSJMUX1agtjeTDf+qv1/JdBF8gg5k9ZM=
567567
github.com/spf13/cobra v1.8.1/go.mod h1:wHxEcudfqmLYa8iTfL+OuZPbBZkmvliBWKIezN3kD9Y=
568-
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
569568
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
569+
github.com/spf13/pflag v1.0.6 h1:jFzHGLGAlb3ruxLB8MhbI6A8+AQX/2eW4qeyNZXNp2o=
570+
github.com/spf13/pflag v1.0.6/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
570571
github.com/spf13/viper v1.19.0 h1:RWq5SEjt8o25SROyN3z2OrDB9l7RPd3lwTWU8EcEdcI=
571572
github.com/spf13/viper v1.19.0/go.mod h1:GQUN9bilAbhU/jgc1bKs99f/suXKeUMct8Adx5+Ntkg=
572573
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=

0 commit comments

Comments
 (0)