From be76ebfacfd2b3b2ca284cf6726b22ac87a8cbb2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 14:25:07 -0800 Subject: [PATCH] chore(deps): update module github.com/crocmagnon/fatcontext to v0.6.0 (#6162) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/Crocmagnon/fatcontext](https://redirect.github.com/Crocmagnon/fatcontext) | `v0.5.3` -> `v0.6.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fCrocmagnon%2ffatcontext/v0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fCrocmagnon%2ffatcontext/v0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fCrocmagnon%2ffatcontext/v0.5.3/v0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fCrocmagnon%2ffatcontext/v0.5.3/v0.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes
Crocmagnon/fatcontext (github.com/Crocmagnon/fatcontext) ### [`v0.6.0`](https://redirect.github.com/Crocmagnon/fatcontext/releases/tag/v0.6.0) [Compare Source](https://redirect.github.com/Crocmagnon/fatcontext/compare/v0.5.3...v0.6.0) #### Summary - feat: ignore context.TODO and context.Background (see [#​34](https://redirect.github.com/Crocmagnon/fatcontext/issues/34)) - Update dependencies #### Changelog - [`52f7fb5`](https://redirect.github.com/Crocmagnon/fatcontext/commit/52f7fb588caa9291306e505c72140d97959de8ca) \[pre-commit.ci] pre-commit autoupdate - [`4c828f7`](https://redirect.github.com/Crocmagnon/fatcontext/commit/4c828f73022b085eeb3423e6b0f071607fad7730) \[pre-commit.ci] pre-commit autoupdate - [`48ee243`](https://redirect.github.com/Crocmagnon/fatcontext/commit/48ee2433d66c2d4be66350c00d61e964a74e4d6f) build(deps): bump golang.org/x/tools from 0.26.0 to 0.27.0 - [`6130ad9`](https://redirect.github.com/Crocmagnon/fatcontext/commit/6130ad946ec2c8a198083dcfd90f334ddc067b0a) build(deps): bump golang.org/x/tools from 0.27.0 to 0.28.0 - [`54e593c`](https://redirect.github.com/Crocmagnon/fatcontext/commit/54e593c1c6f898d0cdafdf5b72021db212e5f44b) feat: ignore context.TODO and context.Background - [`529e088`](https://redirect.github.com/Crocmagnon/fatcontext/commit/529e088561196f299c0c2cd09909de35806e7d35) fix: goreleaser v2
--- ### 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. --- - [ ] 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). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- internal/tools/go.mod | 2 +- internal/tools/go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/tools/go.mod b/internal/tools/go.mod index f2e69bf8272..19df5c9fc23 100644 --- a/internal/tools/go.mod +++ b/internal/tools/go.mod @@ -27,7 +27,7 @@ require ( github.com/Antonboom/nilnil v1.0.1 // indirect github.com/Antonboom/testifylint v1.5.2 // indirect github.com/BurntSushi/toml v1.4.1-0.20241028111116-b7406c026f5a // indirect - github.com/Crocmagnon/fatcontext v0.5.3 // indirect + github.com/Crocmagnon/fatcontext v0.6.0 // indirect github.com/Djarvur/go-err113 v0.1.0 // indirect github.com/GaijinEntertainment/go-exhaustruct/v3 v3.3.0 // indirect github.com/Masterminds/semver/v3 v3.3.1 // indirect diff --git a/internal/tools/go.sum b/internal/tools/go.sum index 5246e0c83ca..5366f666cd3 100644 --- a/internal/tools/go.sum +++ b/internal/tools/go.sum @@ -16,8 +16,8 @@ github.com/Antonboom/testifylint v1.5.2 h1:4s3Xhuv5AvdIgbd8wOOEeo0uZG7PbDKQyKY5l github.com/Antonboom/testifylint v1.5.2/go.mod h1:vxy8VJ0bc6NavlYqjZfmp6EfqXMtBgQ4+mhCojwC1P8= github.com/BurntSushi/toml v1.4.1-0.20241028111116-b7406c026f5a h1:jvCp1xfUeIIselwOL/l83yNikq4EKN6pPgDVFrjVCs0= github.com/BurntSushi/toml v1.4.1-0.20241028111116-b7406c026f5a/go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho= -github.com/Crocmagnon/fatcontext v0.5.3 h1:zCh/wjc9oyeF+Gmp+V60wetm8ph2tlsxocgg/J0hOps= -github.com/Crocmagnon/fatcontext v0.5.3/go.mod h1:XoCQYY1J+XTfyv74qLXvNw4xFunr3L1wkopIIKG7wGM= +github.com/Crocmagnon/fatcontext v0.6.0 h1:DxGYfrUrJBOtvldiWpMvntvkTDgj6c1zLCTKelMqAtw= +github.com/Crocmagnon/fatcontext v0.6.0/go.mod h1:1wMvv3NXEBJucFGfwOJBxSVWcoIO6emV215SMkW9MFU= github.com/Djarvur/go-err113 v0.1.0 h1:uCRZZOdMQ0TZPHYTdYpoC0bLYJKPEHPUJ8MeAa51lNU= github.com/Djarvur/go-err113 v0.1.0/go.mod h1:4UJr5HIiMZrwgkSPdsjy2uOQExX/WEILpIrO9UPGuXs= github.com/GaijinEntertainment/go-exhaustruct/v3 v3.3.0 h1:/fTUt5vmbkAcMBt4YQiuC23cV0kEsN1MVMNqeOW43cU=