-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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: make EventuallyWithT concurrency safe #1395
Conversation
4ce8b36
to
7767496
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was thinking whether this can be fixed by enforcing that condition funcs can never overlap but the documentation is clear that it is checked every tick, so that would be a breaking change. The test relies on the race detector, I don't see a better way to do it.
7767496
to
c790f3f
Compare
So while this effectively serializes calls to CollectT methods (#1418), I'm not convinced this really fixes the core issue. This implementation doesn't fix the real problem which that we may have multiple instances of the I think we will merge this (with |
b93dd46
to
596062c
Compare
@dolmen Thanks for the comment, you're right! I've taken a look into that again and came up with a solution that doesn't involve a mutex. It also doesn't allow a situation where we end up with an empty |
596062c
to
41b483d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks very good!
This is the solution I want!
Also it will allow us to get rid of CollectT
which was a design error of the original implementation (a separate work for which I am studying plans since a week).
As the |
@czeslavo Note for the future, that completely replacing your original implementation on which at least 2 other people worked too (reviewers) with a completely different one, is not a good practice. It would have been better to open a separate PR and close this one. Anyway, in this case, the original implementation can be forgotten. |
5178d6f
to
81a641d
Compare
"address review comments" is never a good commit message. It is completely useless when looking at the Git log or with "git blame". A good commit message must give a summary of what changes, and, if necessary, why. A commit that ONLY says the why is never good. In the present case squashing the commits is the best thing to do. |
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/stretchr/testify](https://github.com/stretchr/testify) | `v1.8.4` -> `v1.9.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fstretchr%2ftestify/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fstretchr%2ftestify/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fstretchr%2ftestify/v1.8.4/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fstretchr%2ftestify/v1.8.4/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>stretchr/testify (github.com/stretchr/testify)</summary> ### [`v1.9.0`](https://github.com/stretchr/testify/releases/tag/v1.9.0) [Compare Source](https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0) #### What's Changed - Fix Go modules version by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - Document that require is not safe to call in created goroutines by [@​programmer04](https://github.com/programmer04) in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - Remove myself from MAINTAINERS.md by [@​mvdkleijn](https://github.com/mvdkleijn) in [https://github.com/stretchr/testify/pull/1367](https://github.com/stretchr/testify/pull/1367) - Correct spelling/grammar by [@​echarrod](https://github.com/echarrod) in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - docs: Update URLs in README by [@​davidjb](https://github.com/davidjb) in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - Update mockery link to Github Pages in README by [@​LandonTClipp](https://github.com/LandonTClipp) in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - docs: Fix typos in tests and comments by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - CI: tests from go1.17 by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1409](https://github.com/stretchr/testify/pull/1409) - Fix adding ? when no values passed by [@​lesichkovm](https://github.com/lesichkovm) in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - codegen: use standard header for generated files by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - mock: AssertExpectations log reason only on failure by [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - assert: fix flaky TestNeverTrue by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1417](https://github.com/stretchr/testify/pull/1417) - README: fix typos "set up" vs "setup" by [@​ossan-dev](https://github.com/ossan-dev) in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - mock: move regexp compilation outside of `Called` by [@​aud10slave](https://github.com/aud10slave) in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - assert: refactor internal func getLen() by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1445](https://github.com/stretchr/testify/pull/1445) - mock: deprecate type AnythingOfTypeArgument ([#​1434](https://github.com/stretchr/testify/issues/1434)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1441](https://github.com/stretchr/testify/pull/1441) - Remove no longer needed assert.canConvert by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1470](https://github.com/stretchr/testify/pull/1470) - assert: ObjectsAreEqual: use time.Equal for time.Time types by [@​tscales](https://github.com/tscales) in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - Bump actions/checkout from 3 to 4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1466](https://github.com/stretchr/testify/pull/1466) - Bump actions/setup-go from 3.2.0 to 4.1.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1451](https://github.com/stretchr/testify/pull/1451) - fix: make EventuallyWithT concurrency safe by [@​czeslavo](https://github.com/czeslavo) in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - assert: fix httpCode and HTTPBody occur panic when http.Handler read Body by [@​hidu](https://github.com/hidu) in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - assert.EqualExportedValues: fix handling of arrays by [@​zrbecker](https://github.com/zrbecker) in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - .github: use latest Go versions by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - assert: Deprecate EqualExportedValues by [@​HaraldNordgren](https://github.com/HaraldNordgren) in [https://github.com/stretchr/testify/pull/1488](https://github.com/stretchr/testify/pull/1488) - suite: refactor test assertions by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1474](https://github.com/stretchr/testify/pull/1474) - suite: fix SetupSubTest and TearDownSubTest execution order by [@​linusbarth](https://github.com/linusbarth) in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - docs: Fix deprecation comments for http package by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1335](https://github.com/stretchr/testify/pull/1335) - Add map support doc comments to Subset and NotSubset by [@​jedevc](https://github.com/jedevc) in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - TestErrorIs/TestNotErrorIs: check error message contents by [@​craig65535](https://github.com/craig65535) in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - suite: fix subtest names (fix [#​1501](https://github.com/stretchr/testify/issues/1501)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1504](https://github.com/stretchr/testify/pull/1504) - assert: improve unsafe.Pointer tests by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1505](https://github.com/stretchr/testify/pull/1505) - assert: simplify isNil implementation by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1506](https://github.com/stretchr/testify/pull/1506) - assert.InEpsilonSlice: fix expected/actual order and other improvements by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1483](https://github.com/stretchr/testify/pull/1483) - Fix dependency cycle with objx [#​1292](https://github.com/stretchr/testify/issues/1292) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1453](https://github.com/stretchr/testify/pull/1453) - mock: refactor TestIsArgsEqual by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1444](https://github.com/stretchr/testify/pull/1444) - mock: optimize argument matching checks by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1416](https://github.com/stretchr/testify/pull/1416) - assert: fix TestEventuallyTimeout by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1412](https://github.com/stretchr/testify/pull/1412) - CI: add go 1.21 in GitHub Actions by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1450](https://github.com/stretchr/testify/pull/1450) - suite: fix recoverAndFailOnPanic to report test failure at the right location by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1502](https://github.com/stretchr/testify/pull/1502) - Update maintainers by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1533](https://github.com/stretchr/testify/pull/1533) - assert: Fix EqualValues to handle overflow/underflow by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - assert: better formatting for Len() error by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1485](https://github.com/stretchr/testify/pull/1485) - Ensure AssertExpectations does not fail in skipped tests by [@​ianrose14](https://github.com/ianrose14) in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - suite: fix deadlock in suite.Require()/Assert() by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1535](https://github.com/stretchr/testify/pull/1535) - Revert "assert: ObjectsAreEqual: use time.Equal for time.Time type" by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1537](https://github.com/stretchr/testify/pull/1537) - \[chore] Add issue templates by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1538](https://github.com/stretchr/testify/pull/1538) - Update the build status badge by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1540](https://github.com/stretchr/testify/pull/1540) - Update Github workflows setup-go to V5 by [@​hendrywiranto](https://github.com/hendrywiranto) in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - Support Pointer to Struct in EqualExportedValues by [@​Lucaber](https://github.com/Lucaber) in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - README: drop link to gorc by [@​guettli](https://github.com/guettli) in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - http_assertions: honour the msgAndArgs provided with each assertion by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1548](https://github.com/stretchr/testify/pull/1548) - fix typos in comments and tests by [@​ccoVeille](https://github.com/ccoVeille) in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - Include the auto-release notes in releases by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1550](https://github.com/stretchr/testify/pull/1550) - Add `NotImplements` and variants by [@​hslatman](https://github.com/hslatman) in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - Add support to compare uintptr by [@​bogdandrutu](https://github.com/bogdandrutu) in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) - build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1552](https://github.com/stretchr/testify/pull/1552) #### New Contributors - [@​SuperQ](https://github.com/SuperQ) made their first contribution in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - [@​programmer04](https://github.com/programmer04) made their first contribution in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - [@​echarrod](https://github.com/echarrod) made their first contribution in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - [@​davidjb](https://github.com/davidjb) made their first contribution in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - [@​LandonTClipp](https://github.com/LandonTClipp) made their first contribution in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - [@​alexandear](https://github.com/alexandear) made their first contribution in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - [@​lesichkovm](https://github.com/lesichkovm) made their first contribution in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - [@​dolmen](https://github.com/dolmen) made their first contribution in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) made their first contribution in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - [@​ossan-dev](https://github.com/ossan-dev) made their first contribution in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - [@​aud10slave](https://github.com/aud10slave) made their first contribution in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - [@​tscales](https://github.com/tscales) made their first contribution in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - [@​czeslavo](https://github.com/czeslavo) made their first contribution in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - [@​hidu](https://github.com/hidu) made their first contribution in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - [@​zrbecker](https://github.com/zrbecker) made their first contribution in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - [@​kevinburkesegment](https://github.com/kevinburkesegment) made their first contribution in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - [@​linusbarth](https://github.com/linusbarth) made their first contribution in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - [@​jedevc](https://github.com/jedevc) made their first contribution in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - [@​craig65535](https://github.com/craig65535) made their first contribution in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - [@​arjunmahishi](https://github.com/arjunmahishi) made their first contribution in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - [@​ianrose14](https://github.com/ianrose14) made their first contribution in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - [@​hendrywiranto](https://github.com/hendrywiranto) made their first contribution in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - [@​Lucaber](https://github.com/Lucaber) made their first contribution in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - [@​guettli](https://github.com/guettli) made their first contribution in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - [@​ccoVeille](https://github.com/ccoVeille) made their first contribution in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - [@​hslatman](https://github.com/hslatman) made their first contribution in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - [@​bogdandrutu](https://github.com/bogdandrutu) made their first contribution in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) **Full Changelog**: stretchr/testify@v1.8.4...v1.9.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), 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 has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <[email protected]>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/stretchr/testify](https://github.com/stretchr/testify) | `v1.8.4` -> `v1.9.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fstretchr%2ftestify/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fstretchr%2ftestify/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fstretchr%2ftestify/v1.8.4/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fstretchr%2ftestify/v1.8.4/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>stretchr/testify (github.com/stretchr/testify)</summary> ### [`v1.9.0`](https://github.com/stretchr/testify/releases/tag/v1.9.0) [Compare Source](https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0) #### What's Changed - Fix Go modules version by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - Document that require is not safe to call in created goroutines by [@​programmer04](https://github.com/programmer04) in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - Remove myself from MAINTAINERS.md by [@​mvdkleijn](https://github.com/mvdkleijn) in [https://github.com/stretchr/testify/pull/1367](https://github.com/stretchr/testify/pull/1367) - Correct spelling/grammar by [@​echarrod](https://github.com/echarrod) in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - docs: Update URLs in README by [@​davidjb](https://github.com/davidjb) in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - Update mockery link to Github Pages in README by [@​LandonTClipp](https://github.com/LandonTClipp) in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - docs: Fix typos in tests and comments by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - CI: tests from go1.17 by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1409](https://github.com/stretchr/testify/pull/1409) - Fix adding ? when no values passed by [@​lesichkovm](https://github.com/lesichkovm) in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - codegen: use standard header for generated files by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - mock: AssertExpectations log reason only on failure by [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - assert: fix flaky TestNeverTrue by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1417](https://github.com/stretchr/testify/pull/1417) - README: fix typos "set up" vs "setup" by [@​ossan-dev](https://github.com/ossan-dev) in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - mock: move regexp compilation outside of `Called` by [@​aud10slave](https://github.com/aud10slave) in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - assert: refactor internal func getLen() by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1445](https://github.com/stretchr/testify/pull/1445) - mock: deprecate type AnythingOfTypeArgument ([#​1434](https://github.com/stretchr/testify/issues/1434)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1441](https://github.com/stretchr/testify/pull/1441) - Remove no longer needed assert.canConvert by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1470](https://github.com/stretchr/testify/pull/1470) - assert: ObjectsAreEqual: use time.Equal for time.Time types by [@​tscales](https://github.com/tscales) in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - Bump actions/checkout from 3 to 4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1466](https://github.com/stretchr/testify/pull/1466) - Bump actions/setup-go from 3.2.0 to 4.1.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1451](https://github.com/stretchr/testify/pull/1451) - fix: make EventuallyWithT concurrency safe by [@​czeslavo](https://github.com/czeslavo) in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - assert: fix httpCode and HTTPBody occur panic when http.Handler read Body by [@​hidu](https://github.com/hidu) in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - assert.EqualExportedValues: fix handling of arrays by [@​zrbecker](https://github.com/zrbecker) in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - .github: use latest Go versions by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - assert: Deprecate EqualExportedValues by [@​HaraldNordgren](https://github.com/HaraldNordgren) in [https://github.com/stretchr/testify/pull/1488](https://github.com/stretchr/testify/pull/1488) - suite: refactor test assertions by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1474](https://github.com/stretchr/testify/pull/1474) - suite: fix SetupSubTest and TearDownSubTest execution order by [@​linusbarth](https://github.com/linusbarth) in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - docs: Fix deprecation comments for http package by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1335](https://github.com/stretchr/testify/pull/1335) - Add map support doc comments to Subset and NotSubset by [@​jedevc](https://github.com/jedevc) in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - TestErrorIs/TestNotErrorIs: check error message contents by [@​craig65535](https://github.com/craig65535) in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - suite: fix subtest names (fix [#​1501](https://github.com/stretchr/testify/issues/1501)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1504](https://github.com/stretchr/testify/pull/1504) - assert: improve unsafe.Pointer tests by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1505](https://github.com/stretchr/testify/pull/1505) - assert: simplify isNil implementation by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1506](https://github.com/stretchr/testify/pull/1506) - assert.InEpsilonSlice: fix expected/actual order and other improvements by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1483](https://github.com/stretchr/testify/pull/1483) - Fix dependency cycle with objx [#​1292](https://github.com/stretchr/testify/issues/1292) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1453](https://github.com/stretchr/testify/pull/1453) - mock: refactor TestIsArgsEqual by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1444](https://github.com/stretchr/testify/pull/1444) - mock: optimize argument matching checks by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1416](https://github.com/stretchr/testify/pull/1416) - assert: fix TestEventuallyTimeout by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1412](https://github.com/stretchr/testify/pull/1412) - CI: add go 1.21 in GitHub Actions by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1450](https://github.com/stretchr/testify/pull/1450) - suite: fix recoverAndFailOnPanic to report test failure at the right location by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1502](https://github.com/stretchr/testify/pull/1502) - Update maintainers by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1533](https://github.com/stretchr/testify/pull/1533) - assert: Fix EqualValues to handle overflow/underflow by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - assert: better formatting for Len() error by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1485](https://github.com/stretchr/testify/pull/1485) - Ensure AssertExpectations does not fail in skipped tests by [@​ianrose14](https://github.com/ianrose14) in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - suite: fix deadlock in suite.Require()/Assert() by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1535](https://github.com/stretchr/testify/pull/1535) - Revert "assert: ObjectsAreEqual: use time.Equal for time.Time type" by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1537](https://github.com/stretchr/testify/pull/1537) - \[chore] Add issue templates by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1538](https://github.com/stretchr/testify/pull/1538) - Update the build status badge by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1540](https://github.com/stretchr/testify/pull/1540) - Update Github workflows setup-go to V5 by [@​hendrywiranto](https://github.com/hendrywiranto) in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - Support Pointer to Struct in EqualExportedValues by [@​Lucaber](https://github.com/Lucaber) in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - README: drop link to gorc by [@​guettli](https://github.com/guettli) in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - http_assertions: honour the msgAndArgs provided with each assertion by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1548](https://github.com/stretchr/testify/pull/1548) - fix typos in comments and tests by [@​ccoVeille](https://github.com/ccoVeille) in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - Include the auto-release notes in releases by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1550](https://github.com/stretchr/testify/pull/1550) - Add `NotImplements` and variants by [@​hslatman](https://github.com/hslatman) in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - Add support to compare uintptr by [@​bogdandrutu](https://github.com/bogdandrutu) in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) - build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1552](https://github.com/stretchr/testify/pull/1552) #### New Contributors - [@​SuperQ](https://github.com/SuperQ) made their first contribution in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - [@​programmer04](https://github.com/programmer04) made their first contribution in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - [@​echarrod](https://github.com/echarrod) made their first contribution in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - [@​davidjb](https://github.com/davidjb) made their first contribution in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - [@​LandonTClipp](https://github.com/LandonTClipp) made their first contribution in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - [@​alexandear](https://github.com/alexandear) made their first contribution in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - [@​lesichkovm](https://github.com/lesichkovm) made their first contribution in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - [@​dolmen](https://github.com/dolmen) made their first contribution in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) made their first contribution in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - [@​ossan-dev](https://github.com/ossan-dev) made their first contribution in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - [@​aud10slave](https://github.com/aud10slave) made their first contribution in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - [@​tscales](https://github.com/tscales) made their first contribution in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - [@​czeslavo](https://github.com/czeslavo) made their first contribution in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - [@​hidu](https://github.com/hidu) made their first contribution in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - [@​zrbecker](https://github.com/zrbecker) made their first contribution in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - [@​kevinburkesegment](https://github.com/kevinburkesegment) made their first contribution in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - [@​linusbarth](https://github.com/linusbarth) made their first contribution in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - [@​jedevc](https://github.com/jedevc) made their first contribution in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - [@​craig65535](https://github.com/craig65535) made their first contribution in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - [@​arjunmahishi](https://github.com/arjunmahishi) made their first contribution in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - [@​ianrose14](https://github.com/ianrose14) made their first contribution in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - [@​hendrywiranto](https://github.com/hendrywiranto) made their first contribution in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - [@​Lucaber](https://github.com/Lucaber) made their first contribution in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - [@​guettli](https://github.com/guettli) made their first contribution in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - [@​ccoVeille](https://github.com/ccoVeille) made their first contribution in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - [@​hslatman](https://github.com/hslatman) made their first contribution in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - [@​bogdandrutu](https://github.com/bogdandrutu) made their first contribution in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) **Full Changelog**: stretchr/testify@v1.8.4...v1.9.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), 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 has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <[email protected]>
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/stretchr/testify](https://github.com/stretchr/testify) | require | minor | `v1.8.4` -> `v1.9.0` | --- ### Release Notes <details> <summary>stretchr/testify (github.com/stretchr/testify)</summary> ### [`v1.9.0`](https://github.com/stretchr/testify/releases/tag/v1.9.0) [Compare Source](https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0) #### What's Changed - Fix Go modules version by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - Document that require is not safe to call in created goroutines by [@​programmer04](https://github.com/programmer04) in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - Remove myself from MAINTAINERS.md by [@​mvdkleijn](https://github.com/mvdkleijn) in [https://github.com/stretchr/testify/pull/1367](https://github.com/stretchr/testify/pull/1367) - Correct spelling/grammar by [@​echarrod](https://github.com/echarrod) in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - docs: Update URLs in README by [@​davidjb](https://github.com/davidjb) in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - Update mockery link to Github Pages in README by [@​LandonTClipp](https://github.com/LandonTClipp) in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - docs: Fix typos in tests and comments by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - CI: tests from go1.17 by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1409](https://github.com/stretchr/testify/pull/1409) - Fix adding ? when no values passed by [@​lesichkovm](https://github.com/lesichkovm) in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - codegen: use standard header for generated files by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - mock: AssertExpectations log reason only on failure by [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - assert: fix flaky TestNeverTrue by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1417](https://github.com/stretchr/testify/pull/1417) - README: fix typos "set up" vs "setup" by [@​ossan-dev](https://github.com/ossan-dev) in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - mock: move regexp compilation outside of `Called` by [@​aud10slave](https://github.com/aud10slave) in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - assert: refactor internal func getLen() by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1445](https://github.com/stretchr/testify/pull/1445) - mock: deprecate type AnythingOfTypeArgument ([#​1434](https://github.com/stretchr/testify/issues/1434)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1441](https://github.com/stretchr/testify/pull/1441) - Remove no longer needed assert.canConvert by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1470](https://github.com/stretchr/testify/pull/1470) - assert: ObjectsAreEqual: use time.Equal for time.Time types by [@​tscales](https://github.com/tscales) in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - Bump actions/checkout from 3 to 4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1466](https://github.com/stretchr/testify/pull/1466) - Bump actions/setup-go from 3.2.0 to 4.1.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1451](https://github.com/stretchr/testify/pull/1451) - fix: make EventuallyWithT concurrency safe by [@​czeslavo](https://github.com/czeslavo) in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - assert: fix httpCode and HTTPBody occur panic when http.Handler read Body by [@​hidu](https://github.com/hidu) in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - assert.EqualExportedValues: fix handling of arrays by [@​zrbecker](https://github.com/zrbecker) in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - .github: use latest Go versions by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - assert: Deprecate EqualExportedValues by [@​HaraldNordgren](https://github.com/HaraldNordgren) in [https://github.com/stretchr/testify/pull/1488](https://github.com/stretchr/testify/pull/1488) - suite: refactor test assertions by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1474](https://github.com/stretchr/testify/pull/1474) - suite: fix SetupSubTest and TearDownSubTest execution order by [@​linusbarth](https://github.com/linusbarth) in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - docs: Fix deprecation comments for http package by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1335](https://github.com/stretchr/testify/pull/1335) - Add map support doc comments to Subset and NotSubset by [@​jedevc](https://github.com/jedevc) in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - TestErrorIs/TestNotErrorIs: check error message contents by [@​craig65535](https://github.com/craig65535) in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - suite: fix subtest names (fix [#​1501](https://github.com/stretchr/testify/issues/1501)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1504](https://github.com/stretchr/testify/pull/1504) - assert: improve unsafe.Pointer tests by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1505](https://github.com/stretchr/testify/pull/1505) - assert: simplify isNil implementation by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1506](https://github.com/stretchr/testify/pull/1506) - assert.InEpsilonSlice: fix expected/actual order and other improvements by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1483](https://github.com/stretchr/testify/pull/1483) - Fix dependency cycle with objx [#​1292](https://github.com/stretchr/testify/issues/1292) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1453](https://github.com/stretchr/testify/pull/1453) - mock: refactor TestIsArgsEqual by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1444](https://github.com/stretchr/testify/pull/1444) - mock: optimize argument matching checks by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1416](https://github.com/stretchr/testify/pull/1416) - assert: fix TestEventuallyTimeout by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1412](https://github.com/stretchr/testify/pull/1412) - CI: add go 1.21 in GitHub Actions by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1450](https://github.com/stretchr/testify/pull/1450) - suite: fix recoverAndFailOnPanic to report test failure at the right location by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1502](https://github.com/stretchr/testify/pull/1502) - Update maintainers by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1533](https://github.com/stretchr/testify/pull/1533) - assert: Fix EqualValues to handle overflow/underflow by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - assert: better formatting for Len() error by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1485](https://github.com/stretchr/testify/pull/1485) - Ensure AssertExpectations does not fail in skipped tests by [@​ianrose14](https://github.com/ianrose14) in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - suite: fix deadlock in suite.Require()/Assert() by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1535](https://github.com/stretchr/testify/pull/1535) - Revert "assert: ObjectsAreEqual: use time.Equal for time.Time type" by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1537](https://github.com/stretchr/testify/pull/1537) - \[chore] Add issue templates by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1538](https://github.com/stretchr/testify/pull/1538) - Update the build status badge by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1540](https://github.com/stretchr/testify/pull/1540) - Update Github workflows setup-go to V5 by [@​hendrywiranto](https://github.com/hendrywiranto) in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - Support Pointer to Struct in EqualExportedValues by [@​Lucaber](https://github.com/Lucaber) in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - README: drop link to gorc by [@​guettli](https://github.com/guettli) in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - http_assertions: honour the msgAndArgs provided with each assertion by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1548](https://github.com/stretchr/testify/pull/1548) - fix typos in comments and tests by [@​ccoVeille](https://github.com/ccoVeille) in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - Include the auto-release notes in releases by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1550](https://github.com/stretchr/testify/pull/1550) - Add `NotImplements` and variants by [@​hslatman](https://github.com/hslatman) in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - Add support to compare uintptr by [@​bogdandrutu](https://github.com/bogdandrutu) in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) - build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1552](https://github.com/stretchr/testify/pull/1552) #### New Contributors - [@​SuperQ](https://github.com/SuperQ) made their first contribution in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - [@​programmer04](https://github.com/programmer04) made their first contribution in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - [@​echarrod](https://github.com/echarrod) made their first contribution in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - [@​davidjb](https://github.com/davidjb) made their first contribution in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - [@​LandonTClipp](https://github.com/LandonTClipp) made their first contribution in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - [@​alexandear](https://github.com/alexandear) made their first contribution in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - [@​lesichkovm](https://github.com/lesichkovm) made their first contribution in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - [@​dolmen](https://github.com/dolmen) made their first contribution in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) made their first contribution in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - [@​ossan-dev](https://github.com/ossan-dev) made their first contribution in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - [@​aud10slave](https://github.com/aud10slave) made their first contribution in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - [@​tscales](https://github.com/tscales) made their first contribution in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - [@​czeslavo](https://github.com/czeslavo) made their first contribution in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - [@​hidu](https://github.com/hidu) made their first contribution in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - [@​zrbecker](https://github.com/zrbecker) made their first contribution in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - [@​kevinburkesegment](https://github.com/kevinburkesegment) made their first contribution in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - [@​linusbarth](https://github.com/linusbarth) made their first contribution in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - [@​jedevc](https://github.com/jedevc) made their first contribution in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - [@​craig65535](https://github.com/craig65535) made their first contribution in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - [@​arjunmahishi](https://github.com/arjunmahishi) made their first contribution in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - [@​ianrose14](https://github.com/ianrose14) made their first contribution in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - [@​hendrywiranto](https://github.com/hendrywiranto) made their first contribution in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - [@​Lucaber](https://github.com/Lucaber) made their first contribution in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - [@​guettli](https://github.com/guettli) made their first contribution in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - [@​ccoVeille](https://github.com/ccoVeille) made their first contribution in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - [@​hslatman](https://github.com/hslatman) made their first contribution in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - [@​bogdandrutu](https://github.com/bogdandrutu) made their first contribution in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) **Full Changelog**: stretchr/testify@v1.8.4...v1.9.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, 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, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMDAuMCIsInVwZGF0ZWRJblZlciI6IjM2LjEwMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Co-authored-by: Self-hosted Renovate Bot <361546+cgrindel-self-hosted-renovate[bot]@users.noreply.github.enterprise.com>
…1573) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/stretchr/testify](https://github.com/stretchr/testify) | `v1.8.4` -> `v1.9.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fstretchr%2ftestify/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fstretchr%2ftestify/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fstretchr%2ftestify/v1.8.4/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fstretchr%2ftestify/v1.8.4/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>stretchr/testify (github.com/stretchr/testify)</summary> ### [`v1.9.0`](https://github.com/stretchr/testify/releases/tag/v1.9.0) [Compare Source](https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0) #### What's Changed - Fix Go modules version by [@&open-telemetry#8203;SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - Document that require is not safe to call in created goroutines by [@&open-telemetry#8203;programmer04](https://github.com/programmer04) in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - Remove myself from MAINTAINERS.md by [@&open-telemetry#8203;mvdkleijn](https://github.com/mvdkleijn) in [https://github.com/stretchr/testify/pull/1367](https://github.com/stretchr/testify/pull/1367) - Correct spelling/grammar by [@&open-telemetry#8203;echarrod](https://github.com/echarrod) in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - docs: Update URLs in README by [@&open-telemetry#8203;davidjb](https://github.com/davidjb) in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - Update mockery link to Github Pages in README by [@&open-telemetry#8203;LandonTClipp](https://github.com/LandonTClipp) in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - docs: Fix typos in tests and comments by [@&open-telemetry#8203;alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - CI: tests from go1.17 by [@&open-telemetry#8203;SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1409](https://github.com/stretchr/testify/pull/1409) - Fix adding ? when no values passed by [@&open-telemetry#8203;lesichkovm](https://github.com/lesichkovm) in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - codegen: use standard header for generated files by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - mock: AssertExpectations log reason only on failure by [@&open-telemetry#8203;hikyaru-suzuki](https://github.com/hikyaru-suzuki) in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - assert: fix flaky TestNeverTrue by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1417](https://github.com/stretchr/testify/pull/1417) - README: fix typos "set up" vs "setup" by [@&open-telemetry#8203;ossan-dev](https://github.com/ossan-dev) in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - mock: move regexp compilation outside of `Called` by [@&open-telemetry#8203;aud10slave](https://github.com/aud10slave) in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - assert: refactor internal func getLen() by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1445](https://github.com/stretchr/testify/pull/1445) - mock: deprecate type AnythingOfTypeArgument ([#&open-telemetry#8203;1434](https://github.com/stretchr/testify/issues/1434)) by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1441](https://github.com/stretchr/testify/pull/1441) - Remove no longer needed assert.canConvert by [@&open-telemetry#8203;alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1470](https://github.com/stretchr/testify/pull/1470) - assert: ObjectsAreEqual: use time.Equal for time.Time types by [@&open-telemetry#8203;tscales](https://github.com/tscales) in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - Bump actions/checkout from 3 to 4 by [@&open-telemetry#8203;dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1466](https://github.com/stretchr/testify/pull/1466) - Bump actions/setup-go from 3.2.0 to 4.1.0 by [@&open-telemetry#8203;dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1451](https://github.com/stretchr/testify/pull/1451) - fix: make EventuallyWithT concurrency safe by [@&open-telemetry#8203;czeslavo](https://github.com/czeslavo) in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - assert: fix httpCode and HTTPBody occur panic when http.Handler read Body by [@&open-telemetry#8203;hidu](https://github.com/hidu) in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - assert.EqualExportedValues: fix handling of arrays by [@&open-telemetry#8203;zrbecker](https://github.com/zrbecker) in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - .github: use latest Go versions by [@&open-telemetry#8203;kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - assert: Deprecate EqualExportedValues by [@&open-telemetry#8203;HaraldNordgren](https://github.com/HaraldNordgren) in [https://github.com/stretchr/testify/pull/1488](https://github.com/stretchr/testify/pull/1488) - suite: refactor test assertions by [@&open-telemetry#8203;alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1474](https://github.com/stretchr/testify/pull/1474) - suite: fix SetupSubTest and TearDownSubTest execution order by [@&open-telemetry#8203;linusbarth](https://github.com/linusbarth) in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - docs: Fix deprecation comments for http package by [@&open-telemetry#8203;alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1335](https://github.com/stretchr/testify/pull/1335) - Add map support doc comments to Subset and NotSubset by [@&open-telemetry#8203;jedevc](https://github.com/jedevc) in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - TestErrorIs/TestNotErrorIs: check error message contents by [@&open-telemetry#8203;craig65535](https://github.com/craig65535) in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - suite: fix subtest names (fix [#&open-telemetry#8203;1501](https://github.com/stretchr/testify/issues/1501)) by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1504](https://github.com/stretchr/testify/pull/1504) - assert: improve unsafe.Pointer tests by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1505](https://github.com/stretchr/testify/pull/1505) - assert: simplify isNil implementation by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1506](https://github.com/stretchr/testify/pull/1506) - assert.InEpsilonSlice: fix expected/actual order and other improvements by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1483](https://github.com/stretchr/testify/pull/1483) - Fix dependency cycle with objx [#&open-telemetry#8203;1292](https://github.com/stretchr/testify/issues/1292) by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1453](https://github.com/stretchr/testify/pull/1453) - mock: refactor TestIsArgsEqual by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1444](https://github.com/stretchr/testify/pull/1444) - mock: optimize argument matching checks by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1416](https://github.com/stretchr/testify/pull/1416) - assert: fix TestEventuallyTimeout by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1412](https://github.com/stretchr/testify/pull/1412) - CI: add go 1.21 in GitHub Actions by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1450](https://github.com/stretchr/testify/pull/1450) - suite: fix recoverAndFailOnPanic to report test failure at the right location by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1502](https://github.com/stretchr/testify/pull/1502) - Update maintainers by [@&open-telemetry#8203;brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1533](https://github.com/stretchr/testify/pull/1533) - assert: Fix EqualValues to handle overflow/underflow by [@&open-telemetry#8203;arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - assert: better formatting for Len() error by [@&open-telemetry#8203;kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1485](https://github.com/stretchr/testify/pull/1485) - Ensure AssertExpectations does not fail in skipped tests by [@&open-telemetry#8203;ianrose14](https://github.com/ianrose14) in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - suite: fix deadlock in suite.Require()/Assert() by [@&open-telemetry#8203;arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1535](https://github.com/stretchr/testify/pull/1535) - Revert "assert: ObjectsAreEqual: use time.Equal for time.Time type" by [@&open-telemetry#8203;brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1537](https://github.com/stretchr/testify/pull/1537) - \[chore] Add issue templates by [@&open-telemetry#8203;arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1538](https://github.com/stretchr/testify/pull/1538) - Update the build status badge by [@&open-telemetry#8203;brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1540](https://github.com/stretchr/testify/pull/1540) - Update Github workflows setup-go to V5 by [@&open-telemetry#8203;hendrywiranto](https://github.com/hendrywiranto) in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - Support Pointer to Struct in EqualExportedValues by [@&open-telemetry#8203;Lucaber](https://github.com/Lucaber) in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - README: drop link to gorc by [@&open-telemetry#8203;guettli](https://github.com/guettli) in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - http_assertions: honour the msgAndArgs provided with each assertion by [@&open-telemetry#8203;arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1548](https://github.com/stretchr/testify/pull/1548) - fix typos in comments and tests by [@&open-telemetry#8203;ccoVeille](https://github.com/ccoVeille) in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - Include the auto-release notes in releases by [@&open-telemetry#8203;brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1550](https://github.com/stretchr/testify/pull/1550) - Add `NotImplements` and variants by [@&open-telemetry#8203;hslatman](https://github.com/hslatman) in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - Add support to compare uintptr by [@&open-telemetry#8203;bogdandrutu](https://github.com/bogdandrutu) in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) - build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2 by [@&open-telemetry#8203;dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1552](https://github.com/stretchr/testify/pull/1552) #### New Contributors - [@&open-telemetry#8203;SuperQ](https://github.com/SuperQ) made their first contribution in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - [@&open-telemetry#8203;programmer04](https://github.com/programmer04) made their first contribution in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - [@&open-telemetry#8203;echarrod](https://github.com/echarrod) made their first contribution in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - [@&open-telemetry#8203;davidjb](https://github.com/davidjb) made their first contribution in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - [@&open-telemetry#8203;LandonTClipp](https://github.com/LandonTClipp) made their first contribution in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - [@&open-telemetry#8203;alexandear](https://github.com/alexandear) made their first contribution in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - [@&open-telemetry#8203;lesichkovm](https://github.com/lesichkovm) made their first contribution in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - [@&open-telemetry#8203;dolmen](https://github.com/dolmen) made their first contribution in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - [@&open-telemetry#8203;hikyaru-suzuki](https://github.com/hikyaru-suzuki) made their first contribution in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - [@&open-telemetry#8203;ossan-dev](https://github.com/ossan-dev) made their first contribution in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - [@&open-telemetry#8203;aud10slave](https://github.com/aud10slave) made their first contribution in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - [@&open-telemetry#8203;tscales](https://github.com/tscales) made their first contribution in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - [@&open-telemetry#8203;czeslavo](https://github.com/czeslavo) made their first contribution in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - [@&open-telemetry#8203;hidu](https://github.com/hidu) made their first contribution in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - [@&open-telemetry#8203;zrbecker](https://github.com/zrbecker) made their first contribution in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - [@&open-telemetry#8203;kevinburkesegment](https://github.com/kevinburkesegment) made their first contribution in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - [@&open-telemetry#8203;linusbarth](https://github.com/linusbarth) made their first contribution in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - [@&open-telemetry#8203;jedevc](https://github.com/jedevc) made their first contribution in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - [@&open-telemetry#8203;craig65535](https://github.com/craig65535) made their first contribution in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - [@&open-telemetry#8203;arjunmahishi](https://github.com/arjunmahishi) made their first contribution in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - [@&open-telemetry#8203;ianrose14](https://github.com/ianrose14) made their first contribution in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - [@&open-telemetry#8203;hendrywiranto](https://github.com/hendrywiranto) made their first contribution in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - [@&open-telemetry#8203;Lucaber](https://github.com/Lucaber) made their first contribution in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - [@&open-telemetry#8203;guettli](https://github.com/guettli) made their first contribution in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - [@&open-telemetry#8203;ccoVeille](https://github.com/ccoVeille) made their first contribution in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - [@&open-telemetry#8203;hslatman](https://github.com/hslatman) made their first contribution in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - [@&open-telemetry#8203;bogdandrutu](https://github.com/bogdandrutu) made their first contribution in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) **Full Changelog**: stretchr/testify@v1.8.4...v1.9.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), 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 has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <[email protected]>
…1573) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/stretchr/testify](https://github.com/stretchr/testify) | `v1.8.4` -> `v1.9.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fstretchr%2ftestify/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fstretchr%2ftestify/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fstretchr%2ftestify/v1.8.4/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fstretchr%2ftestify/v1.8.4/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>stretchr/testify (github.com/stretchr/testify)</summary> ### [`v1.9.0`](https://github.com/stretchr/testify/releases/tag/v1.9.0) [Compare Source](https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0) #### What's Changed - Fix Go modules version by [@&open-telemetry#8203;SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - Document that require is not safe to call in created goroutines by [@&open-telemetry#8203;programmer04](https://github.com/programmer04) in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - Remove myself from MAINTAINERS.md by [@&open-telemetry#8203;mvdkleijn](https://github.com/mvdkleijn) in [https://github.com/stretchr/testify/pull/1367](https://github.com/stretchr/testify/pull/1367) - Correct spelling/grammar by [@&open-telemetry#8203;echarrod](https://github.com/echarrod) in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - docs: Update URLs in README by [@&open-telemetry#8203;davidjb](https://github.com/davidjb) in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - Update mockery link to Github Pages in README by [@&open-telemetry#8203;LandonTClipp](https://github.com/LandonTClipp) in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - docs: Fix typos in tests and comments by [@&open-telemetry#8203;alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - CI: tests from go1.17 by [@&open-telemetry#8203;SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1409](https://github.com/stretchr/testify/pull/1409) - Fix adding ? when no values passed by [@&open-telemetry#8203;lesichkovm](https://github.com/lesichkovm) in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - codegen: use standard header for generated files by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - mock: AssertExpectations log reason only on failure by [@&open-telemetry#8203;hikyaru-suzuki](https://github.com/hikyaru-suzuki) in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - assert: fix flaky TestNeverTrue by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1417](https://github.com/stretchr/testify/pull/1417) - README: fix typos "set up" vs "setup" by [@&open-telemetry#8203;ossan-dev](https://github.com/ossan-dev) in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - mock: move regexp compilation outside of `Called` by [@&open-telemetry#8203;aud10slave](https://github.com/aud10slave) in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - assert: refactor internal func getLen() by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1445](https://github.com/stretchr/testify/pull/1445) - mock: deprecate type AnythingOfTypeArgument ([#&open-telemetry#8203;1434](https://github.com/stretchr/testify/issues/1434)) by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1441](https://github.com/stretchr/testify/pull/1441) - Remove no longer needed assert.canConvert by [@&open-telemetry#8203;alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1470](https://github.com/stretchr/testify/pull/1470) - assert: ObjectsAreEqual: use time.Equal for time.Time types by [@&open-telemetry#8203;tscales](https://github.com/tscales) in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - Bump actions/checkout from 3 to 4 by [@&open-telemetry#8203;dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1466](https://github.com/stretchr/testify/pull/1466) - Bump actions/setup-go from 3.2.0 to 4.1.0 by [@&open-telemetry#8203;dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1451](https://github.com/stretchr/testify/pull/1451) - fix: make EventuallyWithT concurrency safe by [@&open-telemetry#8203;czeslavo](https://github.com/czeslavo) in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - assert: fix httpCode and HTTPBody occur panic when http.Handler read Body by [@&open-telemetry#8203;hidu](https://github.com/hidu) in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - assert.EqualExportedValues: fix handling of arrays by [@&open-telemetry#8203;zrbecker](https://github.com/zrbecker) in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - .github: use latest Go versions by [@&open-telemetry#8203;kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - assert: Deprecate EqualExportedValues by [@&open-telemetry#8203;HaraldNordgren](https://github.com/HaraldNordgren) in [https://github.com/stretchr/testify/pull/1488](https://github.com/stretchr/testify/pull/1488) - suite: refactor test assertions by [@&open-telemetry#8203;alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1474](https://github.com/stretchr/testify/pull/1474) - suite: fix SetupSubTest and TearDownSubTest execution order by [@&open-telemetry#8203;linusbarth](https://github.com/linusbarth) in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - docs: Fix deprecation comments for http package by [@&open-telemetry#8203;alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1335](https://github.com/stretchr/testify/pull/1335) - Add map support doc comments to Subset and NotSubset by [@&open-telemetry#8203;jedevc](https://github.com/jedevc) in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - TestErrorIs/TestNotErrorIs: check error message contents by [@&open-telemetry#8203;craig65535](https://github.com/craig65535) in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - suite: fix subtest names (fix [#&open-telemetry#8203;1501](https://github.com/stretchr/testify/issues/1501)) by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1504](https://github.com/stretchr/testify/pull/1504) - assert: improve unsafe.Pointer tests by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1505](https://github.com/stretchr/testify/pull/1505) - assert: simplify isNil implementation by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1506](https://github.com/stretchr/testify/pull/1506) - assert.InEpsilonSlice: fix expected/actual order and other improvements by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1483](https://github.com/stretchr/testify/pull/1483) - Fix dependency cycle with objx [#&open-telemetry#8203;1292](https://github.com/stretchr/testify/issues/1292) by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1453](https://github.com/stretchr/testify/pull/1453) - mock: refactor TestIsArgsEqual by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1444](https://github.com/stretchr/testify/pull/1444) - mock: optimize argument matching checks by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1416](https://github.com/stretchr/testify/pull/1416) - assert: fix TestEventuallyTimeout by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1412](https://github.com/stretchr/testify/pull/1412) - CI: add go 1.21 in GitHub Actions by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1450](https://github.com/stretchr/testify/pull/1450) - suite: fix recoverAndFailOnPanic to report test failure at the right location by [@&open-telemetry#8203;dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1502](https://github.com/stretchr/testify/pull/1502) - Update maintainers by [@&open-telemetry#8203;brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1533](https://github.com/stretchr/testify/pull/1533) - assert: Fix EqualValues to handle overflow/underflow by [@&open-telemetry#8203;arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - assert: better formatting for Len() error by [@&open-telemetry#8203;kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1485](https://github.com/stretchr/testify/pull/1485) - Ensure AssertExpectations does not fail in skipped tests by [@&open-telemetry#8203;ianrose14](https://github.com/ianrose14) in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - suite: fix deadlock in suite.Require()/Assert() by [@&open-telemetry#8203;arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1535](https://github.com/stretchr/testify/pull/1535) - Revert "assert: ObjectsAreEqual: use time.Equal for time.Time type" by [@&open-telemetry#8203;brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1537](https://github.com/stretchr/testify/pull/1537) - \[chore] Add issue templates by [@&open-telemetry#8203;arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1538](https://github.com/stretchr/testify/pull/1538) - Update the build status badge by [@&open-telemetry#8203;brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1540](https://github.com/stretchr/testify/pull/1540) - Update Github workflows setup-go to V5 by [@&open-telemetry#8203;hendrywiranto](https://github.com/hendrywiranto) in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - Support Pointer to Struct in EqualExportedValues by [@&open-telemetry#8203;Lucaber](https://github.com/Lucaber) in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - README: drop link to gorc by [@&open-telemetry#8203;guettli](https://github.com/guettli) in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - http_assertions: honour the msgAndArgs provided with each assertion by [@&open-telemetry#8203;arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1548](https://github.com/stretchr/testify/pull/1548) - fix typos in comments and tests by [@&open-telemetry#8203;ccoVeille](https://github.com/ccoVeille) in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - Include the auto-release notes in releases by [@&open-telemetry#8203;brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1550](https://github.com/stretchr/testify/pull/1550) - Add `NotImplements` and variants by [@&open-telemetry#8203;hslatman](https://github.com/hslatman) in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - Add support to compare uintptr by [@&open-telemetry#8203;bogdandrutu](https://github.com/bogdandrutu) in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) - build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2 by [@&open-telemetry#8203;dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1552](https://github.com/stretchr/testify/pull/1552) #### New Contributors - [@&open-telemetry#8203;SuperQ](https://github.com/SuperQ) made their first contribution in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - [@&open-telemetry#8203;programmer04](https://github.com/programmer04) made their first contribution in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - [@&open-telemetry#8203;echarrod](https://github.com/echarrod) made their first contribution in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - [@&open-telemetry#8203;davidjb](https://github.com/davidjb) made their first contribution in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - [@&open-telemetry#8203;LandonTClipp](https://github.com/LandonTClipp) made their first contribution in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - [@&open-telemetry#8203;alexandear](https://github.com/alexandear) made their first contribution in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - [@&open-telemetry#8203;lesichkovm](https://github.com/lesichkovm) made their first contribution in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - [@&open-telemetry#8203;dolmen](https://github.com/dolmen) made their first contribution in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - [@&open-telemetry#8203;hikyaru-suzuki](https://github.com/hikyaru-suzuki) made their first contribution in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - [@&open-telemetry#8203;ossan-dev](https://github.com/ossan-dev) made their first contribution in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - [@&open-telemetry#8203;aud10slave](https://github.com/aud10slave) made their first contribution in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - [@&open-telemetry#8203;tscales](https://github.com/tscales) made their first contribution in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - [@&open-telemetry#8203;czeslavo](https://github.com/czeslavo) made their first contribution in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - [@&open-telemetry#8203;hidu](https://github.com/hidu) made their first contribution in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - [@&open-telemetry#8203;zrbecker](https://github.com/zrbecker) made their first contribution in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - [@&open-telemetry#8203;kevinburkesegment](https://github.com/kevinburkesegment) made their first contribution in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - [@&open-telemetry#8203;linusbarth](https://github.com/linusbarth) made their first contribution in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - [@&open-telemetry#8203;jedevc](https://github.com/jedevc) made their first contribution in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - [@&open-telemetry#8203;craig65535](https://github.com/craig65535) made their first contribution in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - [@&open-telemetry#8203;arjunmahishi](https://github.com/arjunmahishi) made their first contribution in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - [@&open-telemetry#8203;ianrose14](https://github.com/ianrose14) made their first contribution in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - [@&open-telemetry#8203;hendrywiranto](https://github.com/hendrywiranto) made their first contribution in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - [@&open-telemetry#8203;Lucaber](https://github.com/Lucaber) made their first contribution in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - [@&open-telemetry#8203;guettli](https://github.com/guettli) made their first contribution in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - [@&open-telemetry#8203;ccoVeille](https://github.com/ccoVeille) made their first contribution in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - [@&open-telemetry#8203;hslatman](https://github.com/hslatman) made their first contribution in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - [@&open-telemetry#8203;bogdandrutu](https://github.com/bogdandrutu) made their first contribution in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) **Full Changelog**: stretchr/testify@v1.8.4...v1.9.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), 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 has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <[email protected]>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/go-sql-driver/mysql](https://github.com/go-sql-driver/mysql) | `v1.7.1` -> `v1.8.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgo-sql-driver%2fmysql/v1.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgo-sql-driver%2fmysql/v1.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgo-sql-driver%2fmysql/v1.7.1/v1.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgo-sql-driver%2fmysql/v1.7.1/v1.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt) | `v5.2.0` -> `v5.2.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgolang-jwt%2fjwt%2fv5/v5.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgolang-jwt%2fjwt%2fv5/v5.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgolang-jwt%2fjwt%2fv5/v5.2.0/v5.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgolang-jwt%2fjwt%2fv5/v5.2.0/v5.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `v1.18.0` -> `v1.19.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_golang/v1.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fprometheus%2fclient_golang/v1.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fprometheus%2fclient_golang/v1.18.0/v1.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fprometheus%2fclient_golang/v1.18.0/v1.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/stretchr/testify](https://github.com/stretchr/testify) | `v1.8.4` -> `v1.9.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fstretchr%2ftestify/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fstretchr%2ftestify/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fstretchr%2ftestify/v1.8.4/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fstretchr%2ftestify/v1.8.4/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [github.com/xanzy/go-gitlab](https://github.com/xanzy/go-gitlab) | `v0.97.0` -> `v0.100.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fxanzy%2fgo-gitlab/v0.100.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fxanzy%2fgo-gitlab/v0.100.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fxanzy%2fgo-gitlab/v0.97.0/v0.100.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fxanzy%2fgo-gitlab/v0.97.0/v0.100.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | golang.org/x/crypto | `v0.19.0` -> `v0.21.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fcrypto/v0.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fcrypto/v0.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fcrypto/v0.19.0/v0.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fcrypto/v0.19.0/v0.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | golang.org/x/net | `v0.21.0` -> `v0.22.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fnet/v0.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fnet/v0.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fnet/v0.21.0/v0.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fnet/v0.21.0/v0.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | golang.org/x/oauth2 | `v0.17.0` -> `v0.18.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2foauth2/v0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2foauth2/v0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2foauth2/v0.17.0/v0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2foauth2/v0.17.0/v0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | golang.org/x/term | `v0.17.0` -> `v0.18.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fterm/v0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fterm/v0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fterm/v0.17.0/v0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fterm/v0.17.0/v0.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `v1.62.0` -> `v1.62.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fgrpc/v1.62.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fgrpc/v1.62.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fgrpc/v1.62.0/v1.62.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fgrpc/v1.62.0/v1.62.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>go-sql-driver/mysql (github.com/go-sql-driver/mysql)</summary> ### [`v1.8.0`](https://github.com/go-sql-driver/mysql/releases/tag/v1.8.0) [Compare Source](https://github.com/go-sql-driver/mysql/compare/v1.7.1...v1.8.0) #### What's Changed ##### Major changes - Use `SET NAMES charset COLLATE collation`. by [@​methane](https://github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1437](https://github.com/go-sql-driver/mysql/pull/1437) - PathEscape dbname in DSN. by [@​methane](https://github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1432](https://github.com/go-sql-driver/mysql/pull/1432) - Drop Go 1.13-17 support by [@​methane](https://github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1420](https://github.com/go-sql-driver/mysql/pull/1420) - Parse numbers on text protocol too by [@​methane](https://github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1452](https://github.com/go-sql-driver/mysql/pull/1452) ##### Other changes - Adding DeregisterDialContext to prevent memory leaks with dialers we don't need anymore by [@​jypelle](https://github.com/jypelle) in [https://github.com/go-sql-driver/mysql/pull/1422](https://github.com/go-sql-driver/mysql/pull/1422) - Make logger configurable per connection by [@​frozenbonito](https://github.com/frozenbonito) in [https://github.com/go-sql-driver/mysql/pull/1408](https://github.com/go-sql-driver/mysql/pull/1408) - Fix ColumnType.DatabaseTypeName for mediumint unsigned by [@​evanelias](https://github.com/evanelias) in [https://github.com/go-sql-driver/mysql/pull/1428](https://github.com/go-sql-driver/mysql/pull/1428) - Add connection attributes by [@​Daemonxiao](https://github.com/Daemonxiao) in [https://github.com/go-sql-driver/mysql/pull/1389](https://github.com/go-sql-driver/mysql/pull/1389) - Stop `ColumnTypeScanType()` from returning `sql.RawBytes` by [@​methane](https://github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1424](https://github.com/go-sql-driver/mysql/pull/1424) - Exec() now provides access to status of multiple statements. by [@​mherr-google](https://github.com/mherr-google) in [https://github.com/go-sql-driver/mysql/pull/1309](https://github.com/go-sql-driver/mysql/pull/1309) - Allow to change (or disable) the default driver name for registration by [@​dolmen](https://github.com/dolmen) in [https://github.com/go-sql-driver/mysql/pull/1499](https://github.com/go-sql-driver/mysql/pull/1499) - Add default connection attribute '\_server_host' by [@​oblitorum](https://github.com/oblitorum) in [https://github.com/go-sql-driver/mysql/pull/1506](https://github.com/go-sql-driver/mysql/pull/1506) - Make TimeTruncate functional option by [@​methane](https://github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1552](https://github.com/go-sql-driver/mysql/pull/1552) - Add BeforeConnect callback to configuration object by [@​ItalyPaleAle](https://github.com/ItalyPaleAle) in [https://github.com/go-sql-driver/mysql/pull/1469](https://github.com/go-sql-driver/mysql/pull/1469) - QueryUnescape DSN ConnectionAttribute value by [@​zhangyangyu](https://github.com/zhangyangyu) in [https://github.com/go-sql-driver/mysql/pull/1470](https://github.com/go-sql-driver/mysql/pull/1470) - Add client_ed25519 authentication by [@​Gusted](https://github.com/Gusted) in [https://github.com/go-sql-driver/mysql/pull/1518](https://github.com/go-sql-driver/mysql/pull/1518) - Reduced allocation on connection.go by [@​EPuncker](https://github.com/EPuncker) in [https://github.com/go-sql-driver/mysql/pull/1421](https://github.com/go-sql-driver/mysql/pull/1421) - Avoid panic in TestRowsColumnTypes by [@​wayyoungboy](https://github.com/wayyoungboy) in [https://github.com/go-sql-driver/mysql/pull/1426](https://github.com/go-sql-driver/mysql/pull/1426) - Add benchmark to receive massive rows. by [@​methane](https://github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1415](https://github.com/go-sql-driver/mysql/pull/1415) - README: Update multistatement by [@​methane](https://github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1431](https://github.com/go-sql-driver/mysql/pull/1431) - all: replace ioutil pkg to new package by [@​uji](https://github.com/uji) in [https://github.com/go-sql-driver/mysql/pull/1438](https://github.com/go-sql-driver/mysql/pull/1438) - chore: code optimization by [@​testwill](https://github.com/testwill) in [https://github.com/go-sql-driver/mysql/pull/1439](https://github.com/go-sql-driver/mysql/pull/1439) - Reduce map lookup in ColumnTypeDatabaseTypeName. by [@​methane](https://github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1436](https://github.com/go-sql-driver/mysql/pull/1436) - doc: add link to NewConnector from FormatDSN by [@​dolmen](https://github.com/dolmen) in [https://github.com/go-sql-driver/mysql/pull/1442](https://github.com/go-sql-driver/mysql/pull/1442) - Add fuzz test for ParseDSN / FormatDSN roundtrip by [@​dolmen](https://github.com/dolmen) in [https://github.com/go-sql-driver/mysql/pull/1444](https://github.com/go-sql-driver/mysql/pull/1444) - TestDSNReformat: add more roundtrip checks by [@​dolmen](https://github.com/dolmen) in [https://github.com/go-sql-driver/mysql/pull/1443](https://github.com/go-sql-driver/mysql/pull/1443) - tcp: handle errors returned by SetKeepAlive by [@​achille-roussel](https://github.com/achille-roussel) in [https://github.com/go-sql-driver/mysql/pull/1448](https://github.com/go-sql-driver/mysql/pull/1448) - use staticcheck by [@​methane](https://github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1449](https://github.com/go-sql-driver/mysql/pull/1449) - Add Daemonxiao to AUTHORS by [@​Daemonxiao](https://github.com/Daemonxiao) in [https://github.com/go-sql-driver/mysql/pull/1459](https://github.com/go-sql-driver/mysql/pull/1459) - Update link about `LOAD DATA LOCAL` in README.md by [@​i7a7467](https://github.com/i7a7467) in [https://github.com/go-sql-driver/mysql/pull/1468](https://github.com/go-sql-driver/mysql/pull/1468) - Update README.md by [@​Netzer7](https://github.com/Netzer7) in [https://github.com/go-sql-driver/mysql/pull/1464](https://github.com/go-sql-driver/mysql/pull/1464) - add Go 1.21 and MySQL 8.1 to the build matrix by [@​shogo82148](https://github.com/shogo82148) in [https://github.com/go-sql-driver/mysql/pull/1472](https://github.com/go-sql-driver/mysql/pull/1472) - Improve DSN docstsrings by [@​golddranks](https://github.com/golddranks) in [https://github.com/go-sql-driver/mysql/pull/1475](https://github.com/go-sql-driver/mysql/pull/1475) - Fix [#​1478](https://github.com/go-sql-driver/mysql/issues/1478) remove length check by [@​ShenFeng312](https://github.com/ShenFeng312) in [https://github.com/go-sql-driver/mysql/pull/1481](https://github.com/go-sql-driver/mysql/pull/1481) - README: fix markup error by [@​methane](https://github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1480](https://github.com/go-sql-driver/mysql/pull/1480) - Close connection on ErrPktSync and ErrPktSyncMul by [@​owbone](https://github.com/owbone) in [https://github.com/go-sql-driver/mysql/pull/1473](https://github.com/go-sql-driver/mysql/pull/1473) - Spelling, grammar, and link fixes by [@​scop](https://github.com/scop) in [https://github.com/go-sql-driver/mysql/pull/1485](https://github.com/go-sql-driver/mysql/pull/1485) - Make use of strings.Cut by [@​scop](https://github.com/scop) in [https://github.com/go-sql-driver/mysql/pull/1486](https://github.com/go-sql-driver/mysql/pull/1486) - move stale connection check to ResetSession() by [@​methane](https://github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1496](https://github.com/go-sql-driver/mysql/pull/1496) - fix race condition of TestConcurrent by [@​shogo82148](https://github.com/shogo82148) in [https://github.com/go-sql-driver/mysql/pull/1490](https://github.com/go-sql-driver/mysql/pull/1490) - mark fail, mustExec and mustQuery as test helpers by [@​shogo82148](https://github.com/shogo82148) in [https://github.com/go-sql-driver/mysql/pull/1488](https://github.com/go-sql-driver/mysql/pull/1488) - Remove obsolete fuzz.go [#​1445](https://github.com/go-sql-driver/mysql/issues/1445) by [@​dolmen](https://github.com/dolmen) in [https://github.com/go-sql-driver/mysql/pull/1498](https://github.com/go-sql-driver/mysql/pull/1498) - testing: expose testing.TB in DBTest instead of full \*testing.T by [@​dolmen](https://github.com/dolmen) in [https://github.com/go-sql-driver/mysql/pull/1500](https://github.com/go-sql-driver/mysql/pull/1500) - symbol removed from installation command by [@​panvalkar1994](https://github.com/panvalkar1994) in [https://github.com/go-sql-driver/mysql/pull/1510](https://github.com/go-sql-driver/mysql/pull/1510) - fix issue 1361 by [@​keeplearning20221](https://github.com/keeplearning20221) in [https://github.com/go-sql-driver/mysql/pull/1462](https://github.com/go-sql-driver/mysql/pull/1462) - fix fragile test by [@​methane](https://github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1522](https://github.com/go-sql-driver/mysql/pull/1522) - Fix sql.RawBytes corruption issue by [@​shogo82148](https://github.com/shogo82148) in [https://github.com/go-sql-driver/mysql/pull/1523](https://github.com/go-sql-driver/mysql/pull/1523) - fix for enum and set field type to column type identifying by [@​jennifersp](https://github.com/jennifersp) in [https://github.com/go-sql-driver/mysql/pull/1520](https://github.com/go-sql-driver/mysql/pull/1520) - Parallelize test by [@​shogo82148](https://github.com/shogo82148) in [https://github.com/go-sql-driver/mysql/pull/1525](https://github.com/go-sql-driver/mysql/pull/1525) - Fix unsigned int overflow by [@​shiyuhang0](https://github.com/shiyuhang0) in [https://github.com/go-sql-driver/mysql/pull/1530](https://github.com/go-sql-driver/mysql/pull/1530) - Introduce `timeTruncate` parameter for `time.Time` arguments by [@​PauliusLozys](https://github.com/PauliusLozys) in [https://github.com/go-sql-driver/mysql/pull/1541](https://github.com/go-sql-driver/mysql/pull/1541) - add TiDB support in README.md by [@​crazycs520](https://github.com/crazycs520) in [https://github.com/go-sql-driver/mysql/pull/1333](https://github.com/go-sql-driver/mysql/pull/1333) - Update workflows by [@​methane](https://github.com/methane) in [https://github.com/go-sql-driver/mysql/pull/1547](https://github.com/go-sql-driver/mysql/pull/1547) #### New Contributors - [@​EPuncker](https://github.com/EPuncker) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1421](https://github.com/go-sql-driver/mysql/pull/1421) - [@​jypelle](https://github.com/jypelle) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1422](https://github.com/go-sql-driver/mysql/pull/1422) - [@​frozenbonito](https://github.com/frozenbonito) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1408](https://github.com/go-sql-driver/mysql/pull/1408) - [@​wayyoungboy](https://github.com/wayyoungboy) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1426](https://github.com/go-sql-driver/mysql/pull/1426) - [@​evanelias](https://github.com/evanelias) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1428](https://github.com/go-sql-driver/mysql/pull/1428) - [@​Daemonxiao](https://github.com/Daemonxiao) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1389](https://github.com/go-sql-driver/mysql/pull/1389) - [@​uji](https://github.com/uji) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1438](https://github.com/go-sql-driver/mysql/pull/1438) - [@​testwill](https://github.com/testwill) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1439](https://github.com/go-sql-driver/mysql/pull/1439) - [@​i7a7467](https://github.com/i7a7467) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1468](https://github.com/go-sql-driver/mysql/pull/1468) - [@​Netzer7](https://github.com/Netzer7) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1464](https://github.com/go-sql-driver/mysql/pull/1464) - [@​golddranks](https://github.com/golddranks) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1475](https://github.com/go-sql-driver/mysql/pull/1475) - [@​ShenFeng312](https://github.com/ShenFeng312) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1481](https://github.com/go-sql-driver/mysql/pull/1481) - [@​owbone](https://github.com/owbone) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1473](https://github.com/go-sql-driver/mysql/pull/1473) - [@​scop](https://github.com/scop) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1485](https://github.com/go-sql-driver/mysql/pull/1485) - [@​panvalkar1994](https://github.com/panvalkar1994) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1510](https://github.com/go-sql-driver/mysql/pull/1510) - [@​zhangyangyu](https://github.com/zhangyangyu) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1470](https://github.com/go-sql-driver/mysql/pull/1470) - [@​keeplearning20221](https://github.com/keeplearning20221) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1462](https://github.com/go-sql-driver/mysql/pull/1462) - [@​oblitorum](https://github.com/oblitorum) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1506](https://github.com/go-sql-driver/mysql/pull/1506) - [@​Gusted](https://github.com/Gusted) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1518](https://github.com/go-sql-driver/mysql/pull/1518) - [@​jennifersp](https://github.com/jennifersp) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1520](https://github.com/go-sql-driver/mysql/pull/1520) - [@​shiyuhang0](https://github.com/shiyuhang0) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1530](https://github.com/go-sql-driver/mysql/pull/1530) - [@​PauliusLozys](https://github.com/PauliusLozys) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1541](https://github.com/go-sql-driver/mysql/pull/1541) - [@​crazycs520](https://github.com/crazycs520) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1333](https://github.com/go-sql-driver/mysql/pull/1333) - [@​ItalyPaleAle](https://github.com/ItalyPaleAle) made their first contribution in [https://github.com/go-sql-driver/mysql/pull/1469](https://github.com/go-sql-driver/mysql/pull/1469) **Full Changelog**: go-sql-driver/mysql@v1.7.1...v1.8.0 </details> <details> <summary>golang-jwt/jwt (github.com/golang-jwt/jwt/v5)</summary> ### [`v5.2.1`](https://github.com/golang-jwt/jwt/releases/tag/v5.2.1) [Compare Source](https://github.com/golang-jwt/jwt/compare/v5.2.0...v5.2.1) #### What's Changed - chore: remove unnecessary conversions from tests by [@​estensen](https://github.com/estensen) in [https://github.com/golang-jwt/jwt/pull/370](https://github.com/golang-jwt/jwt/pull/370) - Trivial: Typo fix for ECDSA error message by [@​tjs-cinemo](https://github.com/tjs-cinemo) in [https://github.com/golang-jwt/jwt/pull/373](https://github.com/golang-jwt/jwt/pull/373) - Fix incorrect error return by [@​ss49919201](https://github.com/ss49919201) in [https://github.com/golang-jwt/jwt/pull/371](https://github.com/golang-jwt/jwt/pull/371) #### New Contributors - [@​tjs-cinemo](https://github.com/tjs-cinemo) made their first contribution in [https://github.com/golang-jwt/jwt/pull/373](https://github.com/golang-jwt/jwt/pull/373) - [@​ss49919201](https://github.com/ss49919201) made their first contribution in [https://github.com/golang-jwt/jwt/pull/371](https://github.com/golang-jwt/jwt/pull/371) **Full Changelog**: golang-jwt/jwt@v5.2.0...v5.2.1 </details> <details> <summary>prometheus/client_golang (github.com/prometheus/client_golang)</summary> ### [`v1.19.0`](https://github.com/prometheus/client_golang/releases/tag/v1.19.0) [Compare Source](https://github.com/prometheus/client_golang/compare/v1.18.0...v1.19.0) #### What's Changed The module `prometheus/common v0.48.0` introduced an incompatibility when used together with client_golang (See [https://github.com/prometheus/client_golang/pull/1448](https://github.com/prometheus/client_golang/pull/1448) for more details). If your project uses client_golang and you want to use `prometheus/common v0.48.0` or higher, please update client_golang to v1.19.0. - \[CHANGE] Minimum required go version is now 1.20 (we also test client_golang against new 1.22 version). [#​1445](https://github.com/prometheus/client_golang/issues/1445) [#​1449](https://github.com/prometheus/client_golang/issues/1449) - \[FEATURE] collectors: Add version collector. [#​1422](https://github.com/prometheus/client_golang/issues/1422) [#​1427](https://github.com/prometheus/client_golang/issues/1427) #### New Contributors - [@​michurin](https://github.com/michurin) made their first contribution in [https://github.com/prometheus/client_golang/pull/1423](https://github.com/prometheus/client_golang/pull/1423) - [@​kavu](https://github.com/kavu) made their first contribution in [https://github.com/prometheus/client_golang/pull/1445](https://github.com/prometheus/client_golang/pull/1445) - [@​ywwg](https://github.com/ywwg) made their first contribution in [https://github.com/prometheus/client_golang/pull/1448](https://github.com/prometheus/client_golang/pull/1448) **Full Changelog**: prometheus/client_golang@v1.18.0...v1.19.0 </details> <details> <summary>stretchr/testify (github.com/stretchr/testify)</summary> ### [`v1.9.0`](https://github.com/stretchr/testify/releases/tag/v1.9.0) [Compare Source](https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0) #### What's Changed - Fix Go modules version by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - Document that require is not safe to call in created goroutines by [@​programmer04](https://github.com/programmer04) in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - Remove myself from MAINTAINERS.md by [@​mvdkleijn](https://github.com/mvdkleijn) in [https://github.com/stretchr/testify/pull/1367](https://github.com/stretchr/testify/pull/1367) - Correct spelling/grammar by [@​echarrod](https://github.com/echarrod) in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - docs: Update URLs in README by [@​davidjb](https://github.com/davidjb) in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - Update mockery link to Github Pages in README by [@​LandonTClipp](https://github.com/LandonTClipp) in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - docs: Fix typos in tests and comments by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - CI: tests from go1.17 by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1409](https://github.com/stretchr/testify/pull/1409) - Fix adding ? when no values passed by [@​lesichkovm](https://github.com/lesichkovm) in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - codegen: use standard header for generated files by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - mock: AssertExpectations log reason only on failure by [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - assert: fix flaky TestNeverTrue by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1417](https://github.com/stretchr/testify/pull/1417) - README: fix typos "set up" vs "setup" by [@​ossan-dev](https://github.com/ossan-dev) in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - mock: move regexp compilation outside of `Called` by [@​aud10slave](https://github.com/aud10slave) in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - assert: refactor internal func getLen() by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1445](https://github.com/stretchr/testify/pull/1445) - mock: deprecate type AnythingOfTypeArgument ([#​1434](https://github.com/stretchr/testify/issues/1434)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1441](https://github.com/stretchr/testify/pull/1441) - Remove no longer needed assert.canConvert by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1470](https://github.com/stretchr/testify/pull/1470) - assert: ObjectsAreEqual: use time.Equal for time.Time types by [@​tscales](https://github.com/tscales) in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - Bump actions/checkout from 3 to 4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1466](https://github.com/stretchr/testify/pull/1466) - Bump actions/setup-go from 3.2.0 to 4.1.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1451](https://github.com/stretchr/testify/pull/1451) - fix: make EventuallyWithT concurrency safe by [@​czeslavo](https://github.com/czeslavo) in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - assert: fix httpCode and HTTPBody occur panic when http.Handler read Body by [@​hidu](https://github.com/hidu) in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - assert.EqualExportedValues: fix handling of arrays by [@​zrbecker](https://github.com/zrbecker) in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - .github: use latest Go versions by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - assert: Deprecate EqualExportedValues by [@​HaraldNordgren](https://github.com/HaraldNordgren) in [https://github.com/stretchr/testify/pull/1488](https://github.com/stretchr/testify/pull/1488) - suite: refactor test assertions by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1474](https://github.com/stretchr/testify/pull/1474) - suite: fix SetupSubTest and TearDownSubTest execution order by [@​linusbarth](https://github.com/linusbarth) in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - docs: Fix deprecation comments for http package by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1335](https://github.com/stretchr/testify/pull/1335) - Add map support doc comments to Subset and NotSubset by [@​jedevc](https://github.com/jedevc) in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - TestErrorIs/TestNotErrorIs: check error message contents by [@​craig65535](https://github.com/craig65535) in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - suite: fix subtest names (fix [#​1501](https://github.com/stretchr/testify/issues/1501)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1504](https://github.com/stretchr/testify/pull/1504) - assert: improve unsafe.Pointer tests by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1505](https://github.com/stretchr/testify/pull/1505) - assert: simplify isNil implementation by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1506](https://github.com/stretchr/testify/pull/1506) - assert.InEpsilonSlice: fix expected/actual order and other improvements by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1483](https://github.com/stretchr/testify/pull/1483) - Fix dependency cycle with objx [#​1292](https://github.com/stretchr/testify/issues/1292) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1453](https://github.com/stretchr/testify/pull/1453) - mock: refactor TestIsArgsEqual by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1444](https://github.com/stretchr/testify/pull/1444) - mock: optimize argument matching checks by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1416](https://github.com/stretchr/testify/pull/1416) - assert: fix TestEventuallyTimeout by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1412](https://github.com/stretchr/testify/pull/1412) - CI: add go 1.21 in GitHub Actions by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1450](https://github.com/stretchr/testify/pull/1450) - suite: fix recoverAndFailOnPanic to report test failure at the right location by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1502](https://github.com/stretchr/testify/pull/1502) - Update maintainers by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1533](https://github.com/stretchr/testify/pull/1533) - assert: Fix EqualValues to handle overflow/underflow by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - assert: better formatting for Len() error by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1485](https://github.com/stretchr/testify/pull/1485) - Ensure AssertExpectations does not fail in skipped tests by [@​ianrose14](https://github.com/ianrose14) in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - suite: fix deadlock in suite.Require()/Assert() by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1535](https://github.com/stretchr/testify/pull/1535) - Revert "assert: ObjectsAreEqual: use time.Equal for time.Time type" by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1537](https://github.com/stretchr/testify/pull/1537) - \[chore] Add issue templates by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1538](https://github.com/stretchr/testify/pull/1538) - Update the build status badge by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1540](https://github.com/stretchr/testify/pull/1540) - Update Github workflows setup-go to V5 by [@​hendrywiranto](https://github.com/hendrywiranto) in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - Support Pointer to Struct in EqualExportedValues by [@​Lucaber](https://github.com/Lucaber) in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - README: drop link to gorc by [@​guettli](https://github.com/guettli) in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - http_assertions: honour the msgAndArgs provided with each assertion by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1548](https://github.com/stretchr/testify/pull/1548) - fix typos in comments and tests by [@​ccoVeille](https://github.com/ccoVeille) in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - Include the auto-release notes in releases by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1550](https://github.com/stretchr/testify/pull/1550) - Add `NotImplements` and variants by [@​hslatman](https://github.com/hslatman) in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - Add support to compare uintptr by [@​bogdandrutu](https://github.com/bogdandrutu) in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) - build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1552](https://github.com/stretchr/testify/pull/1552) #### New Contributors - [@​SuperQ](https://github.com/SuperQ) made their first contribution in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - [@​programmer04](https://github.com/programmer04) made their first contribution in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - [@​echarrod](https://github.com/echarrod) made their first contribution in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - [@​davidjb](https://github.com/davidjb) made their first contribution in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - [@​LandonTClipp](https://github.com/LandonTClipp) made their first contribution in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - [@​alexandear](https://github.com/alexandear) made their first contribution in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - [@​lesichkovm](https://github.com/lesichkovm) made their first contribution in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - [@​dolmen](https://github.com/dolmen) made their first contribution in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) made their first contribution in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - [@​ossan-dev](https://github.com/ossan-dev) made their first contribution in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - [@​aud10slave](https://github.com/aud10slave) made their first contribution in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - [@​tscales](https://github.com/tscales) made their first contribution in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - [@​czeslavo](https://github.com/czeslavo) made their first contribution in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - [@​hidu](https://github.com/hidu) made their first contribution in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - [@​zrbecker](https://github.com/zrbecker) made their first contribution in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - [@​kevinburkesegment](https://github.com/kevinburkesegment) made their first contribution in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - [@​linusbarth](https://github.com/linusbarth) made their first contribution in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - [@​jedevc](https://github.com/jedevc) made their first contribution in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - [@​craig65535](https://github.com/craig65535) made their first contribution in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - [@​arjunmahishi](https://github.com/arjunmahishi) made their first contribution in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - [@​ianrose14](https://github.com/ianrose14) made their first contribution in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - [@​hendrywiranto](https://github.com/hendrywiranto) made their first contribution in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - [@​Lucaber](https://github.com/Lucaber) made their first contribution in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - [@​guettli](https://github.com/guettli) made their first contribution in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - [@​ccoVeille](https://github.com/ccoVeille) made their first contribution in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - [@​hslatman](https://github.com/hslatman) made their first contribution in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - [@​bogdandrutu](https://github.com/bogdandrutu) made their first contribution in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) **Full Changelog**: stretchr/testify@v1.8.4...v1.9.0 </details> <details> <summary>xanzy/go-gitlab (github.com/xanzy/go-gitlab)</summary> ### [`v0.100.0`](https://github.com/xanzy/go-gitlab/compare/v0.99.0...v0.100.0) [Compare Source](https://github.com/xanzy/go-gitlab/compare/v0.99.0...v0.100.0) ### [`v0.99.0`](https://github.com/xanzy/go-gitlab/compare/v0.98.0...v0.99.0) [Compare Source](https://github.com/xanzy/go-gitlab/compare/v0.98.0...v0.99.0) ### [`v0.98.0`](https://github.com/xanzy/go-gitlab/compare/v0.97.0...v0.98.0) [Compare Source](https://github.com/xanzy/go-gitlab/compare/v0.97.0...v0.98.0) </details> <details> <summary>grpc/grpc-go (google.golang.org/grpc)</summary> ### [`v1.62.1`](https://github.com/grpc/grpc-go/releases/tag/v1.62.1): Release 1.62.1 [Compare Source](https://github.com/grpc/grpc-go/compare/v1.62.0...v1.62.1) ### Bug Fixes - xds: fix a bug that results in `no matching virtual host found` RPC errors due to a difference between the target and LDS resource names ([#​6997](https://github.com/grpc/grpc-go/issues/6997)) - server: fixed stats handler data `InPayload.Length` for unary RPC calls ([#​6766](https://github.com/grpc/grpc-go/issues/6766)) - Special Thanks: [@​hueypark](https://github.com/hueypark) - grpc: the experimental `RecvBufferPool` `DialOption` and `ServerOption` are now active during unary RPCs with compression ([#​6766](https://github.com/grpc/grpc-go/issues/6766)) - Special Thanks: [@​hueypark](https://github.com/hueypark) - grpc: trim whitespaces in `accept-encoding` header before determining compressors - Special Thanks: [@​sercand](https://github.com/sercand) </details> --- ### 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](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/woodpecker-ci/woodpecker). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjI0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/stretchr/testify](https://github.com/stretchr/testify) | `v1.8.4` -> `v1.9.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fstretchr%2ftestify/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fstretchr%2ftestify/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fstretchr%2ftestify/v1.8.4/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fstretchr%2ftestify/v1.8.4/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>stretchr/testify (github.com/stretchr/testify)</summary> ### [`v1.9.0`](https://github.com/stretchr/testify/releases/tag/v1.9.0) [Compare Source](https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0) #### What's Changed - Fix Go modules version by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - Document that require is not safe to call in created goroutines by [@​programmer04](https://github.com/programmer04) in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - Remove myself from MAINTAINERS.md by [@​mvdkleijn](https://github.com/mvdkleijn) in [https://github.com/stretchr/testify/pull/1367](https://github.com/stretchr/testify/pull/1367) - Correct spelling/grammar by [@​echarrod](https://github.com/echarrod) in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - docs: Update URLs in README by [@​davidjb](https://github.com/davidjb) in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - Update mockery link to Github Pages in README by [@​LandonTClipp](https://github.com/LandonTClipp) in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - docs: Fix typos in tests and comments by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - CI: tests from go1.17 by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1409](https://github.com/stretchr/testify/pull/1409) - Fix adding ? when no values passed by [@​lesichkovm](https://github.com/lesichkovm) in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - codegen: use standard header for generated files by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - mock: AssertExpectations log reason only on failure by [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - assert: fix flaky TestNeverTrue by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1417](https://github.com/stretchr/testify/pull/1417) - README: fix typos "set up" vs "setup" by [@​ossan-dev](https://github.com/ossan-dev) in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - mock: move regexp compilation outside of `Called` by [@​aud10slave](https://github.com/aud10slave) in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - assert: refactor internal func getLen() by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1445](https://github.com/stretchr/testify/pull/1445) - mock: deprecate type AnythingOfTypeArgument ([#​1434](https://github.com/stretchr/testify/issues/1434)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1441](https://github.com/stretchr/testify/pull/1441) - Remove no longer needed assert.canConvert by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1470](https://github.com/stretchr/testify/pull/1470) - assert: ObjectsAreEqual: use time.Equal for time.Time types by [@​tscales](https://github.com/tscales) in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - Bump actions/checkout from 3 to 4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1466](https://github.com/stretchr/testify/pull/1466) - Bump actions/setup-go from 3.2.0 to 4.1.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1451](https://github.com/stretchr/testify/pull/1451) - fix: make EventuallyWithT concurrency safe by [@​czeslavo](https://github.com/czeslavo) in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - assert: fix httpCode and HTTPBody occur panic when http.Handler read Body by [@​hidu](https://github.com/hidu) in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - assert.EqualExportedValues: fix handling of arrays by [@​zrbecker](https://github.com/zrbecker) in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - .github: use latest Go versions by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - assert: Deprecate EqualExportedValues by [@​HaraldNordgren](https://github.com/HaraldNordgren) in [https://github.com/stretchr/testify/pull/1488](https://github.com/stretchr/testify/pull/1488) - suite: refactor test assertions by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1474](https://github.com/stretchr/testify/pull/1474) - suite: fix SetupSubTest and TearDownSubTest execution order by [@​linusbarth](https://github.com/linusbarth) in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - docs: Fix deprecation comments for http package by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1335](https://github.com/stretchr/testify/pull/1335) - Add map support doc comments to Subset and NotSubset by [@​jedevc](https://github.com/jedevc) in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - TestErrorIs/TestNotErrorIs: check error message contents by [@​craig65535](https://github.com/craig65535) in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - suite: fix subtest names (fix [#​1501](https://github.com/stretchr/testify/issues/1501)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1504](https://github.com/stretchr/testify/pull/1504) - assert: improve unsafe.Pointer tests by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1505](https://github.com/stretchr/testify/pull/1505) - assert: simplify isNil implementation by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1506](https://github.com/stretchr/testify/pull/1506) - assert.InEpsilonSlice: fix expected/actual order and other improvements by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1483](https://github.com/stretchr/testify/pull/1483) - Fix dependency cycle with objx [#​1292](https://github.com/stretchr/testify/issues/1292) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1453](https://github.com/stretchr/testify/pull/1453) - mock: refactor TestIsArgsEqual by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1444](https://github.com/stretchr/testify/pull/1444) - mock: optimize argument matching checks by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1416](https://github.com/stretchr/testify/pull/1416) - assert: fix TestEventuallyTimeout by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1412](https://github.com/stretchr/testify/pull/1412) - CI: add go 1.21 in GitHub Actions by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1450](https://github.com/stretchr/testify/pull/1450) - suite: fix recoverAndFailOnPanic to report test failure at the right location by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1502](https://github.com/stretchr/testify/pull/1502) - Update maintainers by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1533](https://github.com/stretchr/testify/pull/1533) - assert: Fix EqualValues to handle overflow/underflow by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - assert: better formatting for Len() error by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1485](https://github.com/stretchr/testify/pull/1485) - Ensure AssertExpectations does not fail in skipped tests by [@​ianrose14](https://github.com/ianrose14) in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - suite: fix deadlock in suite.Require()/Assert() by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1535](https://github.com/stretchr/testify/pull/1535) - Revert "assert: ObjectsAreEqual: use time.Equal for time.Time type" by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1537](https://github.com/stretchr/testify/pull/1537) - \[chore] Add issue templates by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1538](https://github.com/stretchr/testify/pull/1538) - Update the build status badge by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1540](https://github.com/stretchr/testify/pull/1540) - Update Github workflows setup-go to V5 by [@​hendrywiranto](https://github.com/hendrywiranto) in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - Support Pointer to Struct in EqualExportedValues by [@​Lucaber](https://github.com/Lucaber) in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - README: drop link to gorc by [@​guettli](https://github.com/guettli) in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - http_assertions: honour the msgAndArgs provided with each assertion by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1548](https://github.com/stretchr/testify/pull/1548) - fix typos in comments and tests by [@​ccoVeille](https://github.com/ccoVeille) in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - Include the auto-release notes in releases by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1550](https://github.com/stretchr/testify/pull/1550) - Add `NotImplements` and variants by [@​hslatman](https://github.com/hslatman) in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - Add support to compare uintptr by [@​bogdandrutu](https://github.com/bogdandrutu) in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) - build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1552](https://github.com/stretchr/testify/pull/1552) #### New Contributors - [@​SuperQ](https://github.com/SuperQ) made their first contribution in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - [@​programmer04](https://github.com/programmer04) made their first contribution in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - [@​echarrod](https://github.com/echarrod) made their first contribution in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - [@​davidjb](https://github.com/davidjb) made their first contribution in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - [@​LandonTClipp](https://github.com/LandonTClipp) made their first contribution in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - [@​alexandear](https://github.com/alexandear) made their first contribution in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - [@​lesichkovm](https://github.com/lesichkovm) made their first contribution in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - [@​dolmen](https://github.com/dolmen) made their first contribution in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) made their first contribution in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - [@​ossan-dev](https://github.com/ossan-dev) made their first contribution in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - [@​aud10slave](https://github.com/aud10slave) made their first contribution in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - [@​tscales](https://github.com/tscales) made their first contribution in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - [@​czeslavo](https://github.com/czeslavo) made their first contribution in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - [@​hidu](https://github.com/hidu) made their first contribution in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - [@​zrbecker](https://github.com/zrbecker) made their first contribution in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - [@​kevinburkesegment](https://github.com/kevinburkesegment) made their first contribution in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - [@​linusbarth](https://github.com/linusbarth) made their first contribution in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - [@​jedevc](https://github.com/jedevc) made their first contribution in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - [@​craig65535](https://github.com/craig65535) made their first contribution in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - [@​arjunmahishi](https://github.com/arjunmahishi) made their first contribution in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - [@​ianrose14](https://github.com/ianrose14) made their first contribution in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - [@​hendrywiranto](https://github.com/hendrywiranto) made their first contribution in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - [@​Lucaber](https://github.com/Lucaber) made their first contribution in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - [@​guettli](https://github.com/guettli) made their first contribution in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - [@​ccoVeille](https://github.com/ccoVeille) made their first contribution in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - [@​hslatman](https://github.com/hslatman) made their first contribution in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - [@​bogdandrutu](https://github.com/bogdandrutu) made their first contribution in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) **Full Changelog**: stretchr/testify@v1.8.4...v1.9.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" (UTC), 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 has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/nieomylnieja/go-libyear). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMjAuMiIsInVwZGF0ZWRJblZlciI6IjM3LjIyMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/stretchr/testify](https://github.com/stretchr/testify) | require | minor | `v1.8.4` -> `v1.9.0` | --- ### Release Notes <details> <summary>stretchr/testify (github.com/stretchr/testify)</summary> ### [`v1.9.0`](https://github.com/stretchr/testify/releases/tag/v1.9.0) [Compare Source](https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0) #### What's Changed - Fix Go modules version by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - Document that require is not safe to call in created goroutines by [@​programmer04](https://github.com/programmer04) in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - Remove myself from MAINTAINERS.md by [@​mvdkleijn](https://github.com/mvdkleijn) in [https://github.com/stretchr/testify/pull/1367](https://github.com/stretchr/testify/pull/1367) - Correct spelling/grammar by [@​echarrod](https://github.com/echarrod) in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - docs: Update URLs in README by [@​davidjb](https://github.com/davidjb) in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - Update mockery link to Github Pages in README by [@​LandonTClipp](https://github.com/LandonTClipp) in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - docs: Fix typos in tests and comments by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - CI: tests from go1.17 by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1409](https://github.com/stretchr/testify/pull/1409) - Fix adding ? when no values passed by [@​lesichkovm](https://github.com/lesichkovm) in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - codegen: use standard header for generated files by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - mock: AssertExpectations log reason only on failure by [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - assert: fix flaky TestNeverTrue by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1417](https://github.com/stretchr/testify/pull/1417) - README: fix typos "set up" vs "setup" by [@​ossan-dev](https://github.com/ossan-dev) in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - mock: move regexp compilation outside of `Called` by [@​aud10slave](https://github.com/aud10slave) in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - assert: refactor internal func getLen() by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1445](https://github.com/stretchr/testify/pull/1445) - mock: deprecate type AnythingOfTypeArgument ([#​1434](https://github.com/stretchr/testify/issues/1434)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1441](https://github.com/stretchr/testify/pull/1441) - Remove no longer needed assert.canConvert by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1470](https://github.com/stretchr/testify/pull/1470) - assert: ObjectsAreEqual: use time.Equal for time.Time types by [@​tscales](https://github.com/tscales) in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - Bump actions/checkout from 3 to 4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1466](https://github.com/stretchr/testify/pull/1466) - Bump actions/setup-go from 3.2.0 to 4.1.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1451](https://github.com/stretchr/testify/pull/1451) - fix: make EventuallyWithT concurrency safe by [@​czeslavo](https://github.com/czeslavo) in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - assert: fix httpCode and HTTPBody occur panic when http.Handler read Body by [@​hidu](https://github.com/hidu) in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - assert.EqualExportedValues: fix handling of arrays by [@​zrbecker](https://github.com/zrbecker) in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - .github: use latest Go versions by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - assert: Deprecate EqualExportedValues by [@​HaraldNordgren](https://github.com/HaraldNordgren) in [https://github.com/stretchr/testify/pull/1488](https://github.com/stretchr/testify/pull/1488) - suite: refactor test assertions by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1474](https://github.com/stretchr/testify/pull/1474) - suite: fix SetupSubTest and TearDownSubTest execution order by [@​linusbarth](https://github.com/linusbarth) in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - docs: Fix deprecation comments for http package by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1335](https://github.com/stretchr/testify/pull/1335) - Add map support doc comments to Subset and NotSubset by [@​jedevc](https://github.com/jedevc) in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - TestErrorIs/TestNotErrorIs: check error message contents by [@​craig65535](https://github.com/craig65535) in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - suite: fix subtest names (fix [#​1501](https://github.com/stretchr/testify/issues/1501)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1504](https://github.com/stretchr/testify/pull/1504) - assert: improve unsafe.Pointer tests by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1505](https://github.com/stretchr/testify/pull/1505) - assert: simplify isNil implementation by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1506](https://github.com/stretchr/testify/pull/1506) - assert.InEpsilonSlice: fix expected/actual order and other improvements by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1483](https://github.com/stretchr/testify/pull/1483) - Fix dependency cycle with objx [#​1292](https://github.com/stretchr/testify/issues/1292) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1453](https://github.com/stretchr/testify/pull/1453) - mock: refactor TestIsArgsEqual by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1444](https://github.com/stretchr/testify/pull/1444) - mock: optimize argument matching checks by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1416](https://github.com/stretchr/testify/pull/1416) - assert: fix TestEventuallyTimeout by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1412](https://github.com/stretchr/testify/pull/1412) - CI: add go 1.21 in GitHub Actions by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1450](https://github.com/stretchr/testify/pull/1450) - suite: fix recoverAndFailOnPanic to report test failure at the right location by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1502](https://github.com/stretchr/testify/pull/1502) - Update maintainers by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1533](https://github.com/stretchr/testify/pull/1533) - assert: Fix EqualValues to handle overflow/underflow by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - assert: better formatting for Len() error by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1485](https://github.com/stretchr/testify/pull/1485) - Ensure AssertExpectations does not fail in skipped tests by [@​ianrose14](https://github.com/ianrose14) in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - suite: fix deadlock in suite.Require()/Assert() by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1535](https://github.com/stretchr/testify/pull/1535) - Revert "assert: ObjectsAreEqual: use time.Equal for time.Time type" by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1537](https://github.com/stretchr/testify/pull/1537) - \[chore] Add issue templates by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1538](https://github.com/stretchr/testify/pull/1538) - Update the build status badge by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1540](https://github.com/stretchr/testify/pull/1540) - Update Github workflows setup-go to V5 by [@​hendrywiranto](https://github.com/hendrywiranto) in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - Support Pointer to Struct in EqualExportedValues by [@​Lucaber](https://github.com/Lucaber) in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - README: drop link to gorc by [@​guettli](https://github.com/guettli) in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - http_assertions: honour the msgAndArgs provided with each assertion by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1548](https://github.com/stretchr/testify/pull/1548) - fix typos in comments and tests by [@​ccoVeille](https://github.com/ccoVeille) in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - Include the auto-release notes in releases by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1550](https://github.com/stretchr/testify/pull/1550) - Add `NotImplements` and variants by [@​hslatman](https://github.com/hslatman) in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - Add support to compare uintptr by [@​bogdandrutu](https://github.com/bogdandrutu) in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) - build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1552](https://github.com/stretchr/testify/pull/1552) #### New Contributors - [@​SuperQ](https://github.com/SuperQ) made their first contribution in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - [@​programmer04](https://github.com/programmer04) made their first contribution in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - [@​echarrod](https://github.com/echarrod) made their first contribution in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - [@​davidjb](https://github.com/davidjb) made their first contribution in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - [@​LandonTClipp](https://github.com/LandonTClipp) made their first contribution in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - [@​alexandear](https://github.com/alexandear) made their first contribution in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - [@​lesichkovm](https://github.com/lesichkovm) made their first contribution in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - [@​dolmen](https://github.com/dolmen) made their first contribution in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) made their first contribution in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - [@​ossan-dev](https://github.com/ossan-dev) made their first contribution in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - [@​aud10slave](https://github.com/aud10slave) made their first contribution in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - [@​tscales](https://github.com/tscales) made their first contribution in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - [@​czeslavo](https://github.com/czeslavo) made their first contribution in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - [@​hidu](https://github.com/hidu) made their first contribution in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - [@​zrbecker](https://github.com/zrbecker) made their first contribution in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - [@​kevinburkesegment](https://github.com/kevinburkesegment) made their first contribution in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - [@​linusbarth](https://github.com/linusbarth) made their first contribution in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - [@​jedevc](https://github.com/jedevc) made their first contribution in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - [@​craig65535](https://github.com/craig65535) made their first contribution in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - [@​arjunmahishi](https://github.com/arjunmahishi) made their first contribution in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - [@​ianrose14](https://github.com/ianrose14) made their first contribution in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - [@​hendrywiranto](https://github.com/hendrywiranto) made their first contribution in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - [@​Lucaber](https://github.com/Lucaber) made their first contribution in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - [@​guettli](https://github.com/guettli) made their first contribution in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - [@​ccoVeille](https://github.com/ccoVeille) made their first contribution in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - [@​hslatman](https://github.com/hslatman) made their first contribution in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - [@​bogdandrutu](https://github.com/bogdandrutu) made their first contribution in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) **Full Changelog**: stretchr/testify@v1.8.4...v1.9.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, 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, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMDAuMCIsInVwZGF0ZWRJblZlciI6IjM2LjEwOS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: Self-hosted Renovate Bot <361546+cgrindel-self-hosted-renovate[bot]@users.noreply.github.enterprise.com> Co-authored-by: Chuck Grindel <[email protected]>
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/stretchr/testify](https://github.com/stretchr/testify) | require | minor | `v1.8.4` -> `v1.9.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>stretchr/testify (github.com/stretchr/testify)</summary> ### [`v1.9.0`](https://github.com/stretchr/testify/releases/tag/v1.9.0) [Compare Source](https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0) #### What's Changed - Fix Go modules version by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - Document that require is not safe to call in created goroutines by [@​programmer04](https://github.com/programmer04) in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - Remove myself from MAINTAINERS.md by [@​mvdkleijn](https://github.com/mvdkleijn) in [https://github.com/stretchr/testify/pull/1367](https://github.com/stretchr/testify/pull/1367) - Correct spelling/grammar by [@​echarrod](https://github.com/echarrod) in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - docs: Update URLs in README by [@​davidjb](https://github.com/davidjb) in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - Update mockery link to Github Pages in README by [@​LandonTClipp](https://github.com/LandonTClipp) in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - docs: Fix typos in tests and comments by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - CI: tests from go1.17 by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1409](https://github.com/stretchr/testify/pull/1409) - Fix adding ? when no values passed by [@​lesichkovm](https://github.com/lesichkovm) in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - codegen: use standard header for generated files by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - mock: AssertExpectations log reason only on failure by [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - assert: fix flaky TestNeverTrue by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1417](https://github.com/stretchr/testify/pull/1417) - README: fix typos "set up" vs "setup" by [@​ossan-dev](https://github.com/ossan-dev) in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - mock: move regexp compilation outside of `Called` by [@​aud10slave](https://github.com/aud10slave) in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - assert: refactor internal func getLen() by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1445](https://github.com/stretchr/testify/pull/1445) - mock: deprecate type AnythingOfTypeArgument ([#​1434](https://github.com/stretchr/testify/issues/1434)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1441](https://github.com/stretchr/testify/pull/1441) - Remove no longer needed assert.canConvert by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1470](https://github.com/stretchr/testify/pull/1470) - assert: ObjectsAreEqual: use time.Equal for time.Time types by [@​tscales](https://github.com/tscales) in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - Bump actions/checkout from 3 to 4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1466](https://github.com/stretchr/testify/pull/1466) - Bump actions/setup-go from 3.2.0 to 4.1.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1451](https://github.com/stretchr/testify/pull/1451) - fix: make EventuallyWithT concurrency safe by [@​czeslavo](https://github.com/czeslavo) in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - assert: fix httpCode and HTTPBody occur panic when http.Handler read Body by [@​hidu](https://github.com/hidu) in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - assert.EqualExportedValues: fix handling of arrays by [@​zrbecker](https://github.com/zrbecker) in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - .github: use latest Go versions by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - assert: Deprecate EqualExportedValues by [@​HaraldNordgren](https://github.com/HaraldNordgren) in [https://github.com/stretchr/testify/pull/1488](https://github.com/stretchr/testify/pull/1488) - suite: refactor test assertions by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1474](https://github.com/stretchr/testify/pull/1474) - suite: fix SetupSubTest and TearDownSubTest execution order by [@​linusbarth](https://github.com/linusbarth) in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - docs: Fix deprecation comments for http package by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1335](https://github.com/stretchr/testify/pull/1335) - Add map support doc comments to Subset and NotSubset by [@​jedevc](https://github.com/jedevc) in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - TestErrorIs/TestNotErrorIs: check error message contents by [@​craig65535](https://github.com/craig65535) in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - suite: fix subtest names (fix [#​1501](https://github.com/stretchr/testify/issues/1501)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1504](https://github.com/stretchr/testify/pull/1504) - assert: improve unsafe.Pointer tests by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1505](https://github.com/stretchr/testify/pull/1505) - assert: simplify isNil implementation by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1506](https://github.com/stretchr/testify/pull/1506) - assert.InEpsilonSlice: fix expected/actual order and other improvements by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1483](https://github.com/stretchr/testify/pull/1483) - Fix dependency cycle with objx [#​1292](https://github.com/stretchr/testify/issues/1292) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1453](https://github.com/stretchr/testify/pull/1453) - mock: refactor TestIsArgsEqual by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1444](https://github.com/stretchr/testify/pull/1444) - mock: optimize argument matching checks by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1416](https://github.com/stretchr/testify/pull/1416) - assert: fix TestEventuallyTimeout by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1412](https://github.com/stretchr/testify/pull/1412) - CI: add go 1.21 in GitHub Actions by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1450](https://github.com/stretchr/testify/pull/1450) - suite: fix recoverAndFailOnPanic to report test failure at the right location by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1502](https://github.com/stretchr/testify/pull/1502) - Update maintainers by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1533](https://github.com/stretchr/testify/pull/1533) - assert: Fix EqualValues to handle overflow/underflow by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - assert: better formatting for Len() error by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1485](https://github.com/stretchr/testify/pull/1485) - Ensure AssertExpectations does not fail in skipped tests by [@​ianrose14](https://github.com/ianrose14) in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - suite: fix deadlock in suite.Require()/Assert() by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1535](https://github.com/stretchr/testify/pull/1535) - Revert "assert: ObjectsAreEqual: use time.Equal for time.Time type" by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1537](https://github.com/stretchr/testify/pull/1537) - \[chore] Add issue templates by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1538](https://github.com/stretchr/testify/pull/1538) - Update the build status badge by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1540](https://github.com/stretchr/testify/pull/1540) - Update Github workflows setup-go to V5 by [@​hendrywiranto](https://github.com/hendrywiranto) in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - Support Pointer to Struct in EqualExportedValues by [@​Lucaber](https://github.com/Lucaber) in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - README: drop link to gorc by [@​guettli](https://github.com/guettli) in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - http_assertions: honour the msgAndArgs provided with each assertion by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1548](https://github.com/stretchr/testify/pull/1548) - fix typos in comments and tests by [@​ccoVeille](https://github.com/ccoVeille) in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - Include the auto-release notes in releases by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1550](https://github.com/stretchr/testify/pull/1550) - Add `NotImplements` and variants by [@​hslatman](https://github.com/hslatman) in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - Add support to compare uintptr by [@​bogdandrutu](https://github.com/bogdandrutu) in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) - build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1552](https://github.com/stretchr/testify/pull/1552) #### New Contributors - [@​SuperQ](https://github.com/SuperQ) made their first contribution in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - [@​programmer04](https://github.com/programmer04) made their first contribution in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - [@​echarrod](https://github.com/echarrod) made their first contribution in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - [@​davidjb](https://github.com/davidjb) made their first contribution in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - [@​LandonTClipp](https://github.com/LandonTClipp) made their first contribution in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - [@​alexandear](https://github.com/alexandear) made their first contribution in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - [@​lesichkovm](https://github.com/lesichkovm) made their first contribution in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - [@​dolmen](https://github.com/dolmen) made their first contribution in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) made their first contribution in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - [@​ossan-dev](https://github.com/ossan-dev) made their first contribution in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - [@​aud10slave](https://github.com/aud10slave) made their first contribution in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - [@​tscales](https://github.com/tscales) made their first contribution in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - [@​czeslavo](https://github.com/czeslavo) made their first contribution in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - [@​hidu](https://github.com/hidu) made their first contribution in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - [@​zrbecker](https://github.com/zrbecker) made their first contribution in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - [@​kevinburkesegment](https://github.com/kevinburkesegment) made their first contribution in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - [@​linusbarth](https://github.com/linusbarth) made their first contribution in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - [@​jedevc](https://github.com/jedevc) made their first contribution in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - [@​craig65535](https://github.com/craig65535) made their first contribution in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - [@​arjunmahishi](https://github.com/arjunmahishi) made their first contribution in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - [@​ianrose14](https://github.com/ianrose14) made their first contribution in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - [@​hendrywiranto](https://github.com/hendrywiranto) made their first contribution in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - [@​Lucaber](https://github.com/Lucaber) made their first contribution in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - [@​guettli](https://github.com/guettli) made their first contribution in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - [@​ccoVeille](https://github.com/ccoVeille) made their first contribution in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - [@​hslatman](https://github.com/hslatman) made their first contribution in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - [@​bogdandrutu](https://github.com/bogdandrutu) made their first contribution in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) **Full Changelog**: stretchr/testify@v1.8.4...v1.9.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on the first day of the month" (UTC), 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 has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNzguMCIsInVwZGF0ZWRJblZlciI6IjM3LjI3OC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/stretchr/testify](https://github.com/stretchr/testify) | require | minor | `v1.8.4` -> `v1.9.0` | --- ### Release Notes <details> <summary>stretchr/testify (github.com/stretchr/testify)</summary> ### [`v1.9.0`](https://github.com/stretchr/testify/releases/tag/v1.9.0) [Compare Source](https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0) #### What's Changed - Fix Go modules version by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - Document that require is not safe to call in created goroutines by [@​programmer04](https://github.com/programmer04) in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - Remove myself from MAINTAINERS.md by [@​mvdkleijn](https://github.com/mvdkleijn) in [https://github.com/stretchr/testify/pull/1367](https://github.com/stretchr/testify/pull/1367) - Correct spelling/grammar by [@​echarrod](https://github.com/echarrod) in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - docs: Update URLs in README by [@​davidjb](https://github.com/davidjb) in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - Update mockery link to Github Pages in README by [@​LandonTClipp](https://github.com/LandonTClipp) in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - docs: Fix typos in tests and comments by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - CI: tests from go1.17 by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1409](https://github.com/stretchr/testify/pull/1409) - Fix adding ? when no values passed by [@​lesichkovm](https://github.com/lesichkovm) in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - codegen: use standard header for generated files by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - mock: AssertExpectations log reason only on failure by [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - assert: fix flaky TestNeverTrue by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1417](https://github.com/stretchr/testify/pull/1417) - README: fix typos "set up" vs "setup" by [@​ossan-dev](https://github.com/ossan-dev) in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - mock: move regexp compilation outside of `Called` by [@​aud10slave](https://github.com/aud10slave) in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - assert: refactor internal func getLen() by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1445](https://github.com/stretchr/testify/pull/1445) - mock: deprecate type AnythingOfTypeArgument ([#​1434](https://github.com/stretchr/testify/issues/1434)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1441](https://github.com/stretchr/testify/pull/1441) - Remove no longer needed assert.canConvert by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1470](https://github.com/stretchr/testify/pull/1470) - assert: ObjectsAreEqual: use time.Equal for time.Time types by [@​tscales](https://github.com/tscales) in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - Bump actions/checkout from 3 to 4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1466](https://github.com/stretchr/testify/pull/1466) - Bump actions/setup-go from 3.2.0 to 4.1.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1451](https://github.com/stretchr/testify/pull/1451) - fix: make EventuallyWithT concurrency safe by [@​czeslavo](https://github.com/czeslavo) in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - assert: fix httpCode and HTTPBody occur panic when http.Handler read Body by [@​hidu](https://github.com/hidu) in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - assert.EqualExportedValues: fix handling of arrays by [@​zrbecker](https://github.com/zrbecker) in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - .github: use latest Go versions by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - assert: Deprecate EqualExportedValues by [@​HaraldNordgren](https://github.com/HaraldNordgren) in [https://github.com/stretchr/testify/pull/1488](https://github.com/stretchr/testify/pull/1488) - suite: refactor test assertions by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1474](https://github.com/stretchr/testify/pull/1474) - suite: fix SetupSubTest and TearDownSubTest execution order by [@​linusbarth](https://github.com/linusbarth) in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - docs: Fix deprecation comments for http package by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1335](https://github.com/stretchr/testify/pull/1335) - Add map support doc comments to Subset and NotSubset by [@​jedevc](https://github.com/jedevc) in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - TestErrorIs/TestNotErrorIs: check error message contents by [@​craig65535](https://github.com/craig65535) in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - suite: fix subtest names (fix [#​1501](https://github.com/stretchr/testify/issues/1501)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1504](https://github.com/stretchr/testify/pull/1504) - assert: improve unsafe.Pointer tests by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1505](https://github.com/stretchr/testify/pull/1505) - assert: simplify isNil implementation by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1506](https://github.com/stretchr/testify/pull/1506) - assert.InEpsilonSlice: fix expected/actual order and other improvements by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1483](https://github.com/stretchr/testify/pull/1483) - Fix dependency cycle with objx [#​1292](https://github.com/stretchr/testify/issues/1292) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1453](https://github.com/stretchr/testify/pull/1453) - mock: refactor TestIsArgsEqual by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1444](https://github.com/stretchr/testify/pull/1444) - mock: optimize argument matching checks by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1416](https://github.com/stretchr/testify/pull/1416) - assert: fix TestEventuallyTimeout by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1412](https://github.com/stretchr/testify/pull/1412) - CI: add go 1.21 in GitHub Actions by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1450](https://github.com/stretchr/testify/pull/1450) - suite: fix recoverAndFailOnPanic to report test failure at the right location by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1502](https://github.com/stretchr/testify/pull/1502) - Update maintainers by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1533](https://github.com/stretchr/testify/pull/1533) - assert: Fix EqualValues to handle overflow/underflow by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - assert: better formatting for Len() error by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1485](https://github.com/stretchr/testify/pull/1485) - Ensure AssertExpectations does not fail in skipped tests by [@​ianrose14](https://github.com/ianrose14) in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - suite: fix deadlock in suite.Require()/Assert() by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1535](https://github.com/stretchr/testify/pull/1535) - Revert "assert: ObjectsAreEqual: use time.Equal for time.Time type" by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1537](https://github.com/stretchr/testify/pull/1537) - \[chore] Add issue templates by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1538](https://github.com/stretchr/testify/pull/1538) - Update the build status badge by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1540](https://github.com/stretchr/testify/pull/1540) - Update Github workflows setup-go to V5 by [@​hendrywiranto](https://github.com/hendrywiranto) in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - Support Pointer to Struct in EqualExportedValues by [@​Lucaber](https://github.com/Lucaber) in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - README: drop link to gorc by [@​guettli](https://github.com/guettli) in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - http_assertions: honour the msgAndArgs provided with each assertion by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1548](https://github.com/stretchr/testify/pull/1548) - fix typos in comments and tests by [@​ccoVeille](https://github.com/ccoVeille) in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - Include the auto-release notes in releases by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1550](https://github.com/stretchr/testify/pull/1550) - Add `NotImplements` and variants by [@​hslatman](https://github.com/hslatman) in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - Add support to compare uintptr by [@​bogdandrutu](https://github.com/bogdandrutu) in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) - build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1552](https://github.com/stretchr/testify/pull/1552) #### New Contributors - [@​SuperQ](https://github.com/SuperQ) made their first contribution in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - [@​programmer04](https://github.com/programmer04) made their first contribution in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - [@​echarrod](https://github.com/echarrod) made their first contribution in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - [@​davidjb](https://github.com/davidjb) made their first contribution in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - [@​LandonTClipp](https://github.com/LandonTClipp) made their first contribution in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - [@​alexandear](https://github.com/alexandear) made their first contribution in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - [@​lesichkovm](https://github.com/lesichkovm) made their first contribution in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - [@​dolmen](https://github.com/dolmen) made their first contribution in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) made their first contribution in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - [@​ossan-dev](https://github.com/ossan-dev) made their first contribution in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - [@​aud10slave](https://github.com/aud10slave) made their first contribution in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - [@​tscales](https://github.com/tscales) made their first contribution in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - [@​czeslavo](https://github.com/czeslavo) made their first contribution in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - [@​hidu](https://github.com/hidu) made their first contribution in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - [@​zrbecker](https://github.com/zrbecker) made their first contribution in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - [@​kevinburkesegment](https://github.com/kevinburkesegment) made their first contribution in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - [@​linusbarth](https://github.com/linusbarth) made their first contribution in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - [@​jedevc](https://github.com/jedevc) made their first contribution in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - [@​craig65535](https://github.com/craig65535) made their first contribution in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - [@​arjunmahishi](https://github.com/arjunmahishi) made their first contribution in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - [@​ianrose14](https://github.com/ianrose14) made their first contribution in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - [@​hendrywiranto](https://github.com/hendrywiranto) made their first contribution in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - [@​Lucaber](https://github.com/Lucaber) made their first contribution in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - [@​guettli](https://github.com/guettli) made their first contribution in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - [@​ccoVeille](https://github.com/ccoVeille) made their first contribution in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - [@​hslatman](https://github.com/hslatman) made their first contribution in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - [@​bogdandrutu](https://github.com/bogdandrutu) made their first contribution in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) **Full Changelog**: stretchr/testify@v1.8.4...v1.9.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on the first day of the month" (UTC), 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 has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNzguMCIsInVwZGF0ZWRJblZlciI6IjM3LjI3OC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/stretchr/testify](https://github.com/stretchr/testify) | require | minor | `v1.8.4` -> `v1.9.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>stretchr/testify (github.com/stretchr/testify)</summary> ### [`v1.9.0`](https://github.com/stretchr/testify/releases/tag/v1.9.0) [Compare Source](https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0) #### What's Changed - Fix Go modules version by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - Document that require is not safe to call in created goroutines by [@​programmer04](https://github.com/programmer04) in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - Remove myself from MAINTAINERS.md by [@​mvdkleijn](https://github.com/mvdkleijn) in [https://github.com/stretchr/testify/pull/1367](https://github.com/stretchr/testify/pull/1367) - Correct spelling/grammar by [@​echarrod](https://github.com/echarrod) in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - docs: Update URLs in README by [@​davidjb](https://github.com/davidjb) in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - Update mockery link to Github Pages in README by [@​LandonTClipp](https://github.com/LandonTClipp) in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - docs: Fix typos in tests and comments by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - CI: tests from go1.17 by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1409](https://github.com/stretchr/testify/pull/1409) - Fix adding ? when no values passed by [@​lesichkovm](https://github.com/lesichkovm) in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - codegen: use standard header for generated files by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - mock: AssertExpectations log reason only on failure by [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - assert: fix flaky TestNeverTrue by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1417](https://github.com/stretchr/testify/pull/1417) - README: fix typos "set up" vs "setup" by [@​ossan-dev](https://github.com/ossan-dev) in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - mock: move regexp compilation outside of `Called` by [@​aud10slave](https://github.com/aud10slave) in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - assert: refactor internal func getLen() by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1445](https://github.com/stretchr/testify/pull/1445) - mock: deprecate type AnythingOfTypeArgument ([#​1434](https://github.com/stretchr/testify/issues/1434)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1441](https://github.com/stretchr/testify/pull/1441) - Remove no longer needed assert.canConvert by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1470](https://github.com/stretchr/testify/pull/1470) - assert: ObjectsAreEqual: use time.Equal for time.Time types by [@​tscales](https://github.com/tscales) in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - Bump actions/checkout from 3 to 4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1466](https://github.com/stretchr/testify/pull/1466) - Bump actions/setup-go from 3.2.0 to 4.1.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1451](https://github.com/stretchr/testify/pull/1451) - fix: make EventuallyWithT concurrency safe by [@​czeslavo](https://github.com/czeslavo) in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - assert: fix httpCode and HTTPBody occur panic when http.Handler read Body by [@​hidu](https://github.com/hidu) in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - assert.EqualExportedValues: fix handling of arrays by [@​zrbecker](https://github.com/zrbecker) in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - .github: use latest Go versions by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - assert: Deprecate EqualExportedValues by [@​HaraldNordgren](https://github.com/HaraldNordgren) in [https://github.com/stretchr/testify/pull/1488](https://github.com/stretchr/testify/pull/1488) - suite: refactor test assertions by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1474](https://github.com/stretchr/testify/pull/1474) - suite: fix SetupSubTest and TearDownSubTest execution order by [@​linusbarth](https://github.com/linusbarth) in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - docs: Fix deprecation comments for http package by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1335](https://github.com/stretchr/testify/pull/1335) - Add map support doc comments to Subset and NotSubset by [@​jedevc](https://github.com/jedevc) in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - TestErrorIs/TestNotErrorIs: check error message contents by [@​craig65535](https://github.com/craig65535) in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - suite: fix subtest names (fix [#​1501](https://github.com/stretchr/testify/issues/1501)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1504](https://github.com/stretchr/testify/pull/1504) - assert: improve unsafe.Pointer tests by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1505](https://github.com/stretchr/testify/pull/1505) - assert: simplify isNil implementation by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1506](https://github.com/stretchr/testify/pull/1506) - assert.InEpsilonSlice: fix expected/actual order and other improvements by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1483](https://github.com/stretchr/testify/pull/1483) - Fix dependency cycle with objx [#​1292](https://github.com/stretchr/testify/issues/1292) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1453](https://github.com/stretchr/testify/pull/1453) - mock: refactor TestIsArgsEqual by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1444](https://github.com/stretchr/testify/pull/1444) - mock: optimize argument matching checks by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1416](https://github.com/stretchr/testify/pull/1416) - assert: fix TestEventuallyTimeout by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1412](https://github.com/stretchr/testify/pull/1412) - CI: add go 1.21 in GitHub Actions by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1450](https://github.com/stretchr/testify/pull/1450) - suite: fix recoverAndFailOnPanic to report test failure at the right location by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1502](https://github.com/stretchr/testify/pull/1502) - Update maintainers by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1533](https://github.com/stretchr/testify/pull/1533) - assert: Fix EqualValues to handle overflow/underflow by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - assert: better formatting for Len() error by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1485](https://github.com/stretchr/testify/pull/1485) - Ensure AssertExpectations does not fail in skipped tests by [@​ianrose14](https://github.com/ianrose14) in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - suite: fix deadlock in suite.Require()/Assert() by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1535](https://github.com/stretchr/testify/pull/1535) - Revert "assert: ObjectsAreEqual: use time.Equal for time.Time type" by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1537](https://github.com/stretchr/testify/pull/1537) - \[chore] Add issue templates by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1538](https://github.com/stretchr/testify/pull/1538) - Update the build status badge by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1540](https://github.com/stretchr/testify/pull/1540) - Update Github workflows setup-go to V5 by [@​hendrywiranto](https://github.com/hendrywiranto) in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - Support Pointer to Struct in EqualExportedValues by [@​Lucaber](https://github.com/Lucaber) in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - README: drop link to gorc by [@​guettli](https://github.com/guettli) in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - http_assertions: honour the msgAndArgs provided with each assertion by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1548](https://github.com/stretchr/testify/pull/1548) - fix typos in comments and tests by [@​ccoVeille](https://github.com/ccoVeille) in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - Include the auto-release notes in releases by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1550](https://github.com/stretchr/testify/pull/1550) - Add `NotImplements` and variants by [@​hslatman](https://github.com/hslatman) in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - Add support to compare uintptr by [@​bogdandrutu](https://github.com/bogdandrutu) in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) - build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1552](https://github.com/stretchr/testify/pull/1552) #### New Contributors - [@​SuperQ](https://github.com/SuperQ) made their first contribution in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - [@​programmer04](https://github.com/programmer04) made their first contribution in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - [@​echarrod](https://github.com/echarrod) made their first contribution in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - [@​davidjb](https://github.com/davidjb) made their first contribution in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - [@​LandonTClipp](https://github.com/LandonTClipp) made their first contribution in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - [@​alexandear](https://github.com/alexandear) made their first contribution in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - [@​lesichkovm](https://github.com/lesichkovm) made their first contribution in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - [@​dolmen](https://github.com/dolmen) made their first contribution in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) made their first contribution in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - [@​ossan-dev](https://github.com/ossan-dev) made their first contribution in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - [@​aud10slave](https://github.com/aud10slave) made their first contribution in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - [@​tscales](https://github.com/tscales) made their first contribution in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - [@​czeslavo](https://github.com/czeslavo) made their first contribution in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - [@​hidu](https://github.com/hidu) made their first contribution in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - [@​zrbecker](https://github.com/zrbecker) made their first contribution in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - [@​kevinburkesegment](https://github.com/kevinburkesegment) made their first contribution in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - [@​linusbarth](https://github.com/linusbarth) made their first contribution in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - [@​jedevc](https://github.com/jedevc) made their first contribution in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - [@​craig65535](https://github.com/craig65535) made their first contribution in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - [@​arjunmahishi](https://github.com/arjunmahishi) made their first contribution in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - [@​ianrose14](https://github.com/ianrose14) made their first contribution in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - [@​hendrywiranto](https://github.com/hendrywiranto) made their first contribution in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - [@​Lucaber](https://github.com/Lucaber) made their first contribution in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - [@​guettli](https://github.com/guettli) made their first contribution in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - [@​ccoVeille](https://github.com/ccoVeille) made their first contribution in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - [@​hslatman](https://github.com/hslatman) made their first contribution in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - [@​bogdandrutu](https://github.com/bogdandrutu) made their first contribution in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) **Full Changelog**: stretchr/testify@v1.8.4...v1.9.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on the first day of the month" (UTC), 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 has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNzguMCIsInVwZGF0ZWRJblZlciI6IjM3LjI3OC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/stretchr/testify](https://github.com/stretchr/testify) | require | minor | `v1.8.4` -> `v1.9.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>stretchr/testify (github.com/stretchr/testify)</summary> ### [`v1.9.0`](https://github.com/stretchr/testify/releases/tag/v1.9.0) [Compare Source](https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0) #### What's Changed - Fix Go modules version by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - Document that require is not safe to call in created goroutines by [@​programmer04](https://github.com/programmer04) in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - Remove myself from MAINTAINERS.md by [@​mvdkleijn](https://github.com/mvdkleijn) in [https://github.com/stretchr/testify/pull/1367](https://github.com/stretchr/testify/pull/1367) - Correct spelling/grammar by [@​echarrod](https://github.com/echarrod) in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - docs: Update URLs in README by [@​davidjb](https://github.com/davidjb) in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - Update mockery link to Github Pages in README by [@​LandonTClipp](https://github.com/LandonTClipp) in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - docs: Fix typos in tests and comments by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - CI: tests from go1.17 by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1409](https://github.com/stretchr/testify/pull/1409) - Fix adding ? when no values passed by [@​lesichkovm](https://github.com/lesichkovm) in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - codegen: use standard header for generated files by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - mock: AssertExpectations log reason only on failure by [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - assert: fix flaky TestNeverTrue by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1417](https://github.com/stretchr/testify/pull/1417) - README: fix typos "set up" vs "setup" by [@​ossan-dev](https://github.com/ossan-dev) in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - mock: move regexp compilation outside of `Called` by [@​aud10slave](https://github.com/aud10slave) in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - assert: refactor internal func getLen() by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1445](https://github.com/stretchr/testify/pull/1445) - mock: deprecate type AnythingOfTypeArgument ([#​1434](https://github.com/stretchr/testify/issues/1434)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1441](https://github.com/stretchr/testify/pull/1441) - Remove no longer needed assert.canConvert by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1470](https://github.com/stretchr/testify/pull/1470) - assert: ObjectsAreEqual: use time.Equal for time.Time types by [@​tscales](https://github.com/tscales) in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - Bump actions/checkout from 3 to 4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1466](https://github.com/stretchr/testify/pull/1466) - Bump actions/setup-go from 3.2.0 to 4.1.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1451](https://github.com/stretchr/testify/pull/1451) - fix: make EventuallyWithT concurrency safe by [@​czeslavo](https://github.com/czeslavo) in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - assert: fix httpCode and HTTPBody occur panic when http.Handler read Body by [@​hidu](https://github.com/hidu) in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - assert.EqualExportedValues: fix handling of arrays by [@​zrbecker](https://github.com/zrbecker) in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - .github: use latest Go versions by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - assert: Deprecate EqualExportedValues by [@​HaraldNordgren](https://github.com/HaraldNordgren) in [https://github.com/stretchr/testify/pull/1488](https://github.com/stretchr/testify/pull/1488) - suite: refactor test assertions by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1474](https://github.com/stretchr/testify/pull/1474) - suite: fix SetupSubTest and TearDownSubTest execution order by [@​linusbarth](https://github.com/linusbarth) in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - docs: Fix deprecation comments for http package by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1335](https://github.com/stretchr/testify/pull/1335) - Add map support doc comments to Subset and NotSubset by [@​jedevc](https://github.com/jedevc) in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - TestErrorIs/TestNotErrorIs: check error message contents by [@​craig65535](https://github.com/craig65535) in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - suite: fix subtest names (fix [#​1501](https://github.com/stretchr/testify/issues/1501)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1504](https://github.com/stretchr/testify/pull/1504) - assert: improve unsafe.Pointer tests by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1505](https://github.com/stretchr/testify/pull/1505) - assert: simplify isNil implementation by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1506](https://github.com/stretchr/testify/pull/1506) - assert.InEpsilonSlice: fix expected/actual order and other improvements by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1483](https://github.com/stretchr/testify/pull/1483) - Fix dependency cycle with objx [#​1292](https://github.com/stretchr/testify/issues/1292) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1453](https://github.com/stretchr/testify/pull/1453) - mock: refactor TestIsArgsEqual by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1444](https://github.com/stretchr/testify/pull/1444) - mock: optimize argument matching checks by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1416](https://github.com/stretchr/testify/pull/1416) - assert: fix TestEventuallyTimeout by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1412](https://github.com/stretchr/testify/pull/1412) - CI: add go 1.21 in GitHub Actions by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1450](https://github.com/stretchr/testify/pull/1450) - suite: fix recoverAndFailOnPanic to report test failure at the right location by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1502](https://github.com/stretchr/testify/pull/1502) - Update maintainers by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1533](https://github.com/stretchr/testify/pull/1533) - assert: Fix EqualValues to handle overflow/underflow by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - assert: better formatting for Len() error by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1485](https://github.com/stretchr/testify/pull/1485) - Ensure AssertExpectations does not fail in skipped tests by [@​ianrose14](https://github.com/ianrose14) in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - suite: fix deadlock in suite.Require()/Assert() by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1535](https://github.com/stretchr/testify/pull/1535) - Revert "assert: ObjectsAreEqual: use time.Equal for time.Time type" by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1537](https://github.com/stretchr/testify/pull/1537) - \[chore] Add issue templates by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1538](https://github.com/stretchr/testify/pull/1538) - Update the build status badge by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1540](https://github.com/stretchr/testify/pull/1540) - Update Github workflows setup-go to V5 by [@​hendrywiranto](https://github.com/hendrywiranto) in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - Support Pointer to Struct in EqualExportedValues by [@​Lucaber](https://github.com/Lucaber) in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - README: drop link to gorc by [@​guettli](https://github.com/guettli) in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - http_assertions: honour the msgAndArgs provided with each assertion by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1548](https://github.com/stretchr/testify/pull/1548) - fix typos in comments and tests by [@​ccoVeille](https://github.com/ccoVeille) in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - Include the auto-release notes in releases by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1550](https://github.com/stretchr/testify/pull/1550) - Add `NotImplements` and variants by [@​hslatman](https://github.com/hslatman) in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - Add support to compare uintptr by [@​bogdandrutu](https://github.com/bogdandrutu) in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) - build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1552](https://github.com/stretchr/testify/pull/1552) #### New Contributors - [@​SuperQ](https://github.com/SuperQ) made their first contribution in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - [@​programmer04](https://github.com/programmer04) made their first contribution in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - [@​echarrod](https://github.com/echarrod) made their first contribution in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - [@​davidjb](https://github.com/davidjb) made their first contribution in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - [@​LandonTClipp](https://github.com/LandonTClipp) made their first contribution in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - [@​alexandear](https://github.com/alexandear) made their first contribution in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - [@​lesichkovm](https://github.com/lesichkovm) made their first contribution in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - [@​dolmen](https://github.com/dolmen) made their first contribution in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) made their first contribution in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - [@​ossan-dev](https://github.com/ossan-dev) made their first contribution in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - [@​aud10slave](https://github.com/aud10slave) made their first contribution in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - [@​tscales](https://github.com/tscales) made their first contribution in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - [@​czeslavo](https://github.com/czeslavo) made their first contribution in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - [@​hidu](https://github.com/hidu) made their first contribution in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - [@​zrbecker](https://github.com/zrbecker) made their first contribution in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - [@​kevinburkesegment](https://github.com/kevinburkesegment) made their first contribution in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - [@​linusbarth](https://github.com/linusbarth) made their first contribution in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - [@​jedevc](https://github.com/jedevc) made their first contribution in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - [@​craig65535](https://github.com/craig65535) made their first contribution in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - [@​arjunmahishi](https://github.com/arjunmahishi) made their first contribution in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - [@​ianrose14](https://github.com/ianrose14) made their first contribution in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - [@​hendrywiranto](https://github.com/hendrywiranto) made their first contribution in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - [@​Lucaber](https://github.com/Lucaber) made their first contribution in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - [@​guettli](https://github.com/guettli) made their first contribution in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - [@​ccoVeille](https://github.com/ccoVeille) made their first contribution in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - [@​hslatman](https://github.com/hslatman) made their first contribution in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - [@​bogdandrutu](https://github.com/bogdandrutu) made their first contribution in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) **Full Changelog**: stretchr/testify@v1.8.4...v1.9.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on the first day of the month" (UTC), 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 has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNzguMCIsInVwZGF0ZWRJblZlciI6IjM3LjI3OC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | Type | Update | |---|---|---|---|---|---|---|---| | [github.com/stretchr/testify](https://github.com/stretchr/testify) | `v1.8.4` -> `v1.9.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fstretchr%2ftestify/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fstretchr%2ftestify/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fstretchr%2ftestify/v1.8.4/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fstretchr%2ftestify/v1.8.4/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | minor | | [test-collector](https://github.com/buildkite-plugins/test-collector-buildkite-plugin) | `v1.10.0` -> `v1.10.1` | [![age](https://developer.mend.io/api/mc/badges/age/github-tags/test-collector/v1.10.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/test-collector/v1.10.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/test-collector/v1.10.0/v1.10.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/test-collector/v1.10.0/v1.10.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | patch | --- ### Release Notes <details> <summary>stretchr/testify (github.com/stretchr/testify)</summary> ### [`v1.9.0`](https://github.com/stretchr/testify/releases/tag/v1.9.0) [Compare Source](https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0) #### What's Changed - Fix Go modules version by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - Document that require is not safe to call in created goroutines by [@​programmer04](https://github.com/programmer04) in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - Remove myself from MAINTAINERS.md by [@​mvdkleijn](https://github.com/mvdkleijn) in [https://github.com/stretchr/testify/pull/1367](https://github.com/stretchr/testify/pull/1367) - Correct spelling/grammar by [@​echarrod](https://github.com/echarrod) in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - docs: Update URLs in README by [@​davidjb](https://github.com/davidjb) in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - Update mockery link to Github Pages in README by [@​LandonTClipp](https://github.com/LandonTClipp) in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - docs: Fix typos in tests and comments by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - CI: tests from go1.17 by [@​SuperQ](https://github.com/SuperQ) in [https://github.com/stretchr/testify/pull/1409](https://github.com/stretchr/testify/pull/1409) - Fix adding ? when no values passed by [@​lesichkovm](https://github.com/lesichkovm) in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - codegen: use standard header for generated files by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - mock: AssertExpectations log reason only on failure by [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - assert: fix flaky TestNeverTrue by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1417](https://github.com/stretchr/testify/pull/1417) - README: fix typos "set up" vs "setup" by [@​ossan-dev](https://github.com/ossan-dev) in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - mock: move regexp compilation outside of `Called` by [@​aud10slave](https://github.com/aud10slave) in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - assert: refactor internal func getLen() by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1445](https://github.com/stretchr/testify/pull/1445) - mock: deprecate type AnythingOfTypeArgument ([#​1434](https://github.com/stretchr/testify/issues/1434)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1441](https://github.com/stretchr/testify/pull/1441) - Remove no longer needed assert.canConvert by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1470](https://github.com/stretchr/testify/pull/1470) - assert: ObjectsAreEqual: use time.Equal for time.Time types by [@​tscales](https://github.com/tscales) in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - Bump actions/checkout from 3 to 4 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1466](https://github.com/stretchr/testify/pull/1466) - Bump actions/setup-go from 3.2.0 to 4.1.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1451](https://github.com/stretchr/testify/pull/1451) - fix: make EventuallyWithT concurrency safe by [@​czeslavo](https://github.com/czeslavo) in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - assert: fix httpCode and HTTPBody occur panic when http.Handler read Body by [@​hidu](https://github.com/hidu) in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - assert.EqualExportedValues: fix handling of arrays by [@​zrbecker](https://github.com/zrbecker) in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - .github: use latest Go versions by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - assert: Deprecate EqualExportedValues by [@​HaraldNordgren](https://github.com/HaraldNordgren) in [https://github.com/stretchr/testify/pull/1488](https://github.com/stretchr/testify/pull/1488) - suite: refactor test assertions by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1474](https://github.com/stretchr/testify/pull/1474) - suite: fix SetupSubTest and TearDownSubTest execution order by [@​linusbarth](https://github.com/linusbarth) in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - docs: Fix deprecation comments for http package by [@​alexandear](https://github.com/alexandear) in [https://github.com/stretchr/testify/pull/1335](https://github.com/stretchr/testify/pull/1335) - Add map support doc comments to Subset and NotSubset by [@​jedevc](https://github.com/jedevc) in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - TestErrorIs/TestNotErrorIs: check error message contents by [@​craig65535](https://github.com/craig65535) in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - suite: fix subtest names (fix [#​1501](https://github.com/stretchr/testify/issues/1501)) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1504](https://github.com/stretchr/testify/pull/1504) - assert: improve unsafe.Pointer tests by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1505](https://github.com/stretchr/testify/pull/1505) - assert: simplify isNil implementation by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1506](https://github.com/stretchr/testify/pull/1506) - assert.InEpsilonSlice: fix expected/actual order and other improvements by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1483](https://github.com/stretchr/testify/pull/1483) - Fix dependency cycle with objx [#​1292](https://github.com/stretchr/testify/issues/1292) by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1453](https://github.com/stretchr/testify/pull/1453) - mock: refactor TestIsArgsEqual by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1444](https://github.com/stretchr/testify/pull/1444) - mock: optimize argument matching checks by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1416](https://github.com/stretchr/testify/pull/1416) - assert: fix TestEventuallyTimeout by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1412](https://github.com/stretchr/testify/pull/1412) - CI: add go 1.21 in GitHub Actions by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1450](https://github.com/stretchr/testify/pull/1450) - suite: fix recoverAndFailOnPanic to report test failure at the right location by [@​dolmen](https://github.com/dolmen) in [https://github.com/stretchr/testify/pull/1502](https://github.com/stretchr/testify/pull/1502) - Update maintainers by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1533](https://github.com/stretchr/testify/pull/1533) - assert: Fix EqualValues to handle overflow/underflow by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - assert: better formatting for Len() error by [@​kevinburkesegment](https://github.com/kevinburkesegment) in [https://github.com/stretchr/testify/pull/1485](https://github.com/stretchr/testify/pull/1485) - Ensure AssertExpectations does not fail in skipped tests by [@​ianrose14](https://github.com/ianrose14) in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - suite: fix deadlock in suite.Require()/Assert() by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1535](https://github.com/stretchr/testify/pull/1535) - Revert "assert: ObjectsAreEqual: use time.Equal for time.Time type" by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1537](https://github.com/stretchr/testify/pull/1537) - \[chore] Add issue templates by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1538](https://github.com/stretchr/testify/pull/1538) - Update the build status badge by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1540](https://github.com/stretchr/testify/pull/1540) - Update Github workflows setup-go to V5 by [@​hendrywiranto](https://github.com/hendrywiranto) in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - Support Pointer to Struct in EqualExportedValues by [@​Lucaber](https://github.com/Lucaber) in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - README: drop link to gorc by [@​guettli](https://github.com/guettli) in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - http_assertions: honour the msgAndArgs provided with each assertion by [@​arjunmahishi](https://github.com/arjunmahishi) in [https://github.com/stretchr/testify/pull/1548](https://github.com/stretchr/testify/pull/1548) - fix typos in comments and tests by [@​ccoVeille](https://github.com/ccoVeille) in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - Include the auto-release notes in releases by [@​brackendawson](https://github.com/brackendawson) in [https://github.com/stretchr/testify/pull/1550](https://github.com/stretchr/testify/pull/1550) - Add `NotImplements` and variants by [@​hslatman](https://github.com/hslatman) in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - Add support to compare uintptr by [@​bogdandrutu](https://github.com/bogdandrutu) in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) - build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2 by [@​dependabot](https://github.com/dependabot) in [https://github.com/stretchr/testify/pull/1552](https://github.com/stretchr/testify/pull/1552) #### New Contributors - [@​SuperQ](https://github.com/SuperQ) made their first contribution in [https://github.com/stretchr/testify/pull/1394](https://github.com/stretchr/testify/pull/1394) - [@​programmer04](https://github.com/programmer04) made their first contribution in [https://github.com/stretchr/testify/pull/1392](https://github.com/stretchr/testify/pull/1392) - [@​echarrod](https://github.com/echarrod) made their first contribution in [https://github.com/stretchr/testify/pull/1389](https://github.com/stretchr/testify/pull/1389) - [@​davidjb](https://github.com/davidjb) made their first contribution in [https://github.com/stretchr/testify/pull/1349](https://github.com/stretchr/testify/pull/1349) - [@​LandonTClipp](https://github.com/LandonTClipp) made their first contribution in [https://github.com/stretchr/testify/pull/1346](https://github.com/stretchr/testify/pull/1346) - [@​alexandear](https://github.com/alexandear) made their first contribution in [https://github.com/stretchr/testify/pull/1410](https://github.com/stretchr/testify/pull/1410) - [@​lesichkovm](https://github.com/lesichkovm) made their first contribution in [https://github.com/stretchr/testify/pull/1320](https://github.com/stretchr/testify/pull/1320) - [@​dolmen](https://github.com/dolmen) made their first contribution in [https://github.com/stretchr/testify/pull/1406](https://github.com/stretchr/testify/pull/1406) - [@​hikyaru-suzuki](https://github.com/hikyaru-suzuki) made their first contribution in [https://github.com/stretchr/testify/pull/1360](https://github.com/stretchr/testify/pull/1360) - [@​ossan-dev](https://github.com/ossan-dev) made their first contribution in [https://github.com/stretchr/testify/pull/1428](https://github.com/stretchr/testify/pull/1428) - [@​aud10slave](https://github.com/aud10slave) made their first contribution in [https://github.com/stretchr/testify/pull/631](https://github.com/stretchr/testify/pull/631) - [@​tscales](https://github.com/tscales) made their first contribution in [https://github.com/stretchr/testify/pull/1464](https://github.com/stretchr/testify/pull/1464) - [@​czeslavo](https://github.com/czeslavo) made their first contribution in [https://github.com/stretchr/testify/pull/1395](https://github.com/stretchr/testify/pull/1395) - [@​hidu](https://github.com/hidu) made their first contribution in [https://github.com/stretchr/testify/pull/1484](https://github.com/stretchr/testify/pull/1484) - [@​zrbecker](https://github.com/zrbecker) made their first contribution in [https://github.com/stretchr/testify/pull/1473](https://github.com/stretchr/testify/pull/1473) - [@​kevinburkesegment](https://github.com/kevinburkesegment) made their first contribution in [https://github.com/stretchr/testify/pull/1489](https://github.com/stretchr/testify/pull/1489) - [@​linusbarth](https://github.com/linusbarth) made their first contribution in [https://github.com/stretchr/testify/pull/1471](https://github.com/stretchr/testify/pull/1471) - [@​jedevc](https://github.com/jedevc) made their first contribution in [https://github.com/stretchr/testify/pull/1306](https://github.com/stretchr/testify/pull/1306) - [@​craig65535](https://github.com/craig65535) made their first contribution in [https://github.com/stretchr/testify/pull/1435](https://github.com/stretchr/testify/pull/1435) - [@​arjunmahishi](https://github.com/arjunmahishi) made their first contribution in [https://github.com/stretchr/testify/pull/1531](https://github.com/stretchr/testify/pull/1531) - [@​ianrose14](https://github.com/ianrose14) made their first contribution in [https://github.com/stretchr/testify/pull/1331](https://github.com/stretchr/testify/pull/1331) - [@​hendrywiranto](https://github.com/hendrywiranto) made their first contribution in [https://github.com/stretchr/testify/pull/1545](https://github.com/stretchr/testify/pull/1545) - [@​Lucaber](https://github.com/Lucaber) made their first contribution in [https://github.com/stretchr/testify/pull/1517](https://github.com/stretchr/testify/pull/1517) - [@​guettli](https://github.com/guettli) made their first contribution in [https://github.com/stretchr/testify/pull/1248](https://github.com/stretchr/testify/pull/1248) - [@​ccoVeille](https://github.com/ccoVeille) made their first contribution in [https://github.com/stretchr/testify/pull/1247](https://github.com/stretchr/testify/pull/1247) - [@​hslatman](https://github.com/hslatman) made their first contribution in [https://github.com/stretchr/testify/pull/1385](https://github.com/stretchr/testify/pull/1385) - [@​bogdandrutu](https://github.com/bogdandrutu) made their first contribution in [https://github.com/stretchr/testify/pull/1339](https://github.com/stretchr/testify/pull/1339) **Full Changelog**: stretchr/testify@v1.8.4...v1.9.0 </details> <details> <summary>buildkite-plugins/test-collector-buildkite-plugin (test-collector)</summary> ### [`v1.10.1`](https://github.com/buildkite-plugins/test-collector-buildkite-plugin/releases/tag/v1.10.1): (🍪 Yummy) [Compare Source](https://github.com/buildkite-plugins/test-collector-buildkite-plugin/compare/v1.10.0...v1.10.1) #### Fixes - Fix artifact download example ([#​62](https://github.com/buildkite-plugins/test-collector-buildkite-plugin/issues/62)) [@​tjschuck](https://github.com/tjschuck) - Add job label to message and amend annotation ([#​66](https://github.com/buildkite-plugins/test-collector-buildkite-plugin/issues/66)) [@​jtszalay](https://github.com/jtszalay) - Surround env vars in quotes to support parentheses ([#​68](https://github.com/buildkite-plugins/test-collector-buildkite-plugin/issues/68)) [@​benvernier-sc](https://github.com/benvernier-sc) - Use process substitution to hide auth token ([#​64](https://github.com/buildkite-plugins/test-collector-buildkite-plugin/issues/64)) [@​tomowatt](https://github.com/tomowatt) #### Upgrading To upgrade, update your `pipeline.yml` files: ```diff steps: - command: test.sh plugins: - test-collector#v1.10.0: + test-collector#v1.10.1: files: "test/junit-*.xml" format: "junit" ``` </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC), 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, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/eddiebeazer/unreal-ci). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIyMC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Summary
In
assert.EventuallyWithT
,assert.CollectT
is used in a concurrent context which may lead to races as explained in #1391.Changes
We create a
CollectT
per every condition tick and send its errors over a channel. On the reader side of the channel, we cache thelastTickErrs
so they can be copied over to t once the timeout is fired. The only access tolastTickErrs
happens in the reader case and the timeout case which both run in the same goroutine.Motivation
We cannot use
EventuallyWithT
family of functions/methods in our codebase due to data races it causes.Related issues
Closes #1391.