woodpecker-ci / woodpecker

Woodpecker is a simple, yet powerful CI/CD engine with great extensibility.
https://woodpecker-ci.org
Apache License 2.0
4.16k stars 360 forks source link

fix(deps): update golang-packages #3713

Closed renovate[bot] closed 4 months ago

renovate[bot] commented 4 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
code.gitea.io/sdk/gitea v0.17.1 -> v0.18.0 age adoption passing confidence
github.com/caddyserver/certmagic v0.20.0 -> v0.21.2 age adoption passing confidence
github.com/distribution/reference v0.5.0 -> v0.6.0 age adoption passing confidence
github.com/expr-lang/expr v1.16.3 -> v1.16.7 age adoption passing confidence
github.com/gin-gonic/gin v1.9.1 -> v1.10.0 age adoption passing confidence
github.com/hashicorp/go-hclog v1.2.0 -> v1.6.3 age adoption passing confidence
github.com/hashicorp/go-plugin v1.4.3 -> v1.6.1 age adoption passing confidence
github.com/prometheus/client_golang v1.19.0 -> v1.19.1 age adoption passing confidence
github.com/rs/zerolog v1.32.0 -> v1.33.0 age adoption passing confidence
github.com/urfave/cli/v2 v2.27.1 -> v2.27.2 age adoption passing confidence
github.com/xanzy/go-gitlab v0.101.0 -> v0.105.0 age adoption passing confidence
golang.org/x/crypto v0.22.0 -> v0.23.0 age adoption passing confidence
golang.org/x/net v0.24.0 -> v0.25.0 age adoption passing confidence
golang.org/x/oauth2 v0.18.0 -> v0.20.0 age adoption passing confidence
golang.org/x/sync v0.6.0 -> v0.7.0 age adoption passing confidence
golang.org/x/term v0.19.0 -> v0.20.0 age adoption passing confidence
golang.org/x/text v0.14.0 -> v0.15.0 age adoption passing confidence
google.golang.org/grpc v1.62.1 -> v1.64.0 age adoption passing confidence
google.golang.org/protobuf v1.33.0 -> v1.34.1 age adoption passing confidence
k8s.io/api v0.29.3 -> v0.30.1 age adoption passing confidence
k8s.io/apimachinery v0.29.3 -> v0.30.1 age adoption passing confidence
k8s.io/client-go v0.29.3 -> v0.30.1 age adoption passing confidence

Release Notes

