Update all dependencies #31

Merged
kjuulh merged 1 commits from renovate/all into v0.3 2022-10-28 11:23:19 +02:00
Owner

This PR contains the following updates:

Package Type Update Change
github.com/gin-contrib/zap require minor v0.0.2 -> v0.1.0
github.com/spf13/cobra require minor v1.5.0 -> v1.6.1
github.com/stretchr/testify require patch v1.8.0 -> v1.8.1
golang.org/x/net require minor v0.0.0-20220909164309-bea034e7d591 -> v0.1.0

⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.


Release Notes

gin-contrib/zap

v0.1.0

Compare Source

Changelog

Features
  • 07883db feat(CodeQL): Discover vulnerabilities across a codebase with CodeQL
Bug fixes
  • 30de6b1 fix: Add request meta data when logging request error.
  • 751da59 fix: dependency
  • 0862d21 fix: remove go1.14 and go1.15
Enhancements
  • b36edc1 chore(CD): enable goreleaser config.
  • aab63c4 chore(deps): bump github.com/gin-gonic/gin from 1.8.0 to 1.8.1
  • 04f4165 chore(deps): bump github/codeql-action from 1 to 2
  • fdbf5e4 chore(deps): bump golangci/golangci-lint-action from 2 to 3
  • 39b9a05 chore(deps): bump goreleaser/goreleaser-action from 2 to 3
  • 7f5e926 chore(gin): upgrade to v1.8.0
  • 0c2b37d chore(github): upgrade action package.
  • 3542732 chore(go): upgrade go module
  • 9334b16 chore(recovery): support custom recovery
  • 81070e0 chore(zap): support custom fields for zap (#​45)
  • c6cdd5a chore: Add go 1.19 and upgrade lint version to v1.49
  • 3c53093 chore: upgrade checkout version to v3
  • 39bc455 chore: upgrade dependency
Others
  • c834bc1 Example for traceId.
  • 2c90cac Merge pull request #​25 from gin-contrib/dependabot/github_actions/golangci/golangci-lint-action-3
  • 40abd12 Merge pull request #​29 from gin-contrib/dependabot/github_actions/github/codeql-action-2
  • 88f01f4 Merge pull request #​32 from gin-contrib/dependabot/github_actions/goreleaser/goreleaser-action-3
  • 5b0f0a9 Merge pull request #​34 from gin-contrib/dependabot/go_modules/github.com/gin-gonic/gin-1.8.1
  • 755e78d Support logging Open Telemetry TraceId.
  • fe61b70 chore(CI/CD): add dependabot
  • 558f153 chore(CI/CD): remove macos-latest testing
spf13/cobra

v1.6.1

Compare Source

Bug fixes 🐛
  • Fixes a panic when AddGroup isn't called before AddCommand(my-sub-command) is executed. This can happen within more complex cobra file structures that have many different inits to be executed. Now, the check for groups has been moved to ExecuteC and provides more flexibility when working with grouped commands - @​marckhouzam (and shout out to @​aawsome, @​andig and @​KINGSABRI for a deep investigation into this! 👏🏼)

v1.6.0

Compare Source

Summer 2022 Release

Some exciting changes make their way to Cobra! Command completions continue to get better and better (including adding --help and --version automatic flags to the completions list). Grouping is now possible in your help output as well! And you can now use the OnFinalize method to cleanup things when all "work" is done. Checkout the full changelog below:


Features 🌠
Deprecation 👎🏼
  • ExactValidArgs is deprecated (but not being removed entirely). This is abit nuanced, so checkout #​1643 for further information and the updated user_guide.md on how this may affect you (and how you can take advantage of the correct behavior in the validators): @​umarcor #​1643
Bug fixes 🐛
Dependencies 🗳️
Testing 🤔
Docs ✏️
Misc 💭

Note: Per #​1804, we will be moving away from "seasonal" releases and doing more generic point release targets. Continue to track the milestones and issues in the spf13/cobra GitHub repository for more information!

Great work everyone! Cobra would never be possible without your contributions! 🐍

Full Changelog: https://github.com/spf13/cobra/compare/v1.5.0...v1.6.0

stretchr/testify

v1.8.1

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/gin-contrib/zap](https://github.com/gin-contrib/zap) | require | minor | `v0.0.2` -> `v0.1.0` | | [github.com/spf13/cobra](https://github.com/spf13/cobra) | require | minor | `v1.5.0` -> `v1.6.1` | | [github.com/stretchr/testify](https://github.com/stretchr/testify) | require | patch | `v1.8.0` -> `v1.8.1` | | [golang.org/x/net](https://github.com/golang/net) | require | minor | `v0.0.0-20220909164309-bea034e7d591` -> `v0.1.0` | --- ### ⚠ Dependency Lookup Warnings ⚠ Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>gin-contrib/zap</summary> ### [`v0.1.0`](https://github.com/gin-contrib/zap/releases/tag/v0.1.0) [Compare Source](https://github.com/gin-contrib/zap/compare/v0.0.2...v0.1.0) #### Changelog ##### Features - [`07883db`](https://github.com/gin-contrib/zap/commit/07883db) feat(CodeQL): Discover vulnerabilities across a codebase with CodeQL ##### Bug fixes - [`30de6b1`](https://github.com/gin-contrib/zap/commit/30de6b1) fix: Add request meta data when logging request error. - [`751da59`](https://github.com/gin-contrib/zap/commit/751da59) fix: dependency - [`0862d21`](https://github.com/gin-contrib/zap/commit/0862d21) fix: remove go1.14 and go1.15 ##### Enhancements - [`b36edc1`](https://github.com/gin-contrib/zap/commit/b36edc1) chore(CD): enable goreleaser config. - [`aab63c4`](https://github.com/gin-contrib/zap/commit/aab63c4) chore(deps): bump github.com/gin-gonic/gin from 1.8.0 to 1.8.1 - [`04f4165`](https://github.com/gin-contrib/zap/commit/04f4165) chore(deps): bump github/codeql-action from 1 to 2 - [`fdbf5e4`](https://github.com/gin-contrib/zap/commit/fdbf5e4) chore(deps): bump golangci/golangci-lint-action from 2 to 3 - [`39b9a05`](https://github.com/gin-contrib/zap/commit/39b9a05) chore(deps): bump goreleaser/goreleaser-action from 2 to 3 - [`7f5e926`](https://github.com/gin-contrib/zap/commit/7f5e926) chore(gin): upgrade to v1.8.0 - [`0c2b37d`](https://github.com/gin-contrib/zap/commit/0c2b37d) chore(github): upgrade action package. - [`3542732`](https://github.com/gin-contrib/zap/commit/3542732) chore(go): upgrade go module - [`9334b16`](https://github.com/gin-contrib/zap/commit/9334b16) chore(recovery): support custom recovery - [`81070e0`](https://github.com/gin-contrib/zap/commit/81070e0) chore(zap): support custom fields for zap ([#&#8203;45](https://github.com/gin-contrib/zap/issues/45)) - [`c6cdd5a`](https://github.com/gin-contrib/zap/commit/c6cdd5a) chore: Add go 1.19 and upgrade lint version to v1.49 - [`3c53093`](https://github.com/gin-contrib/zap/commit/3c53093) chore: upgrade checkout version to v3 - [`39bc455`](https://github.com/gin-contrib/zap/commit/39bc455) chore: upgrade dependency ##### Others - [`c834bc1`](https://github.com/gin-contrib/zap/commit/c834bc1) Example for traceId. - [`2c90cac`](https://github.com/gin-contrib/zap/commit/2c90cac) Merge pull request [#&#8203;25](https://github.com/gin-contrib/zap/issues/25) from gin-contrib/dependabot/github_actions/golangci/golangci-lint-action-3 - [`40abd12`](https://github.com/gin-contrib/zap/commit/40abd12) Merge pull request [#&#8203;29](https://github.com/gin-contrib/zap/issues/29) from gin-contrib/dependabot/github_actions/github/codeql-action-2 - [`88f01f4`](https://github.com/gin-contrib/zap/commit/88f01f4) Merge pull request [#&#8203;32](https://github.com/gin-contrib/zap/issues/32) from gin-contrib/dependabot/github_actions/goreleaser/goreleaser-action-3 - [`5b0f0a9`](https://github.com/gin-contrib/zap/commit/5b0f0a9) Merge pull request [#&#8203;34](https://github.com/gin-contrib/zap/issues/34) from gin-contrib/dependabot/go_modules/github.com/gin-gonic/gin-1.8.1 - [`755e78d`](https://github.com/gin-contrib/zap/commit/755e78d) Support logging Open Telemetry TraceId. - [`fe61b70`](https://github.com/gin-contrib/zap/commit/fe61b70) chore(CI/CD): add dependabot - [`558f153`](https://github.com/gin-contrib/zap/commit/558f153) chore(CI/CD): remove macos-latest testing </details> <details> <summary>spf13/cobra</summary> ### [`v1.6.1`](https://github.com/spf13/cobra/releases/tag/v1.6.1) [Compare Source](https://github.com/spf13/cobra/compare/v1.6.0...v1.6.1) ##### Bug fixes 🐛 - Fixes a panic when `AddGroup` isn't called before `AddCommand(my-sub-command)` is executed. This can happen within more complex cobra file structures that have many different `init`s to be executed. Now, the check for groups has been moved to `ExecuteC` and provides more flexibility when working with grouped commands - [@&#8203;marckhouzam](https://github.com/marckhouzam) (and shout out to [@&#8203;aawsome](https://github.com/aawsome), [@&#8203;andig](https://github.com/andig) and [@&#8203;KINGSABRI](https://github.com/KINGSABRI) for a deep investigation into this! 👏🏼) ### [`v1.6.0`](https://github.com/spf13/cobra/releases/tag/v1.6.0) [Compare Source](https://github.com/spf13/cobra/compare/v1.5.0...v1.6.0) ##### Summer 2022 Release Some exciting changes make their way to Cobra! Command completions continue to get better and better (including adding `--help` and `--version` automatic flags to the completions list). Grouping is now possible in your help output as well! And you can now use the `OnFinalize` method to cleanup things when all "work" is done. Checkout the full changelog below: *** ##### Features 🌠 - Add groups for commands in help: [@&#8203;aawsome](https://github.com/aawsome) [@&#8203;marckhouzam](https://github.com/marckhouzam) [#&#8203;1003](https://github.com/spf13/cobra/issues/1003) - Support for case-insensitive command names: [@&#8203;YuviGold](https://github.com/YuviGold) [#&#8203;1802](https://github.com/spf13/cobra/issues/1802) - Expose `ValidateRequiredFlags` and `ValidateFlagGroups`: [@&#8203;skeetwu](https://github.com/skeetwu) [#&#8203;1760](https://github.com/spf13/cobra/issues/1760) - Add `--version` flag to help output: [@&#8203;fnickels](https://github.com/fnickels) [#&#8203;1707](https://github.com/spf13/cobra/issues/1707) - Add `--help` and `--version` flag in completions: [@&#8203;marckhouzam](https://github.com/marckhouzam) [#&#8203;1813](https://github.com/spf13/cobra/issues/1813) - Add `OnFinalize` method: [@&#8203;yann-soubeyrand](https://github.com/yann-soubeyrand) [#&#8203;1788](https://github.com/spf13/cobra/issues/1788) - Allow user to add completion for powershell alias: [@&#8203;marckhouzam](https://github.com/marckhouzam) [#&#8203;1621](https://github.com/spf13/cobra/issues/1621) - Make `InitDefaultcompletionCmd` public: [@&#8203;gssbzn](https://github.com/gssbzn) [#&#8203;1467](https://github.com/spf13/cobra/issues/1467) ##### Deprecation 👎🏼 - `ExactValidArgs` is deprecated (but not being removed entirely). This is abit nuanced, so checkout [#&#8203;1643](https://github.com/spf13/cobra/issues/1643) for further information and the [updated `user_guide.md`](https://github.com/spf13/cobra/blob/main/user_guide.md) on how this may affect you (and how you can take advantage of the *correct* behavior in the validators): [@&#8203;umarcor](https://github.com/umarcor) [#&#8203;1643](https://github.com/spf13/cobra/issues/1643) ##### Bug fixes 🐛 - Fix (bash-v2) `activeHelp` length check syntax: [@&#8203;scop](https://github.com/scop) [#&#8203;1762](https://github.com/spf13/cobra/issues/1762) - Fix correct command path in `see_also` for yaml documentation: [@&#8203;zregvart](https://github.com/zregvart) [#&#8203;1771](https://github.com/spf13/cobra/issues/1771) - Fix showing flags that shadow parent persistent flag in child help messaging: [@&#8203;brianpursley](https://github.com/brianpursley) [#&#8203;1776](https://github.com/spf13/cobra/issues/1776) ##### Dependencies 🗳️ - Upgrade to use `gopkg.in/yaml.v3`: [@&#8203;tklauser](https://github.com/tklauser) [#&#8203;1766](https://github.com/spf13/cobra/issues/1766) ##### Testing 🤔 - Test on Golang 1.19: [@&#8203;umarcor](https://github.com/umarcor) & [@&#8203;jpmcb](https://github.com/jpmcb) [#&#8203;1782](https://github.com/spf13/cobra/issues/1782) - Renamed powershell completion tests: [@&#8203;marckhouzam](https://github.com/marckhouzam) [#&#8203;1803](https://github.com/spf13/cobra/issues/1803) - Use `action/setup-go` cache: [@&#8203;umarcor](https://github.com/umarcor) [#&#8203;1783](https://github.com/spf13/cobra/issues/1783) - Add `workflow_dispatch` to CI actions: [@&#8203;umarcor](https://github.com/umarcor) [#&#8203;1387](https://github.com/spf13/cobra/issues/1387) - Add minimum GitHub token permissions for workflows: [@&#8203;varunsh-coder](https://github.com/varunsh-coder) [#&#8203;1792](https://github.com/spf13/cobra/issues/1792) ##### Docs ✏️ - Fixup spelling for GitHub CLI: [@&#8203;eltociear](https://github.com/eltociear) [#&#8203;1744](https://github.com/spf13/cobra/issues/1744) - Clarify `SetContext` documentation: [@&#8203;katexochen](https://github.com/katexochen) [#&#8203;1748](https://github.com/spf13/cobra/issues/1748) - Instruct user to `go install` for binary: [@&#8203;marckhouzam](https://github.com/marckhouzam) [#&#8203;1726](https://github.com/spf13/cobra/issues/1726) - User guide cleanup: [@&#8203;marckhouzam](https://github.com/marckhouzam) [#&#8203;1656](https://github.com/spf13/cobra/issues/1656) - Document option to hide the default completion command: [@&#8203;marckhouzam](https://github.com/marckhouzam) [#&#8203;1779](https://github.com/spf13/cobra/issues/1779) ##### Misc 💭 - Add KubeVirt, CloudQuery, Cilium, Okteto, Zitadel, Allero to projects using cobra: [@&#8203;maiqueb](https://github.com/maiqueb) [#&#8203;1741](https://github.com/spf13/cobra/issues/1741), [@&#8203;yevgenypats](https://github.com/yevgenypats) [#&#8203;1742](https://github.com/spf13/cobra/issues/1742), [@&#8203;tklauser](https://github.com/tklauser) [#&#8203;1745](https://github.com/spf13/cobra/issues/1745), [@&#8203;jLopezbarb](https://github.com/jLopezbarb) [#&#8203;1759](https://github.com/spf13/cobra/issues/1759), [@&#8203;fforootd](https://github.com/fforootd) [#&#8203;1772](https://github.com/spf13/cobra/issues/1772), [@&#8203;dimabru](https://github.com/dimabru) [#&#8203;1819](https://github.com/spf13/cobra/issues/1819) - Use correct stale action `exempt` yaml keys: [@&#8203;jpmcb](https://github.com/jpmcb) [#&#8203;1800](https://github.com/spf13/cobra/issues/1800) - Add missing license headers: [@&#8203;umarcor](https://github.com/umarcor) [#&#8203;1809](https://github.com/spf13/cobra/issues/1809) *Note:* Per [#&#8203;1804](https://github.com/spf13/cobra/issues/1804), we will be moving away from "seasonal" releases and doing more generic point release targets. Continue to track the milestones and issues in the `spf13/cobra` GitHub repository for more information! Great work everyone! Cobra would never be possible without your contributions! 🐍 **Full Changelog**: https://github.com/spf13/cobra/compare/v1.5.0...v1.6.0 </details> <details> <summary>stretchr/testify</summary> ### [`v1.8.1`](https://github.com/stretchr/testify/compare/v1.8.0...v1.8.1) [Compare Source](https://github.com/stretchr/testify/compare/v1.8.0...v1.8.1) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yNDEuMTEiLCJ1cGRhdGVkSW5WZXIiOiIzMi4yNDEuMTEifQ==-->
kjuulh force-pushed renovate/all from f19142b8bb to 39800daad3 2022-10-28 10:52:53 +02:00 Compare
kjuulh merged commit 39800daad3 into v0.3 2022-10-28 11:23:19 +02:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: kjuulh/octopush#31
No description provided.