Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all minor, patch, or digest dependencies on go #88

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 26, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
github.com/creasty/defaults v1.7.0 -> v1.8.0 age adoption passing confidence require minor
github.com/go-chi/chi/v5 v5.0.10 -> v5.2.1 age adoption passing confidence require minor
github.com/go-playground/validator/v10 v10.14.1 -> v10.25.0 age adoption passing confidence require minor
github.com/go-playground/webhooks/v6 v6.2.0 -> v6.4.0 age adoption passing confidence require minor
github.com/golangci/golangci-lint v1.53.3 -> v1.64.6 age adoption passing confidence require minor
github.com/google/go-cmp v0.5.9 -> v0.7.0 age adoption passing confidence require minor
github.com/shurcooL/githubv4 599ae7b -> 4829585 age adoption passing confidence require digest
github.com/slack-go/slack v0.12.2 -> v0.16.0 age adoption passing confidence require minor
golang.org/x/exp 515e97e -> 054e65f age adoption passing confidence require digest
golang.org/x/oauth2 v0.10.0 -> v0.28.0 age adoption passing confidence require minor
golang.org/x/sync v0.3.0 -> v0.12.0 age adoption passing confidence require minor
golang.org/x/xerrors 04be3eb -> 7835f81 age adoption passing confidence require digest
sigs.k8s.io/yaml v1.3.0 -> v1.4.0 age adoption passing confidence require minor

Release Notes

creasty/defaults (github.com/creasty/defaults)

v1.8.0

Compare Source

go-chi/chi (github.com/go-chi/chi/v5)

v5.2.1

Compare Source

⚠️ Chi supports Go 1.20+

Starting this release, we will now support the four most recent major versions of Go. See https://github.com/go-chi/chi/issues/963 for related discussion.

What's Changed

Full Changelog: go-chi/chi@v5.2.0...v5.2.1

v5.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: go-chi/chi@v5.1.0...v5.2.0

v5.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: go-chi/chi@v5.0.14...v5.1.0

v5.0.14

Compare Source

What's Changed

New Contributors

Full Changelog: go-chi/chi@v5.0.12...v5.0.14

v5.0.13

Compare Source

What's Changed

New Contributors

Full Changelog: go-chi/chi@v5.0.12...v5.0.13

v5.0.12

Compare Source

v5.0.11

Compare Source

go-playground/validator (github.com/go-playground/validator/v10)

v10.25.0: Release 10.25.0

Compare Source

What's Changed

New Contributors

Full Changelog: go-playground/validator@v10.24.0...v10.25.0

v10.24.0: Release 10.24.0

Compare Source

What's Changed

The MSGV(Minimum Supported Go Version) has been bumped to v1.20 to address a security issues in the gaoling net package.

Full Changelog: go-playground/validator@v10.23.0...v10.24.0

v10.23.0: Release 10.23.0

Compare Source

What's Changed

New Contributors

Full Changelog: go-playground/validator@v10.22.1...v10.23.0

v10.22.1: Release 10.22.1

Compare Source

What's Changed

New Contributors

Full Changelog: go-playground/validator@v10.22.0...v10.22.1

v10.22.0: Release 10.22.0

Compare Source

v10.21.0: Release 10.21.0

Compare Source

What's Changed

New Contributors

Full Changelog: go-playground/validator@v10.20.0...v10.21.0

v10.20.0: Release 10.20.0

Compare Source

What's Changed

New Contributors

Full Changelog: go-playground/validator@v10.19.0...v10.20.0

v10.19.0: Release 10.19.0

Compare Source

What was added?

Added opt-in ability to validate private fields in PR, thanks @​nikolaianohyn via the new WithPrivateFieldValidation option when initializing validator.

v10.18.0: Release 10.18.0

Compare Source

What Changed?

Updated all dependencies to address dependant alerts, #​1205 and #​1220

v10.17.0: Release 10.17.0

Compare Source

What's new

  • Add translation of requiredXXX and excludedXXX in English/Chinese/Chinese Taiwan.

What's fixed

  • Fix errors translation to work properly for aliases.

v10.16.0: Release 10.16.0

Compare Source

What's new or fixed?

  • Added new issn validator. TY @​mrcook for the PR
  • Added improvement/fix to the file url validation. TY @​nodivbyzero for the PR
  • Fix onof tag in examples. TY @​gren236 for the PR
  • Add fmt.Stringer interface support to uuid validations allowing most UUID validation libraries which implement it to work transparently now. TY @​JoshGlazebrook for the PR
  • Added new omitnil similar to omitempty but for pointers. this is mainly for code generation ease. TY @​tarampampam for the PR