caddyserver/certmagic (github.com/caddyserver/certmagic) ### [`v0.21.2`](https://togithub.com/caddyserver/certmagic/releases/tag/v0.21.2) [Compare Source](https://togithub.com/caddyserver/certmagic/compare/v0.21.1...v0.21.2) This is apparently the same as v0.21.1, for some reason I thought there were new commits. Oh well, enjoy! #### What's Changed - Apply DefaultServerName more broadly during handshake by [@​mholt](https://togithub.com/mholt) in [https://github.com/caddyserver/certmagic/pull/287](https://togithub.com/caddyserver/certmagic/pull/287) - downgrade minimum Go version by [@​mohammed90](https://togithub.com/mohammed90) in [https://github.com/caddyserver/certmagic/pull/289](https://togithub.com/caddyserver/certmagic/pull/289) **Full Changelog**: https://github.com/caddyserver/certmagic/compare/v0.21.0...v0.21.2 ### [`v0.21.1`](https://togithub.com/caddyserver/certmagic/compare/v0.21.0...v0.21.1) [Compare Source](https://togithub.com/caddyserver/certmagic/compare/v0.21.0...v0.21.1) ### [`v0.21.0`](https://togithub.com/caddyserver/certmagic/releases/tag/v0.21.0) [Compare Source](https://togithub.com/caddyserver/certmagic/compare/v0.20.0...v0.21.0) CertMagic v0.21 introduces some big changes: - Draft support for draft-03 of [ACME Renewal Information (ARI)](https://datatracker.ietf.org/doc/draft-ietf-acme-ari/) which assists with deciding when to renew certificates. This augments CertMagic's already-advanced logic using cert lifetime and OCSP/revocation status. - New [`ZeroSSLIssuer`](https://pkg.go.dev/github.com/caddyserver/certmagic@v0.21.0#ZeroSSLIssuer) uses the [ZeroSSL API](https://zerossl.com/documentation/api/) to get certificates. ZeroSSL also has an ACME endpoint, which can still be accesed using the existing ACMEIssuer, as always. Their proprietary API is paid, but has extra features like IP certificates, better reliability, and support. - DNS challenges should be smoother in some cases as we've improved propagation checking. - In the odd case your ACME account disappears from the ACME server, CertMagic will automatically retry with a new account. (This happens in some test/dev environments.) - ACME accounts are identified only by their public keys, but CertMagic maps accounts by CA+email for practical/storage reasons. So now you can "pin" an account key to use by specifying your email and the account public key in your config, which is useful if you need to absolutely be sure to use a specific account (like if you get rate limit exemptions from a CA). Please try it out and report any issues! Thanks to [@​Framer](https://togithub.com/Framer) for their contributions to this release! #### What's Changed - Bump golang.org/x/crypto from 0.14.0 to 0.17.0 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/caddyserver/certmagic/pull/264](https://togithub.com/caddyserver/certmagic/pull/264) - Demote "storage cleaning happened too recently" from WARN to INFO by [@​francislavoie](https://togithub.com/francislavoie) in [https://github.com/caddyserver/certmagic/pull/270](https://togithub.com/caddyserver/certmagic/pull/270) - Check DNS propagation at authoritative nameservers only with default resolvers by [@​pgeh](https://togithub.com/pgeh) in [https://github.com/caddyserver/certmagic/pull/274](https://togithub.com/caddyserver/certmagic/pull/274) - Retry with new account if account disappeared remotely by [@​mholt](https://togithub.com/mholt) in [https://github.com/caddyserver/certmagic/pull/269](https://togithub.com/caddyserver/certmagic/pull/269) - Update readme examples to use TLS-ALPN const from ACMEz by [@​goksan](https://togithub.com/goksan) in [https://github.com/caddyserver/certmagic/pull/277](https://togithub.com/caddyserver/certmagic/pull/277) - Initial implementation of ZeroSSL API issuer by [@​mholt](https://togithub.com/mholt) in [https://github.com/caddyserver/certmagic/pull/279](https://togithub.com/caddyserver/certmagic/pull/279) - Allow deleting directories via FileStorage by [@​goksan](https://togithub.com/goksan) in [https://github.com/caddyserver/certmagic/pull/282](https://togithub.com/caddyserver/certmagic/pull/282) - Use the `email` configuration in the ACME issuer to "pin" an account to a key by [@​ankon](https://togithub.com/ankon) in [https://github.com/caddyserver/certmagic/pull/283](https://togithub.com/caddyserver/certmagic/pull/283) - Initial implementation of ARI by [@​mholt](https://togithub.com/mholt) in [https://github.com/caddyserver/certmagic/pull/286](https://togithub.com/caddyserver/certmagic/pull/286) #### New Contributors - [@​pgeh](https://togithub.com/pgeh) made their first contribution in [https://github.com/caddyserver/certmagic/pull/274](https://togithub.com/caddyserver/certmagic/pull/274) - [@​goksan](https://togithub.com/goksan) made their first contribution in [https://github.com/caddyserver/certmagic/pull/277](https://togithub.com/caddyserver/certmagic/pull/277) **Full Changelog**: https://github.com/caddyserver/certmagic/compare/v0.20.0...v0.21.0
distribution/reference (github.com/distribution/reference) ### [`v0.6.0`](https://togithub.com/distribution/reference/releases/tag/v0.6.0) [Compare Source](https://togithub.com/distribution/reference/compare/v0.5.0...v0.6.0) #### What's Changed - remove deprecated SplitHostname by [@​thaJeztah](https://togithub.com/thaJeztah) in [https://github.com/distribution/reference/pull/5](https://togithub.com/distribution/reference/pull/5) - refactor splitDockerDomain to include more documentation by [@​thaJeztah](https://togithub.com/thaJeztah) in [https://github.com/distribution/reference/pull/7](https://togithub.com/distribution/reference/pull/7) - fix typo in readme by [@​xrstf](https://togithub.com/xrstf) in [https://github.com/distribution/reference/pull/10](https://togithub.com/distribution/reference/pull/10) - Exclude domain from name length check by [@​ozairasim](https://togithub.com/ozairasim) in [https://github.com/distribution/reference/pull/9](https://togithub.com/distribution/reference/pull/9) #### New Contributors - [@​xrstf](https://togithub.com/xrstf) made their first contribution in [https://github.com/distribution/reference/pull/10](https://togithub.com/distribution/reference/pull/10) - [@​ozairasim](https://togithub.com/ozairasim) made their first contribution in [https://github.com/distribution/reference/pull/9](https://togithub.com/distribution/reference/pull/9) **Full Changelog**: https://github.com/distribution/reference/compare/v0.5.0...v0.6.0
expr-lang/expr (github.com/expr-lang/expr) ### [`v1.16.7`](https://togithub.com/expr-lang/expr/releases/tag/v1.16.7) [Compare Source](https://togithub.com/expr-lang/expr/compare/v1.16.6...v1.16.7) **Expr** is a Go-centric expression language designed to deliver dynamic configurations with unparalleled accuracy, safety, and speed. ```go program, err := expr.Compile(`now() - created_at < duration("24h")`) ``` **In this release**: - Improved now() and date() type validation - Updated documentation **Expr Editor** The [Expr Editor](https://expr-lang.org/editor) is an embeddable code editor written in JavaScript with full support of Expr language. **Expr Pro** [Expr Pro](https://expr-lang.org/expr-pro) is a set of extensions for Expr for advanced use cases. It includes expressions explanation, performance profiling, and more. ### [`v1.16.6`](https://togithub.com/expr-lang/expr/releases/tag/v1.16.6) [Compare Source](https://togithub.com/expr-lang/expr/compare/v1.16.5...v1.16.6) **Expr** is a Go-centric expression language designed to deliver dynamic configurations with unparalleled accuracy, safety, and speed. ```go program, err := expr.Compile(`now() - created_at < duration("24h")`) ``` **In this release**: - Added an option to set default timezone for `date()` and `now()` builtins with `expr.Timezone("Europe/Zurich")` - Added a new `timezone("UTC")` builtin - Fixed double-escaping of keys in map printing ([#​640](https://togithub.com/expr-lang/expr/issues/640)) - Starting from this release, Expr has no dependencies [go.mod](https://togithub.com/expr-lang/expr/blob/master/go.mod) ([#​618](https://togithub.com/expr-lang/expr/issues/618), [#​642](https://togithub.com/expr-lang/expr/issues/642)) **Expr Editor** The [Expr Editor](https://expr-lang.org/editor) is an embeddable code editor written in JavaScript with full support of Expr language. **Expr Pro** [Expr Pro](https://expr-lang.org/expr-pro) is a set of extensions for Expr for advanced use cases. It includes expressions explanation, performance profiling, and more. ### [`v1.16.5`](https://togithub.com/expr-lang/expr/releases/tag/v1.16.5) [Compare Source](https://togithub.com/expr-lang/expr/compare/v1.16.4...v1.16.5) **Expr** is a Go-centric expression language designed to deliver dynamic configurations with unparalleled accuracy, safety, and speed. ```go output, err := expr.Eval("metric > 100", map[string]any{ "metric": 200, }) ``` **In this release**: - Added compiler optimization for boolean operations between all, any, none functions ([#​626](https://togithub.com/expr-lang/expr/issues/626)) - Added optional predicate to `sum()` builtin ([#​592](https://togithub.com/expr-lang/expr/issues/592)) - Added `sum()` compiler optimization [`c2b609e`](https://togithub.com/expr-lang/expr/commit/c2b609e) [`edb1b5a`](https://togithub.com/expr-lang/expr/commit/edb1b5a) - Improved `WithContext` to work for methods on env struct ([#​602](https://togithub.com/expr-lang/expr/issues/602)) - Improved `count()` builtin: now predicate is optional [`725b702`](https://togithub.com/expr-lang/expr/commit/725b702) - Fixed printing of combinations conditional with binary nodes [`6157395`](https://togithub.com/expr-lang/expr/commit/6157395) - Fixed optional chaining to return proper nil [`5804ccb`](https://togithub.com/expr-lang/expr/commit/5804ccb) **Expr Editor** The [Expr Editor](https://expr-lang.org/editor) is an embeddable code editor written in JavaScript with full support of Expr language. **Expr Pro** [Expr Pro](https://expr-lang.org/expr-pro) is a set of extensions for Expr for advanced use cases. It includes expressions explanation, performance profiling, and more. ### [`v1.16.4`](https://togithub.com/expr-lang/expr/releases/tag/v1.16.4) [Compare Source](https://togithub.com/expr-lang/expr/compare/v1.16.3...v1.16.4) This release reverts a wrong compiler optimization for all, any, one, none predicates ([#​555](https://togithub.com/expr-lang/expr/issues/555)). The optimization contains error logic which can lead to a wrong expression. **It is highly recommended to upgrade to the latest version**.
gin-gonic/gin (github.com/gin-gonic/gin) ### [`v1.10.0`](https://togithub.com/gin-gonic/gin/releases/tag/v1.10.0) [Compare Source](https://togithub.com/gin-gonic/gin/compare/v1.9.1...v1.10.0) #### Changelog ##### Features - [`5f458dd`](https://togithub.com/gin-gonic/gin/commit/5f458dd1a6d631f324e4af9a4f5429ffdf199342): feat(auth): add proxy-server authentication ([#​3877](https://togithub.com/gin-gonic/gin/issues/3877)) ([@​EndlessParadox1](https://togithub.com/EndlessParadox1)) - [`7a865dc`](https://togithub.com/gin-gonic/gin/commit/7a865dcf1dbe6ec52e074b1ddce830d278eb72cf): feat(bind): ShouldBindBodyWith shortcut and change doc ([#​3871](https://togithub.com/gin-gonic/gin/issues/3871)) ([@​RedCrazyGhost](https://togithub.com/RedCrazyGhost)) - [`a182195`](https://togithub.com/gin-gonic/gin/commit/a18219566ca25fc51e6d2886bed849c6c3a0cd12): feat(binding): Support custom BindUnmarshaler for binding. ([#​3933](https://togithub.com/gin-gonic/gin/issues/3933)) ([@​dkkb](https://togithub.com/dkkb)) - [`fd1faad`](https://togithub.com/gin-gonic/gin/commit/fd1faaded01aef14a3955ec076f1cbeb9cb87775): feat(binding): support override default binding implement ([#​3514](https://togithub.com/gin-gonic/gin/issues/3514)) ([@​ssfyn](https://togithub.com/ssfyn)) - [`ac5e84d`](https://togithub.com/gin-gonic/gin/commit/ac5e84d93ce34359bfd2f346cb2971ea754d83e3): feat(engine): Added `OptionFunc` and `With` ([#​3572](https://togithub.com/gin-gonic/gin/issues/3572)) ([@​flc1125](https://togithub.com/flc1125)) - [`c6ae2e6`](https://togithub.com/gin-gonic/gin/commit/c6ae2e69666a2b36203b29650ee75d172c725c66): feat(logger): ability to skip logs based on user-defined logic ([#​3593](https://togithub.com/gin-gonic/gin/issues/3593)) ([@​palvaneh](https://togithub.com/palvaneh)) ##### Bug fixes - [`d4e4136`](https://togithub.com/gin-gonic/gin/commit/d4e413648824333726ef65de5defc457e9dbf095): Revert "fix(uri): query binding bug ([#​3236](https://togithub.com/gin-gonic/gin/issues/3236))" ([#​3899](https://togithub.com/gin-gonic/gin/issues/3899)) ([@​appleboy](https://togithub.com/appleboy)) - [`3dc1cd6`](https://togithub.com/gin-gonic/gin/commit/3dc1cd6572b4e3a0cd170a15debe546c2c72294f): fix(binding): binding error while not upload file ([#​3819](https://togithub.com/gin-gonic/gin/issues/3819)) ([#​3820](https://togithub.com/gin-gonic/gin/issues/3820)) ([@​clearcodecn](https://togithub.com/clearcodecn)) - [`82bcd6d`](https://togithub.com/gin-gonic/gin/commit/82bcd6d39bfe9c22032764ff3b0b6f8ef1673e49): fix(binding): dereference pointer to struct ([#​3199](https://togithub.com/gin-gonic/gin/issues/3199)) ([@​echovl](https://togithub.com/echovl)) - [`2b1da2b`](https://togithub.com/gin-gonic/gin/commit/2b1da2b0b38dfc5d5841266037c0c8b249eca1dd): fix(context): make context Value method adhere to Go standards ([#​3897](https://togithub.com/gin-gonic/gin/issues/3897)) ([@​FarmerChillax](https://togithub.com/FarmerChillax)) - [`f70dd00`](https://togithub.com/gin-gonic/gin/commit/f70dd00b00bc0a46cb18b55bfe1f918d5d29b511): fix(engine): fix unit test ([#​3878](https://togithub.com/gin-gonic/gin/issues/3878)) ([@​flc1125](https://togithub.com/flc1125)) - [`86ff4a6`](https://togithub.com/gin-gonic/gin/commit/86ff4a64c7efe1a1c875529835eeef9e15de1e86): fix(header): Allow header according to RFC 7231 (HTTP 405) ([#​3759](https://togithub.com/gin-gonic/gin/issues/3759)) ([@​Crocmagnon](https://togithub.com/Crocmagnon)) - [`09f8224`](https://togithub.com/gin-gonic/gin/commit/09f8224593e31edf3c58ab3f13bc31ef53473733): fix(route): Add fullPath in context copy ([#​3784](https://togithub.com/gin-gonic/gin/issues/3784)) ([@​KarthikReddyPuli](https://togithub.com/KarthikReddyPuli)) - [`9f598a3`](https://togithub.com/gin-gonic/gin/commit/9f598a31aafb92d675f38f1c8371e4ac76f858bf): fix(router): catch-all conflicting wildcard ([#​3812](https://togithub.com/gin-gonic/gin/issues/3812)) ([@​FirePing32](https://togithub.com/FirePing32)) - [`4a40f8f`](https://togithub.com/gin-gonic/gin/commit/4a40f8f1a49b9086b461d97e167c3b9628d8b923): fix(sec): upgrade golang.org/x/crypto to 0.17.0 ([#​3832](https://togithub.com/gin-gonic/gin/issues/3832)) ([@​chncaption](https://togithub.com/chncaption)) - [`386d244`](https://togithub.com/gin-gonic/gin/commit/386d244068db3693f938db4ead6d1f5f85942e3f): fix(tree): correctly expand the capacity of params ([#​3502](https://togithub.com/gin-gonic/gin/issues/3502)) ([@​georgijd-form3](https://togithub.com/georgijd-form3)) - [`8790d08`](https://togithub.com/gin-gonic/gin/commit/8790d08909fc4d193c6c787c9c72f3089168f411): fix(uri): query binding bug ([#​3236](https://togithub.com/gin-gonic/gin/issues/3236)) ([@​illiafox](https://togithub.com/illiafox)) - [`44d0dd7`](https://togithub.com/gin-gonic/gin/commit/44d0dd70924dd154e3b98bc340accc53484efa9c): fix: Add pointer support for url query params ([#​3659](https://togithub.com/gin-gonic/gin/issues/3659)) ([#​3666](https://togithub.com/gin-gonic/gin/issues/3666)) ([@​omkar-foss](https://togithub.com/omkar-foss)) - [`646312a`](https://togithub.com/gin-gonic/gin/commit/646312aef6a34095476ac846b0920db5fb24b2ea): fix: protect Context.Keys map when call Copy method ([#​3873](https://togithub.com/gin-gonic/gin/issues/3873)) ([@​kingcanfish](https://togithub.com/kingcanfish)) ##### Enhancements - [`d4a6426`](https://togithub.com/gin-gonic/gin/commit/d4a64265f21993368c90602c18e778bf04ef36db): chore(CI): update release args ([#​3595](https://togithub.com/gin-gonic/gin/issues/3595)) ([@​qloog](https://togithub.com/qloog)) - [`bb3519d`](https://togithub.com/gin-gonic/gin/commit/bb3519d26f52835cf00e5e430b52651a9c378c97): chore(IP): add TrustedPlatform constant for Fly.io. ([#​3839](https://togithub.com/gin-gonic/gin/issues/3839)) ([@​ab](https://togithub.com/ab)) - [`1b3c085`](https://togithub.com/gin-gonic/gin/commit/1b3c0859693fc85290c01ba098b1440d4776549f): chore(debug): add ability to override the debugPrint statement ([#​2337](https://togithub.com/gin-gonic/gin/issues/2337)) ([@​josegonzalez](https://togithub.com/josegonzalez)) - [`a64286a`](https://togithub.com/gin-gonic/gin/commit/a64286a7760be2031209686ce4d36e99d42dd419): chore(deps): update dependencies to latest versions ([#​3835](https://togithub.com/gin-gonic/gin/issues/3835)) ([@​appleboy](https://togithub.com/appleboy)) - [`9c61295`](https://togithub.com/gin-gonic/gin/commit/9c61295efeea99f6c9d1722294f1bf61d8e464d6): chore(header): Add support for RFC 9512: application/yaml ([#​3851](https://togithub.com/gin-gonic/gin/issues/3851)) ([@​vincentbernat](https://togithub.com/vincentbernat)) - [`a481ee2`](https://togithub.com/gin-gonic/gin/commit/a481ee2897af1e368de5c919fbeb21b89aa26fc7): chore(http): use white color for HTTP 1XX ([#​3741](https://togithub.com/gin-gonic/gin/issues/3741)) ([@​viralparmarme](https://togithub.com/viralparmarme)) - [`c964ad3`](https://togithub.com/gin-gonic/gin/commit/c964ad370bbe007f1b18a7570f058a66f05fbe1f): chore(optimize): the ShouldBindUri method of the Context struct ([#​3911](https://togithub.com/gin-gonic/gin/issues/3911)) ([@​1911860538](https://togithub.com/1911860538)) - [`739d2d9`](https://togithub.com/gin-gonic/gin/commit/739d2d9c80e0298dafb5df1c30bae35d63935d6c): chore(perf): Optimize the Copy method of the Context struct ([#​3859](https://togithub.com/gin-gonic/gin/issues/3859)) ([@​1911860538](https://togithub.com/1911860538)) - [`3ea8bd9`](https://togithub.com/gin-gonic/gin/commit/3ea8bd99fbb4e499d70a0c8e1ce2ce4b7c6348b6): chore(refactor): modify interface check way ([#​3855](https://togithub.com/gin-gonic/gin/issues/3855)) ([@​demoManito](https://togithub.com/demoManito)) - [`ab8042e`](https://togithub.com/gin-gonic/gin/commit/ab8042e9e5370bbe0e93ea5adc6e74ae4c5df95e): chore(request): check reader if it's nil before reading ([#​3419](https://togithub.com/gin-gonic/gin/issues/3419)) ([@​noahyao1024](https://togithub.com/noahyao1024)) - [`0d9dbbb`](https://togithub.com/gin-gonic/gin/commit/0d9dbbb44551a872d30fd89d4d55ba0515d646fd): chore(security): upgrade Protobuf for CVE-2024-24786 ([#​3893](https://togithub.com/gin-gonic/gin/issues/3893)) ([@​Fotkurz](https://togithub.com/Fotkurz)) - [`ecdbbbe`](https://togithub.com/gin-gonic/gin/commit/ecdbbbe9483dd12222f2085f717a2c7cb5ac55fe): chore: refactor CI and update dependencies ([#​3848](https://togithub.com/gin-gonic/gin/issues/3848)) ([@​appleboy](https://togithub.com/appleboy)) - [`39089af`](https://togithub.com/gin-gonic/gin/commit/39089af62535b27aa63608f341c0a339aa88f64e): chore: refactor configuration files for better readability ([#​3951](https://togithub.com/gin-gonic/gin/issues/3951)) ([@​appleboy](https://togithub.com/appleboy)) - [`160c173`](https://togithub.com/gin-gonic/gin/commit/160c1730efd30046239c802d5b9f895a708c3f4c): chore: update GitHub Actions configuration ([#​3792](https://togithub.com/gin-gonic/gin/issues/3792)) ([@​appleboy](https://togithub.com/appleboy)) - [`0397e5e`](https://togithub.com/gin-gonic/gin/commit/0397e5e0c0f8f8176c29f7edd8f1bff8e45df780): chore: update changelog categories and improve documentation ([#​3917](https://togithub.com/gin-gonic/gin/issues/3917)) ([@​appleboy](https://togithub.com/appleboy)) - [`62b50cf`](https://togithub.com/gin-gonic/gin/commit/62b50cfbc0de877207ff74c160a23dff6394f563): chore: update dependencies to latest versions ([#​3694](https://togithub.com/gin-gonic/gin/issues/3694)) ([@​appleboy](https://togithub.com/appleboy)) - [`638aa19`](https://togithub.com/gin-gonic/gin/commit/638aa19e7d30513f7bc777c62ff8558fd5f90ea5): chore: update external dependencies to latest versions ([#​3950](https://togithub.com/gin-gonic/gin/issues/3950)) ([@​appleboy](https://togithub.com/appleboy)) - [`c6f90df`](https://togithub.com/gin-gonic/gin/commit/c6f90df4e0c888c69524307cc35952ec2e7ead41): chore: update various Go dependencies to latest versions ([#​3901](https://togithub.com/gin-gonic/gin/issues/3901)) ([@​appleboy](https://togithub.com/appleboy)) ##### Build process updates - [`78f4687`](https://togithub.com/gin-gonic/gin/commit/78f4687875d72d10392f8a77008cbefdec4c0aa0): build(codecov): Added a codecov configuration ([#​3891](https://togithub.com/gin-gonic/gin/issues/3891)) ([@​flc1125](https://togithub.com/flc1125)) - [`56dc72c`](https://togithub.com/gin-gonic/gin/commit/56dc72c4d5b1076fc9c6b81f57299739c11910b8): ci(Makefile): vet command add .PHONY ([#​3915](https://togithub.com/gin-gonic/gin/issues/3915)) ([@​imalasong](https://togithub.com/imalasong)) - [`8ab47c6`](https://togithub.com/gin-gonic/gin/commit/8ab47c694ea93fdb442b617961ce9b3171151749): ci(lint): update tooling and workflows for consistency ([#​3834](https://togithub.com/gin-gonic/gin/issues/3834)) ([@​appleboy](https://togithub.com/appleboy)) - [`8acbe65`](https://togithub.com/gin-gonic/gin/commit/8acbe657f1c140e3fba38f869978cab2376500c9): ci(release): refactor changelog regex patterns and exclusions ([#​3914](https://togithub.com/gin-gonic/gin/issues/3914)) ([@​appleboy](https://togithub.com/appleboy)) - [`000fdb3`](https://togithub.com/gin-gonic/gin/commit/000fdb3ac95c7c318440afbd98eaf60f7430a1db): ci(testing): add go1.22 version ([#​3842](https://togithub.com/gin-gonic/gin/issues/3842)) ([@​appleboy](https://togithub.com/appleboy)) ##### Documentation updates - [`990c44a`](https://togithub.com/gin-gonic/gin/commit/990c44aebf20f0796d99051e53d6ee75b7ed52fb): docs(context): Added deprecation comments to BindWith ([#​3880](https://togithub.com/gin-gonic/gin/issues/3880)) ([@​flc1125](https://togithub.com/flc1125)) - [`861ffb9`](https://togithub.com/gin-gonic/gin/commit/861ffb9181dc811dc5d76fc450b36d3e68850b95): docs(middleware): comments to function `BasicAuthForProxy` ([#​3881](https://togithub.com/gin-gonic/gin/issues/3881)) ([@​EndlessParadox1](https://togithub.com/EndlessParadox1)) - [`ee70b30`](https://togithub.com/gin-gonic/gin/commit/ee70b30a97205ac1f32889f41d8a494b3b2c81a5): docs: Add document to constant `AuthProxyUserKey` and `BasicAuthForProxy`. ([#​3887](https://togithub.com/gin-gonic/gin/issues/3887)) ([@​EndlessParadox1](https://togithub.com/EndlessParadox1)) - [`f75144a`](https://togithub.com/gin-gonic/gin/commit/f75144a356e57c95bd21a048f0a40492dcdb33c5): docs: fix typo in comment ([#​3868](https://togithub.com/gin-gonic/gin/issues/3868)) ([@​testwill](https://togithub.com/testwill)) - [`83fc767`](https://togithub.com/gin-gonic/gin/commit/83fc7673f9797b4c7d8d1c41b94e9922303e6275): docs: fix typo in function documentation ([#​3872](https://togithub.com/gin-gonic/gin/issues/3872)) ([@​TotomiEcio](https://togithub.com/TotomiEcio)) - [`49f45a5`](https://togithub.com/gin-gonic/gin/commit/49f45a542719df661bd71dd48f1595f0bc1ff6f7): docs: remove redundant comments ([#​3765](https://togithub.com/gin-gonic/gin/issues/3765)) ([@​WeiTheShinobi](https://togithub.com/WeiTheShinobi)) - [`75ccf94`](https://togithub.com/gin-gonic/gin/commit/75ccf94d605a05fe24817fc2f166f6f2959d5cea): feat: update version constant to v1.10.0 ([#​3952](https://togithub.com/gin-gonic/gin/issues/3952)) ([@​appleboy](https://togithub.com/appleboy)) ##### Others - [`02e754b`](https://togithub.com/gin-gonic/gin/commit/02e754be9c4889f7ee56db0660cc611eb82b61d6): Upgrade golang.org/x/net -> v0.13.0 ([#​3684](https://togithub.com/gin-gonic/gin/issues/3684)) ([@​cpcf](https://togithub.com/cpcf)) - [`97eab7d`](https://togithub.com/gin-gonic/gin/commit/97eab7d09a8b048cab4a3d8ebd6c0ea78284c716): test(git): gitignore add develop tools ([#​3370](https://togithub.com/gin-gonic/gin/issues/3370)) ([@​demoManito](https://togithub.com/demoManito)) - [`ae15646`](https://togithub.com/gin-gonic/gin/commit/ae15646aba14cd8245fbebd263cc7740c6789ef3): test(http): use constant instead of numeric literal ([#​3863](https://togithub.com/gin-gonic/gin/issues/3863)) ([@​testwill](https://togithub.com/testwill)) - [`fd60a24`](https://togithub.com/gin-gonic/gin/commit/fd60a24ab76c3c92955ba253c1f7eda9e4981c3c): test(path): Optimize unit test execution results ([#​3883](https://togithub.com/gin-gonic/gin/issues/3883)) ([@​flc1125](https://togithub.com/flc1125)) - [`bb2d8cf`](https://togithub.com/gin-gonic/gin/commit/bb2d8cf486bde2dc69bf05ea917095260ac13723): test(render): increased unit tests coverage ([#​3691](https://togithub.com/gin-gonic/gin/issues/3691)) ([@​araujo88](https://togithub.com/araujo88))
hashicorp/go-hclog (github.com/hashicorp/go-hclog) ### [`v1.6.3`](https://togithub.com/hashicorp/go-hclog/releases/tag/v1.6.3): Optional JSON escaping [Compare Source](https://togithub.com/hashicorp/go-hclog/compare/v1.6.2...v1.6.3) #### What's Changed - hclogvet: updates for go1.22 by [@​shoenig](https://togithub.com/shoenig) in [https://github.com/hashicorp/go-hclog/pull/138](https://togithub.com/hashicorp/go-hclog/pull/138) - support configure json escape when log in json format by [@​Ericwww](https://togithub.com/Ericwww) in [https://github.com/hashicorp/go-hclog/pull/141](https://togithub.com/hashicorp/go-hclog/pull/141) #### New Contributors - [@​Ericwww](https://togithub.com/Ericwww) made their first contribution in [https://github.com/hashicorp/go-hclog/pull/141](https://togithub.com/hashicorp/go-hclog/pull/141) **Full Changelog**: https://github.com/hashicorp/go-hclog/compare/v1.6.2...v1.6.3 ### [`v1.6.2`](https://togithub.com/hashicorp/go-hclog/releases/tag/v1.6.2): Fix level syncing [Compare Source](https://togithub.com/hashicorp/go-hclog/compare/v1.6.1...v1.6.2) #### What's Changed - Conside if the level is to be used separately from if the levels should be calculated by [@​evanphx](https://togithub.com/evanphx) in [https://github.com/hashicorp/go-hclog/pull/137](https://togithub.com/hashicorp/go-hclog/pull/137) **Full Changelog**: https://github.com/hashicorp/go-hclog/compare/v1.6.1...v1.6.2 ### [`v1.6.1`](https://togithub.com/hashicorp/go-hclog/releases/tag/v1.6.1): Fix forcing color [Compare Source](https://togithub.com/hashicorp/go-hclog/compare/v1.6.0...v1.6.1) #### What's Changed - Fix colors not being forced on correctly. by [@​evanphx](https://togithub.com/evanphx) in [https://github.com/hashicorp/go-hclog/pull/136](https://togithub.com/hashicorp/go-hclog/pull/136) **Full Changelog**: https://github.com/hashicorp/go-hclog/compare/v1.6.0...v1.6.1 ### [`v1.6.0`](https://togithub.com/hashicorp/go-hclog/releases/tag/v1.6.0): New level inheritance mode [Compare Source](https://togithub.com/hashicorp/go-hclog/compare/v1.5.0...v1.6.0) This release adds the ability to have sub-loggers arrange themselves into a tree and sync the level changes downward in the tree. #### What's Changed - SEC-090: Automated trusted workflow pinning (2023-04-03) by [@​hashicorp-tsccr](https://togithub.com/hashicorp-tsccr) in [https://github.com/hashicorp/go-hclog/pull/128](https://togithub.com/hashicorp/go-hclog/pull/128) - Docs: InferLevelsWithTimestamp relies on InferLevels being true by [@​peteski22](https://togithub.com/peteski22) in [https://github.com/hashicorp/go-hclog/pull/135](https://togithub.com/hashicorp/go-hclog/pull/135) - Implement the ability to more logically share level hierarchies by [@​evanphx](https://togithub.com/evanphx) in [https://github.com/hashicorp/go-hclog/pull/134](https://togithub.com/hashicorp/go-hclog/pull/134) #### New Contributors - [@​hashicorp-tsccr](https://togithub.com/hashicorp-tsccr) made their first contribution in [https://github.com/hashicorp/go-hclog/pull/128](https://togithub.com/hashicorp/go-hclog/pull/128) - [@​peteski22](https://togithub.com/peteski22) made their first contribution in [https://github.com/hashicorp/go-hclog/pull/135](https://togithub.com/hashicorp/go-hclog/pull/135) **Full Changelog**: https://github.com/hashicorp/go-hclog/compare/v1.5.0...v1.6.0 ### [`v1.5.0`](https://togithub.com/hashicorp/go-hclog/releases/tag/v1.5.0): Better color and sublogger mods [Compare Source](https://togithub.com/hashicorp/go-hclog/compare/v1.4.0...v1.5.0) #### What's Changed - Update LICENSE by [@​CalebAlbers](https://togithub.com/CalebAlbers) in [https://github.com/hashicorp/go-hclog/pull/121](https://togithub.com/hashicorp/go-hclog/pull/121) - build: update to go1.20 and x/tools to 0.5.0 by [@​shoenig](https://togithub.com/shoenig) in [https://github.com/hashicorp/go-hclog/pull/125](https://togithub.com/hashicorp/go-hclog/pull/125) - Improve AutoColor functionality by [@​evanphx](https://togithub.com/evanphx) in [https://github.com/hashicorp/go-hclog/pull/123](https://togithub.com/hashicorp/go-hclog/pull/123) - Add ability to wrap new subloggers by [@​evanphx](https://togithub.com/evanphx) in [https://github.com/hashicorp/go-hclog/pull/126](https://togithub.com/hashicorp/go-hclog/pull/126) - \[COMPLIANCE] Add Copyright and License Headers by [@​hashicorp-copywrite](https://togithub.com/hashicorp-copywrite) in [https://github.com/hashicorp/go-hclog/pull/124](https://togithub.com/hashicorp/go-hclog/pull/124) #### New Contributors - [@​CalebAlbers](https://togithub.com/CalebAlbers) made their first contribution in [https://github.com/hashicorp/go-hclog/pull/121](https://togithub.com/hashicorp/go-hclog/pull/121) - [@​hashicorp-copywrite](https://togithub.com/hashicorp-copywrite) made their first contribution in [https://github.com/hashicorp/go-hclog/pull/124](https://togithub.com/hashicorp/go-hclog/pull/124) **Full Changelog**: https://github.com/hashicorp/go-hclog/compare/v1.4.0...v1.5.0 ### [`v1.4.0`](https://togithub.com/hashicorp/go-hclog/releases/tag/v1.4.0): Add GetLevel [Compare Source](https://togithub.com/hashicorp/go-hclog/compare/v1.3.1...v1.4.0) What it says on the tin, add GetLevel to the Logger interface. #### What's Changed - Add GetLevel to Logger interface by [@​evanphx](https://togithub.com/evanphx) in [https://github.com/hashicorp/go-hclog/pull/120](https://togithub.com/hashicorp/go-hclog/pull/120) **Full Changelog**: https://github.com/hashicorp/go-hclog/compare/v1.3.1...v1.4.0 ### [`v1.3.1`](https://togithub.com/hashicorp/go-hclog/releases/tag/v1.3.1): Improved multi line output rendering [Compare Source](https://togithub.com/hashicorp/go-hclog/compare/v1.3.0...v1.3.1) #### What's Changed - When rendering multiple line output, still quote the individual lines by [@​evanphx](https://togithub.com/evanphx) in [https://github.com/hashicorp/go-hclog/pull/119](https://togithub.com/hashicorp/go-hclog/pull/119) **Full Changelog**: https://github.com/hashicorp/go-hclog/compare/v1.3.0...v1.3.1 ### [`v1.3.0`](https://togithub.com/hashicorp/go-hclog/releases/tag/v1.3.0): Field Colorization [Compare Source](https://togithub.com/hashicorp/go-hclog/compare/v1.2.2...v1.3.0) This version adds the ability to colorize fields for improved readability. #### What's Changed - build: update go tools dependency by [@​pkazmierczak](https://togithub.com/pkazmierczak) in [https://github.com/hashicorp/go-hclog/pull/117](https://togithub.com/hashicorp/go-hclog/pull/117) - Add `ColorHeaderAndFields` logger option by [@​picatz](https://togithub.com/picatz) in [https://github.com/hashicorp/go-hclog/pull/118](https://togithub.com/hashicorp/go-hclog/pull/118) #### New Contributors - [@​pkazmierczak](https://togithub.com/pkazmierczak) made their first contribution in [https://github.com/hashicorp/go-hclog/pull/117](https://togithub.com/hashicorp/go-hclog/pull/117) - [@​picatz](https://togithub.com/picatz) made their first contribution in [https://github.com/hashicorp/go-hclog/pull/118](https://togithub.com/hashicorp/go-hclog/pull/118) **Full Changelog**: https://github.com/hashicorp/go-hclog/compare/v1.2.2...v1.3.0 ### [`v1.2.2`](https://togithub.com/hashicorp/go-hclog/releases/tag/v1.2.2): Minor formatting fix [Compare Source](https://togithub.com/hashicorp/go-hclog/compare/v1.2.1...v1.2.2) #### What's Changed - fix various typos in comments by [@​marco-m](https://togithub.com/marco-m) in [https://github.com/hashicorp/go-hclog/pull/115](https://togithub.com/hashicorp/go-hclog/pull/115) - Omit empty colon when message is empty. Fixes [#​109](https://togithub.com/hashicorp/go-hclog/issues/109) by [@​evanphx](https://togithub.com/evanphx) in [https://github.com/hashicorp/go-hclog/pull/116](https://togithub.com/hashicorp/go-hclog/pull/116) **Full Changelog**: https://github.com/hashicorp/go-hclog/compare/v1.2.1...v1.2.2 ### [`v1.2.1`](https://togithub.com/hashicorp/go-hclog/releases/tag/v1.2.1): testify/go.yaml fix [Compare Source](https://togithub.com/hashicorp/go-hclog/compare/v1.2.0...v1.2.1) This bumps the version of testify and go.yaml that are referenced by go-hclog to fix a security issue in go.yaml.
hashicorp/go-plugin (github.com/hashicorp/go-plugin) ### [`v1.6.1`](https://togithub.com/hashicorp/go-plugin/blob/HEAD/CHANGELOG.md#v161) [Compare Source](https://togithub.com/hashicorp/go-plugin/compare/v1.6.0...v1.6.1) BUGS: - Suppress spurious `os.ErrClosed` on plugin shutdown \[[GH-299](https://togithub.com/hashicorp/go-plugin/pull/299)] ENHANCEMENTS: - deps: bump google.golang.org/grpc to v1.58.3 \[[GH-296](https://togithub.com/hashicorp/go-plugin/pull/296)] ### [`v1.6.0`](https://togithub.com/hashicorp/go-plugin/blob/HEAD/CHANGELOG.md#v160) [Compare Source](https://togithub.com/hashicorp/go-plugin/compare/v1.5.2...v1.6.0) CHANGES: - plugin: Plugins written in other languages can optionally start to advertise whether they support gRPC broker multiplexing. If the environment variable `PLUGIN_MULTIPLEX_GRPC` is set, it is safe to include a seventh field containing a boolean value in the `|`-separated protocol negotiation line. ENHANCEMENTS: - Support muxing gRPC broker connections over a single listener \[[GH-288](https://togithub.com/hashicorp/go-plugin/pull/288)] - client: Configurable buffer size for reading plugin log lines \[[GH-265](https://togithub.com/hashicorp/go-plugin/pull/265)] - Use `buf` for proto generation \[[GH-286](https://togithub.com/hashicorp/go-plugin/pull/286)] - deps: bump golang.org/x/net to v0.17.0 \[[GH-285](https://togithub.com/hashicorp/go-plugin/pull/285)] - deps: bump golang.org/x/sys to v0.13.0 \[[GH-285](https://togithub.com/hashicorp/go-plugin/pull/285)] - deps: bump golang.org/x/text to v0.13.0 \[[GH-285](https://togithub.com/hashicorp/go-plugin/pull/285)] ### [`v1.5.2`](https://togithub.com/hashicorp/go-plugin/blob/HEAD/CHANGELOG.md#v152) [Compare Source](https://togithub.com/hashicorp/go-plugin/compare/v1.5.1...v1.5.2) ENHANCEMENTS: client: New `UnixSocketConfig.TempDir` option allows setting the directory to use when creating plugin-specific Unix socket directories \[[GH-282](https://togithub.com/hashicorp/go-plugin/pull/282)] ### [`v1.5.1`](https://togithub.com/hashicorp/go-plugin/blob/HEAD/CHANGELOG.md#v151) [Compare Source](https://togithub.com/hashicorp/go-plugin/compare/v1.5.0...v1.5.1) BUGS: - server: `PLUGIN_UNIX_SOCKET_DIR` is consistently used for gRPC broker sockets as well as the initial socket \[[GH-277](https://togithub.com/hashicorp/go-plugin/pull/277)] ENHANCEMENTS: - client: New `UnixSocketConfig` option in `ClientConfig` to support making the client's Unix sockets group-writable \[[GH-277](https://togithub.com/hashicorp/go-plugin/pull/277)] ### [`v1.5.0`](https://togithub.com/hashicorp/go-plugin/blob/HEAD/CHANGELOG.md#v150) [Compare Source](https://togithub.com/hashicorp/go-plugin/compare/v1.4.10...v1.5.0) ENHANCEMENTS: - client: New `runner.Runner` interface to support clients providing custom plugin command runner implementations \[[GH-270](https://togithub.com/hashicorp/go-plugin/pull/270)] - Accessible via new `ClientConfig` field `RunnerFunc`, which is mutually exclusive with `Cmd` and `Reattach` - Reattaching support via `ReattachConfig` field `ReattachFunc` - client: New `ClientConfig` field `SkipHostEnv` allows omitting the client process' own environment variables from the plugin command's environment \[[GH-270](https://togithub.com/hashicorp/go-plugin/pull/270)] - client: Add `ID()` method to `Client` for retrieving the pid or other unique ID of a running plugin \[[GH-272](https://togithub.com/hashicorp/go-plugin/pull/272)] - server: Support setting the directory to create Unix sockets in with the env var `PLUGIN_UNIX_SOCKET_DIR` \[[GH-270](https://togithub.com/hashicorp/go-plugin/pull/270)] - server: Support setting group write permission and a custom group name or gid owner with the env var `PLUGIN_UNIX_SOCKET_GROUP` \[[GH-270](https://togithub.com/hashicorp/go-plugin/pull/270)] ### [`v1.4.10`](https://togithub.com/hashicorp/go-plugin/blob/HEAD/CHANGELOG.md#v1410) [Compare Source](https://togithub.com/hashicorp/go-plugin/compare/v1.4.9...v1.4.10) BUG FIXES: - additional notes: ensure to close files \[[GH-241](https://togithub.com/hashicorp/go-plugin/pull/241)] ENHANCEMENTS: - deps: Remove direct dependency on golang.org/x/net \[[GH-240](https://togithub.com/hashicorp/go-plugin/pull/240)] ### [`v1.4.9`](https://togithub.com/hashicorp/go-plugin/blob/HEAD/CHANGELOG.md#v149) [Compare Source](https://togithub.com/hashicorp/go-plugin/compare/v1.4.8...v1.4.9) ENHANCEMENTS: - client: Remove log warning introduced in 1.4.5 when SecureConfig is nil. \[[GH-238](https://togithub.com/hashicorp/go-plugin/pull/238)] ### [`v1.4.8`](https://togithub.com/hashicorp/go-plugin/blob/HEAD/CHANGELOG.md#v148) [Compare Source](https://togithub.com/hashicorp/go-plugin/compare/v1.4.7...v1.4.8) BUG FIXES: - Fix windows build: \[[GH-227](https://togithub.com/hashicorp/go-plugin/pull/227)] ### [`v1.4.7`](https://togithub.com/hashicorp/go-plugin/blob/HEAD/CHANGELOG.md#v147) [Compare Source](https://togithub.com/hashicorp/go-plugin/compare/v1.4.6...v1.4.7) ENHANCEMENTS: - More detailed error message on plugin start failure: \[[GH-223](https://togithub.com/hashicorp/go-plugin/pull/223)] ### [`v1.4.6`](https://togithub.com/hashicorp/go-plugin/blob/HEAD/CHANGELOG.md#v146) [Compare Source](https://togithub.com/hashicorp/go-plugin/compare/v1.4.5...v1.4.6) BUG FIXES: - server: Prevent gRPC broker goroutine leak when using `GRPCServer` type `GracefulStop()` or `Stop()` methods \[[GH-220](https://togithub.com/hashicorp/go-plugin/pull/220)] ### [`v1.4.5`](https://togithub.com/hashicorp/go-plugin/blob/HEAD/CHANGELOG.md#v145) [Compare Source](https://togithub.com/hashicorp/go-plugin/compare/v1.4.4...v1.4.5) ENHANCEMENTS: - client: log warning when SecureConfig is nil \[[GH-207](https://togithub.com/hashicorp/go-plugin/pull/207)] ### [`v1.4.4`](https://togithub.com/hashicorp/go-plugin/blob/HEAD/CHANGELOG.md#v144) [Compare Source](https://togithub.com/hashicorp/go-plugin/compare/v1.4.3...v1.4.4) ENHANCEMENTS: - client: increase level of plugin exit logs \[[GH-195](https://togithub.com/hashicorp/go-plugin/pull/195)] BUG FIXES: - Bidirectional communication: fix bidirectional communication when AutoMTLS is enabled \[[GH-193](https://togithub.com/hashicorp/go-plugin/pull/193)] - RPC: Trim a spurious log message for plugins using RPC \[[GH-186](https://togithub.com/hashicorp/go-plugin/pull/186)]
prometheus/client_golang (github.com/prometheus/client_golang) ### [`v1.19.1`](https://togithub.com/prometheus/client_golang/releases/tag/v1.19.1) [Compare Source](https://togithub.com/prometheus/client_golang/compare/v1.19.0...v1.19.1) #### What's Changed - Security patches for `golang.org/x/sys` and `google.golang.org/protobuf` #### New Contributors - [@​lukasauk](https://togithub.com/lukasauk) made their first contribution in [https://github.com/prometheus/client_golang/pull/1494](https://togithub.com/prometheus/client_golang/pull/1494) **Full Changelog**: https://github.com/prometheus/client_golang/compare/v1.19.0...v1.19.1
rs/zerolog (github.com/rs/zerolog) ### [`v1.33.0`](https://togithub.com/rs/zerolog/compare/v1.32.0...v1.33.0) [Compare Source](https://togithub.com/rs/zerolog/compare/v1.32.0...v1.33.0)
urfave/cli (github.com/urfave/cli/v2) ### [`v2.27.2`](https://togithub.com/urfave/cli/releases/tag/v2.27.2) [Compare Source](https://togithub.com/urfave/cli/compare/v2.27.1...v2.27.2) #### What's Changed - Cleanup: Remove unnecessary intermediate variables by [@​1ambd4](https://togithub.com/1ambd4) in [https://github.com/urfave/cli/pull/1857](https://togithub.com/urfave/cli/pull/1857) - Docs:(issue\_1866) Fix documentation on filepath vs env

Configuration

📅 Schedule: Branch creation - "before 4am" (UTC), Automerge - "before 4am" (UTC).

🚦 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.



This PR has been generated by Mend Renovate. View repository job log here.

renovate[bot] commented 4 months ago

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.