v10.15.5: Release 10.15.5

Compare Source

What was fixed?

Fixed CIDRIPv4 validation, ty @​martinlehoux for the PR

v10.15.4: Release 10.15.4

Compare Source

What was fixed?

Corrected a regression of skipping required for time.Time accidentally introduced in v10.15.2

v10.15.3: Release 10.15.3

Compare Source

What was fixed?

Fix regression for invalid type check before calling reflect values type. Thank you @​MysteriousPotato for the PR

v10.15.2: Release 10.15.2

Compare Source

What was fixed?
  • Refactored #​1122 to support or's in tags + updated to required behaving the same as before v10.50.0 to support the community as there was a lot of code relying on the before behaviour, correct or not.

v10.15.1: Release 10.15.1

Compare Source

What was fixed?

Corrected a few validations including gt, lt, ... when using floating point values, specifically float32, in this PR

v10.15.0: Release 10.15.0

Compare Source

What's new?
  • Applying tag validations on structs is now a reality thank to @​MysteriousPotato in this PR
  • Added oneof tag to examples in this PR
  • Added Spice DB validations in this PR
What was fixed?
  • Fixed the REAMD logo link in this PR
  • Fixed filepath validation when path is a directory in this PR
  • Correct to docs in this PR
go-playground/webhooks (github.com/go-playground/webhooks/v6)

v6.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: go-playground/webhooks@v6.3.0...v6.4.0

v6.3.0: Release 6.3.0

Compare Source

What's new?

  • Added Azure DevOps git push event this PR
  • Added missing fields to GitLab PipelineObjectAttributes this PR
  • Added installation struct in multiple GitHub payloads this PR
golangci/golangci-lint (github.com/golangci/golangci-lint)

v1.64.6

Compare Source

  1. Linters bug fixes
    • asciicheck: from 0.4.0 to 0.4.1
    • contextcheck: from 1.1.5 to 1.1.6
    • errcheck: from 1.8.0 to 1.9.0
    • exptostd: from 0.4.1 to 0.4.2
    • ginkgolinter: from 0.19.0 to 0.19.1
    • go-exhaustruct: from 3.3.0 to 3.3.1
    • gocheckcompilerdirectives: from 1.2.1 to 1.3.0
    • godot: from 1.4.20 to 1.5.0
    • perfsprint: from 0.8.1 to 0.8.2
    • revive: from 1.6.1 to 1.7.0
    • tagalign: from 1.4.1 to 1.4.2

v1.64.5

Compare Source

  1. Bug fixes
    • Add missing flag new-from-merge-base-flag
  2. Linters bug fixes
    • asciicheck: from 0.3.0 to 0.4.0
    • forcetypeassert: from 0.1.0 to 0.2.0
    • gosec: from 2.22.0 to 2.22.1

v1.64.4

Compare Source

  1. Linters bug fixes
    • gci: fix standard packages list for go1.24

v1.64.3

Compare Source

  1. Linters bug fixes
    • ginkgolinter: from 0.18.4 to 0.19.0
    • go-critic: from 0.11.5 to 0.12.0
    • revive: from 1.6.0 to 1.6.1
    • gci: fix standard packages list for go1.24
  2. Misc.
    • Build Docker images with go1.24

v1.64.2

Compare Source

This is the last minor release of golangci-lint v1.
The next release will be golangci-lint v2.

  1. Enhancements
    • 🎉 go1.24 support
    • New issues.new-from-merge-base option
    • New run.relative-path-mode option
  2. Linters new features
    • copyloopvar: from 1.1.0 to 1.2.1 (support suggested fixes)
    • exptostd: from 0.3.1 to 0.4.1 (handles golang.org/x/exp/constraints.Ordered)
    • fatcontext: from 0.5.3 to 0.7.1 (new option: check-struct-pointers)
    • perfsprint: from 0.7.1 to 0.8.1 (new options: integer-format, error-format, string-format, bool-format, and hex-format)
    • revive: from 1.5.1 to 1.6.0 (new rules: redundant-build-tag, use-errors-new. New option early-return.early-return)
  3. Linters bug fixes
    • go-errorlint: from 1.7.0 to 1.7.1
    • gochecknoglobals: from 0.2.1 to 0.2.2
    • godox: from 006bad1 to 1.1.0
    • gosec: from 2.21.4 to 2.22.0
    • iface: from 1.3.0 to 1.3.1
    • nilnesserr: from 0.1.1 to 0.1.2
    • protogetter: from 0.3.8 to 0.3.9
    • sloglint: from 0.7.2 to 0.9.0
    • spancheck: fix default StartSpanMatchersSlice values
    • staticcheck: from 0.5.1 to 0.6.0
  4. Deprecations
    • ⚠️ tenv is deprecated and replaced by usetesting.os-setenv: true.
  5. Misc.
    • Sanitize severities by output format
    • Avoid panic with plugin without description
  6. Documentation
    • Clarify depguard configuration

v1.64.1

Compare Source

Cancelled due to CI failure.

v1.64.0

Compare Source

Cancelled due to CI failure.

v1.63.4

Compare Source

  1. Linters bug fixes
    • dupl, gomodguard, revive: keep only Go-files.

v1.63.3

Compare Source

  1. Linters bug fixes
    • gofmt, gofumpt, goimports, gci: panic with several trailing EOL
    • goheader: skip issues with invalid positions

v1.63.2

Compare Source

  1. Linters bug fixes
    • gofmt, gofumpt, goimports, gci: panic with missing trailing EOL

v1.63.1

Compare Source

  1. Linters bug fixes
    • cgi: invalid reports with cgo
    • gofumpt: panic with autofix and cgo

v1.63.0

Compare Source

  1. Enhancements
    • Add support for SuggestedFixes 🎉 (35 linters can "autofix" reports).
    • Formatters (gofmt, goimports, gofumpt, gci) are applied after the suggested fixes.
  2. New linters
  3. Linters new features
    • gci: new options: no-inline-comments, no-prefix-comments
    • gomoddirectives: from 0.2.4 to 0.6.0 (new options: go-version-pattern, toolchain-pattern,toolchain-forbidden, tool-forbidden, go-debug-forbidden)
    • govet: new stdversion, waitgroup analyzers
    • importas: allow multiple empty aliases
    • loggercheck: new slog option
    • recvcheck: from 0.1.2 to 0.2.0 (new options: disable-builtin, exclusions)
    • tagliatelle: from 0.5.0 to 0.7.1 (new options: ignored-fields, extended-rules,overrides, pkg, ignore)
    • usestdlibvars: from 1.27.0 to 1.28.0 (autofix)
    • wrapcheck: from 2.9.0 to 2.10.0 (new option: extra-ignore-sigs)
  4. Linters bug fixes
    • asciicheck: from 0.2.0 to 0.3.0
    • bodyclose: from 5742072 to ed6a65f
    • funlen: from 0.1.0 to 0.2.0
    • ginkgolinter: from 0.18.3 to 0.18.4
    • gochecksumtype: from 0.2.0 to 0.3.1
    • gocognit: from 1.1.3 to 1.2.0
    • godot: from 1.4.18 to 1.4.20
    • goheader: report position improvement
    • gosec: handling of global nosec option when it is false
    • iface: from 1.2.1 to 1.3.0
    • importas: from 0.1.0 to 0.2.0
    • intrange: from 0.2.1 to 0.3.0
    • makezero: from 1.1.1 to 1.2.0
    • mirror: from 1.2.0 to 1.3.0
    • nilnil: from 1.0.0 to 1.0.1
    • nosprintfhostport: from 0.1.1 to 0.2.0
    • reassign: from 0.2.0 to 0.3.0
    • spancheck: from 0.6.2 to 0.6.4
    • tagalign: from 1.3.4 to 1.4.1
    • wastedassign: from 2.0.7 to 2.1.0
    • whitespace: from 0.1.1 to 0.2.0
    • wsl: from 4.4.1 to 4.5.0
  5. Deprecations
    • ⚠️ output.uniq-by-line is deprecated and replaced by issues.uniq-by-line.
  6. Misc.
    • Improvements of the help command (color and JSON support).
    • Removes decoder, sloglint, tagalign from format preset.
    • Enables paths with junction inside Windows.
    • The timeout is disabled if run.timeout <= 0.

v1.62.2

Compare Source

  1. Linters bug fixes
    • fatcontext: from 0.5.2 to 0.5.3
    • ginkgolinter: from 0.18.0 to 0.18.3
    • errorlint: from 1.6.0 to 1.7.0
    • iface: from 1.2.0 to 1.2.1
    • revive: from 1.5.0 to 1.5.1
    • testifylint: from 1.5.0 to 1.5.2
  2. Misc.
    • fix: ignore cache error when file not found

v1.62.1

Compare Source

Cancelled due to CI failure.

v1.62.0

Compare Source

  1. New linters
  2. Linters new features
    • ginkgolinter: from 0.17.0 to 0.18.0 (new option: force-succeed)
    • gochecksumtype: from 0.1.4 to 0.2.0 (new option: default-signifies-exhaustive)
    • loggercheck: from 0.9.4 to 0.10.1 (log/slog support)
    • nilnil: from 0.1.9 to 1.0.0 (new option: detect-opposite)
    • revive: from 1.3.9 to 1.5.0 (new rules: filename-format, and file-length-limit)
    • tenv: from 1.10.0 to 1.12.1 (handle dot import)
    • testifylint: from 1.4.3 to 1.5.0 (new checkers: contains, encoded-compare, regexp)
  3. Linters bug fixes
    • bidichk: from 0.2.7 to 0.3.2 (important performance improvement)
    • canonicalheader: from 1.1.1 to 1.1.2
    • cyclop: from 1.2.1 to 1.2.3
    • dupword: from 0.1.1 to 0.1.3
    • errcheck: from 1.7.0 to 1.8.0
    • errchkjson: from 0.3.6 to 0.4.0
    • errname: from 0.1.13 to 1.0.0
    • gocritic: from 0.11.4 to 0.11.5
    • goprintffuncname: from 7558a9e to v0.1.0
    • godot: from 1.4.17 to 1.4.18
    • gosec: from 2.21.2 to 2.21.4
    • intrange: from 0.2.0 to 0.2.1
    • musttag: from 0.12.2 to 0.13.0
    • nakedret: from 2.0.4 to 2.0.5
    • noctx: from 0.0.2 to 0.1.0
    • protogetter: from 0.3.6 to 0.3.8
  4. Deprecations
    • ⚠️ execinquery: deprecation step 2
    • ⚠️ gomnd: deprecation step 2 (replaced by mnd)
  5. Misc.
    • Type sizing when cross-compiling (32-bit).
    • code-climate: add check_name field
    • Improve Go version detection
    • Fix Go version propagation
  6. Documentation
    • Adds a section about exclude-dirs-use-default
    • Improve 'install from sources' section
    • Improve FAQ about Go versions
    • Improve linter/rule/check docs
    • Improve new linter section
    • Improve forbidigo pattern examples for built-in functions

v1.61.0

Compare Source

  1. Enhancements
    • Add junit-xml-extended format
    • Exclude Swagger Codegen files by default
  2. Linters new features
    • gci: from 0.13.4 to 0.13.5 (new option no-lex-order)
    • nolintlint: remove the empty line in the directive replacement
  3. Linters bug fixes
    • dupword: from 0.0.14 to 0.1.1
    • fatcontext: from 0.4.0 to 0.5.2
    • go-ruleguard: from 0.4.2 to 0fe6f58 (fix panic with custom linters)
    • godot: from 1.4.16 to 1.4.17
    • gomodguard: from 1.3.3 to 1.3.5
    • gosec: disable temporarily G407
    • gosec: from ab3f6c1 to 2.21.2 (partially fix G115)
    • intrange: from 0.1.2 to 0.2.0
  4. Misc.
    • Improve runtime version parsing
  5. Documentation
    • Add additional info about typecheck

v1.60.3

Compare Source

  1. Updated linters
  2. Misc.
    • Check that the Go version use to build is greater or equals to the Go version of the project

v1.60.2

Compare Source

  1. Linters new features
  2. Linters bug fixes
    • gofmt: update to HEAD (go1.22)
    • gofumpt: from 0.6.0 to 0.7.0
    • gosec: fix G602 analyzer
    • staticcheck: from 0.5.0 to 0.5.1
    • staticcheck: propagate Go version
    • wrapcheck: from 2.8.3 to 2.9.0
  3. Deprecations
    • ⚠️ exportloopref: deprecation

v1.60.1

Compare Source

  1. Misc.
    • 🎉 go1.23 support
  2. Linters new features
    • exhaustruct: from 3.2.0 to 3.3.0 (recognize custom error values in return)
    • govet (printf): report non-constant format, no args
    • lll: advertise max line length instead of just reporting failure
    • revive: from 1.3.7 to 1.3.9 (new rule: comments-density)
    • staticcheck: from 0.4.7 to 0.5.0
    • testifylint: from 1.3.1 to 1.4.3 (new options: formatter, suite-broken-parallel, suite-subtest-run)
  3. Linters bug fixes
    • errorlint: from 1.5.2 to 1.6.0
    • fatcontext: from 0.2.2 to 0.4.0 (fix false positives for context stored in structs)
    • gocognit: from 1.1.2 to 1.1.3
    • gomodguard: from 1.3.2 to 1.3.3
    • sloglint: from 0.7.1 to 0.7.2
    • spancheck: from 0.6.1 to 0.6.2
    • tenv: from 1.7.1 to 1.10.0 (remove reports on fuzzing)
    • tparallel: from 0.3.1 to 0.3.2
    • usestdlibvars: from 1.26.0 to 1.27.0 (fix false-positive with number used inside a mathematical operations)
    • wsl: from 4.2.1 to 4.4.1
  4. Deprecations
    • ⚠️ unused: remove exported-is-used option
  5. Fixes
    • SARIF: sanitize level property
    • ⚠️ typecheck issues should never be ignored
  6. Documentation
    • Add link on linter without configuration
    • Remove 'trusted by' page
    • wsl update documentation of the configuration

[`v1.60.


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.

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


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title fix(deps): update module google.golang.org/grpc to v1.57.0 fix(deps): update all minor, patch, or digest dependencies on go Jul 28, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch-or-digest-dependencies-on-go branch 2 times, most recently from 3dfaf10 to d59aa7d Compare August 1, 2023 12:50
@renovate renovate bot force-pushed the renovate/all-minor-patch-or-digest-dependencies-on-go branch 9 times, most recently from 0b5567c to 33c6b50 Compare August 11, 2023 16:58
@renovate renovate bot force-pushed the renovate/all-minor-patch-or-digest-dependencies-on-go branch 3 times, most recently from b0ed5d8 to e7d9fc6 Compare August 21, 2023 13:37
@renovate renovate bot force-pushed the renovate/all-minor-patch-or-digest-dependencies-on-go branch from e7d9fc6 to adb7d18 Compare August 24, 2023 17:44
@renovate renovate bot force-pushed the renovate/all-minor-patch-or-digest-dependencies-on-go branch 4 times, most recently from 448945a to 52fa097 Compare September 6, 2023 21:55
@renovate renovate bot force-pushed the renovate/all-minor-patch-or-digest-dependencies-on-go branch 2 times, most recently from 8298230 to fb16a22 Compare September 14, 2023 19:20
@renovate renovate bot force-pushed the renovate/all-minor-patch-or-digest-dependencies-on-go branch from fb16a22 to 12289ad Compare September 22, 2023 00:06
@renovate renovate bot force-pushed the renovate/all-minor-patch-or-digest-dependencies-on-go branch 5 times, most recently from d5cb73e to e58a602 Compare October 6, 2023 15:33
@renovate renovate bot force-pushed the renovate/all-minor-patch-or-digest-dependencies-on-go branch from e58a602 to 01b4d79 Compare October 10, 2023 18:49
@renovate renovate bot force-pushed the renovate/all-minor-patch-or-digest-dependencies-on-go branch 2 times, most recently from 9fa4403 to 2a8bed4 Compare January 20, 2025 21:09
@renovate renovate bot force-pushed the renovate/all-minor-patch-or-digest-dependencies-on-go branch 3 times, most recently from 2ba35df to 6a66b87 Compare February 4, 2025 14:24
@renovate renovate bot force-pushed the renovate/all-minor-patch-or-digest-dependencies-on-go branch 4 times, most recently from c3e0652 to 520e295 Compare February 10, 2025 20:50
@renovate renovate bot force-pushed the renovate/all-minor-patch-or-digest-dependencies-on-go branch 9 times, most recently from 5efd502 to d783b4f Compare February 18, 2025 15:41
@renovate renovate bot force-pushed the renovate/all-minor-patch-or-digest-dependencies-on-go branch 5 times, most recently from 4fa9183 to 1551c81 Compare February 28, 2025 23:26
@renovate renovate bot force-pushed the renovate/all-minor-patch-or-digest-dependencies-on-go branch 5 times, most recently from b9924c1 to 52d36ae Compare March 10, 2025 02:03
@renovate renovate bot force-pushed the renovate/all-minor-patch-or-digest-dependencies-on-go branch from 52d36ae to b1d0d19 Compare March 10, 2025 07:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants