fix(deps): update module github.com/stretchr/testify to v1.11.1 #79

Merged
Renovate-Clanker merged 1 commits from renovate/github.com-stretchr-testify-1.x into main 2026-01-27 18:19:53 +07:00
Collaborator

This PR contains the following updates:

Package Change Age Confidence
github.com/stretchr/testify v1.8.1v1.11.1 age confidence

Release Notes

stretchr/testify (github.com/stretchr/testify)

v1.11.1

Compare Source

This release fixes #​1785 introduced in v1.11.0 where expected argument values implementing the stringer interface (String() string) with a method which mutates their value, when passed to mock.Mock.On (m.On("Method", <expected>).Return()) or actual argument values passed to mock.Mock.Called may no longer match one another where they previously did match. The behaviour prior to v1.11.0 where the stringer is always called is restored. Future testify releases may not call the stringer method at all in this case.

What's Changed

Full Changelog: https://github.com/stretchr/testify/compare/v1.11.0...v1.11.1

v1.11.0

Compare Source

What's Changed

Functional Changes

v1.11.0 Includes a number of performance improvements.

Fixes
Documentation, Build & CI

New Contributors

Full Changelog: https://github.com/stretchr/testify/compare/v1.10.0...v1.11.0

v1.10.0

Compare Source

What's Changed

Functional Changes
Fixes
Documentation, Build & CI

New Contributors

Full Changelog: https://github.com/stretchr/testify/compare/v1.9.0...v1.10.0

v1.9.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0

v1.8.4

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/stretchr/testify/compare/v1.8.3...v1.8.4

v1.8.3

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/stretchr/testify/compare/v1.8.2...v1.8.3

v1.8.2

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/stretchr/testify/compare/v1.8.1...v1.8.2


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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [github.com/stretchr/testify](https://github.com/stretchr/testify) | `v1.8.1` → `v1.11.1` | ![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fstretchr%2ftestify/v1.11.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fstretchr%2ftestify/v1.8.1/v1.11.1?slim=true) | --- ### Release Notes <details> <summary>stretchr/testify (github.com/stretchr/testify)</summary> ### [`v1.11.1`](https://github.com/stretchr/testify/releases/tag/v1.11.1) [Compare Source](https://github.com/stretchr/testify/compare/v1.11.0...v1.11.1) This release fixes [#&#8203;1785](https://github.com/stretchr/testify/issues/1785) introduced in v1.11.0 where expected argument values implementing the stringer interface (`String() string`) with a method which mutates their value, when passed to mock.Mock.On (`m.On("Method", <expected>).Return()`) or actual argument values passed to mock.Mock.Called may no longer match one another where they previously did match. The behaviour prior to v1.11.0 where the stringer is always called is restored. Future testify releases may not call the stringer method at all in this case. #### What's Changed - Backport [#&#8203;1786](https://github.com/stretchr/testify/issues/1786) to release/1.11: mock: revert to pre-v1.11.0 argument matching behavior for mutating stringers by [@&#8203;brackendawson](https://github.com/brackendawson) in [#&#8203;1788](https://github.com/stretchr/testify/pull/1788) **Full Changelog**: <https://github.com/stretchr/testify/compare/v1.11.0...v1.11.1> ### [`v1.11.0`](https://github.com/stretchr/testify/releases/tag/v1.11.0) [Compare Source](https://github.com/stretchr/testify/compare/v1.10.0...v1.11.0) #### What's Changed ##### Functional Changes v1.11.0 Includes a number of performance improvements. - Call stack perf change for CallerInfo by [@&#8203;mikeauclair](https://github.com/mikeauclair) in [#&#8203;1614](https://github.com/stretchr/testify/pull/1614) - Lazily render mock diff output on successful match by [@&#8203;mikeauclair](https://github.com/mikeauclair) in [#&#8203;1615](https://github.com/stretchr/testify/pull/1615) - assert: check early in Eventually, EventuallyWithT, and Never by [@&#8203;cszczepaniak](https://github.com/cszczepaniak) in [#&#8203;1427](https://github.com/stretchr/testify/pull/1427) - assert: add IsNotType by [@&#8203;bartventer](https://github.com/bartventer) in [#&#8203;1730](https://github.com/stretchr/testify/pull/1730) - assert.JSONEq: shortcut if same strings by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1754](https://github.com/stretchr/testify/pull/1754) - assert.YAMLEq: shortcut if same strings by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1755](https://github.com/stretchr/testify/pull/1755) - assert: faster and simpler isEmpty using reflect.Value.IsZero by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1761](https://github.com/stretchr/testify/pull/1761) - suite: faster methods filtering (internal refactor) by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1758](https://github.com/stretchr/testify/pull/1758) ##### Fixes - assert.ErrorAs: log target type by [@&#8203;craig65535](https://github.com/craig65535) in [#&#8203;1345](https://github.com/stretchr/testify/pull/1345) - Fix failure message formatting for Positive and Negative asserts in [#&#8203;1062](https://github.com/stretchr/testify/pull/1062) - Improve ErrorIs message when error is nil but an error was expected by [@&#8203;tsioftas](https://github.com/tsioftas) in [#&#8203;1681](https://github.com/stretchr/testify/pull/1681) - fix Subset/NotSubset when calling with mixed input types by [@&#8203;siliconbrain](https://github.com/siliconbrain) in [#&#8203;1729](https://github.com/stretchr/testify/pull/1729) - Improve ErrorAs failure message when error is nil by [@&#8203;ccoVeille](https://github.com/ccoVeille) in [#&#8203;1734](https://github.com/stretchr/testify/pull/1734) - mock.AssertNumberOfCalls: improve error msg by [@&#8203;3scalation](https://github.com/3scalation) in [#&#8203;1743](https://github.com/stretchr/testify/pull/1743) ##### Documentation, Build & CI - docs: Fix typo in README by [@&#8203;alexandear](https://github.com/alexandear) in [#&#8203;1688](https://github.com/stretchr/testify/pull/1688) - Replace deprecated io/ioutil with io and os by [@&#8203;alexandear](https://github.com/alexandear) in [#&#8203;1684](https://github.com/stretchr/testify/pull/1684) - Document consequences of calling t.FailNow() by [@&#8203;greg0ire](https://github.com/greg0ire) in [#&#8203;1710](https://github.com/stretchr/testify/pull/1710) - chore: update docs for Unset [#&#8203;1621](https://github.com/stretchr/testify/issues/1621) by [@&#8203;techfg](https://github.com/techfg) in [#&#8203;1709](https://github.com/stretchr/testify/pull/1709) - README: apply gofmt to examples by [@&#8203;alexandear](https://github.com/alexandear) in [#&#8203;1687](https://github.com/stretchr/testify/pull/1687) - refactor: use %q and %T to simplify fmt.Sprintf by [@&#8203;alexandear](https://github.com/alexandear) in [#&#8203;1674](https://github.com/stretchr/testify/pull/1674) - Propose Christophe Colombier (ccoVeille) as approver by [@&#8203;brackendawson](https://github.com/brackendawson) in [#&#8203;1716](https://github.com/stretchr/testify/pull/1716) - Update documentation for the Error function in assert or require package by [@&#8203;architagr](https://github.com/architagr) in [#&#8203;1675](https://github.com/stretchr/testify/pull/1675) - assert: remove deprecated build constraints by [@&#8203;alexandear](https://github.com/alexandear) in [#&#8203;1671](https://github.com/stretchr/testify/pull/1671) - assert: apply gofumpt to internal test suite by [@&#8203;ccoVeille](https://github.com/ccoVeille) in [#&#8203;1739](https://github.com/stretchr/testify/pull/1739) - CI: fix shebang in .ci.\*.sh scripts by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1746](https://github.com/stretchr/testify/pull/1746) - assert,require: enable parallel testing on (almost) all top tests by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1747](https://github.com/stretchr/testify/pull/1747) - suite.Passed: add one more status test report by [@&#8203;Ararsa-Derese](https://github.com/Ararsa-Derese) in [#&#8203;1706](https://github.com/stretchr/testify/pull/1706) - Add Helper() method in internal mocks and assert.CollectT by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1423](https://github.com/stretchr/testify/pull/1423) - assert.Same/NotSame: improve usage of Sprintf by [@&#8203;ccoVeille](https://github.com/ccoVeille) in [#&#8203;1742](https://github.com/stretchr/testify/pull/1742) - mock: enable parallel testing on internal testsuite by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1756](https://github.com/stretchr/testify/pull/1756) - suite: cleanup use of 'testing' internals at runtime by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1751](https://github.com/stretchr/testify/pull/1751) - assert: check test failure message for Empty and NotEmpty by [@&#8203;ccoVeille](https://github.com/ccoVeille) in [#&#8203;1745](https://github.com/stretchr/testify/pull/1745) - deps: fix dependency cycle with objx (again) by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1567](https://github.com/stretchr/testify/pull/1567) - assert.Empty: comprehensive doc of "Empty"-ness rules by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1753](https://github.com/stretchr/testify/pull/1753) - doc: improve godoc of top level 'testify' package by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1760](https://github.com/stretchr/testify/pull/1760) - assert.ErrorAs: simplify retrieving the type name by [@&#8203;ccoVeille](https://github.com/ccoVeille) in [#&#8203;1740](https://github.com/stretchr/testify/pull/1740) - assert.EqualValues: improve test coverage to 100% by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1763](https://github.com/stretchr/testify/pull/1763) - suite.Run: simplify running of Setup/TeardownSuite by [@&#8203;renzoarreaza](https://github.com/renzoarreaza) in [#&#8203;1769](https://github.com/stretchr/testify/pull/1769) - assert.CallerInfo: micro optimization by using LastIndexByte by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1767](https://github.com/stretchr/testify/pull/1767) - assert.CallerInfo: micro cleanup by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1768](https://github.com/stretchr/testify/pull/1768) - assert: refactor Test*FileExists and Test*DirExists tests to enable parallel testing by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1766](https://github.com/stretchr/testify/pull/1766) - suite.Run: refactor handling of stats for improved readability by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1764](https://github.com/stretchr/testify/pull/1764) - tests: improve captureTestingT helper by [@&#8203;ccoVeille](https://github.com/ccoVeille) in [#&#8203;1741](https://github.com/stretchr/testify/pull/1741) - build(deps): bump actions/checkout from 4 to 5 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;1778](https://github.com/stretchr/testify/pull/1778) #### New Contributors - [@&#8203;greg0ire](https://github.com/greg0ire) made their first contribution in [#&#8203;1710](https://github.com/stretchr/testify/pull/1710) - [@&#8203;techfg](https://github.com/techfg) made their first contribution in [#&#8203;1709](https://github.com/stretchr/testify/pull/1709) - [@&#8203;mikeauclair](https://github.com/mikeauclair) made their first contribution in [#&#8203;1614](https://github.com/stretchr/testify/pull/1614) - [@&#8203;cszczepaniak](https://github.com/cszczepaniak) made their first contribution in [#&#8203;1427](https://github.com/stretchr/testify/pull/1427) - [@&#8203;architagr](https://github.com/architagr) made their first contribution in [#&#8203;1675](https://github.com/stretchr/testify/pull/1675) - [@&#8203;tsioftas](https://github.com/tsioftas) made their first contribution in [#&#8203;1681](https://github.com/stretchr/testify/pull/1681) - [@&#8203;siliconbrain](https://github.com/siliconbrain) made their first contribution in [#&#8203;1729](https://github.com/stretchr/testify/pull/1729) - [@&#8203;bartventer](https://github.com/bartventer) made their first contribution in [#&#8203;1730](https://github.com/stretchr/testify/pull/1730) - [@&#8203;Ararsa-Derese](https://github.com/Ararsa-Derese) made their first contribution in [#&#8203;1706](https://github.com/stretchr/testify/pull/1706) - [@&#8203;renzoarreaza](https://github.com/renzoarreaza) made their first contribution in [#&#8203;1769](https://github.com/stretchr/testify/pull/1769) - [@&#8203;3scalation](https://github.com/3scalation) made their first contribution in [#&#8203;1743](https://github.com/stretchr/testify/pull/1743) **Full Changelog**: <https://github.com/stretchr/testify/compare/v1.10.0...v1.11.0> ### [`v1.10.0`](https://github.com/stretchr/testify/releases/tag/v1.10.0) [Compare Source](https://github.com/stretchr/testify/compare/v1.9.0...v1.10.0) #### What's Changed ##### Functional Changes - Add PanicAssertionFunc by [@&#8203;fahimbagar](https://github.com/fahimbagar) in [#&#8203;1337](https://github.com/stretchr/testify/pull/1337) - assert: deprecate CompareType by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1566](https://github.com/stretchr/testify/pull/1566) - assert: make YAML dependency pluggable via build tags by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1579](https://github.com/stretchr/testify/pull/1579) - assert: new assertion NotElementsMatch by [@&#8203;hendrywiranto](https://github.com/hendrywiranto) in [#&#8203;1600](https://github.com/stretchr/testify/pull/1600) - mock: in order mock calls by [@&#8203;ReyOrtiz](https://github.com/ReyOrtiz) in [#&#8203;1637](https://github.com/stretchr/testify/pull/1637) - Add assertion for NotErrorAs by [@&#8203;palsivertsen](https://github.com/palsivertsen) in [#&#8203;1129](https://github.com/stretchr/testify/pull/1129) - Record Return Arguments of a Call by [@&#8203;jayd3e](https://github.com/jayd3e) in [#&#8203;1636](https://github.com/stretchr/testify/pull/1636) - assert.EqualExportedValues: accepts everything by [@&#8203;redachl](https://github.com/redachl) in [#&#8203;1586](https://github.com/stretchr/testify/pull/1586) ##### Fixes - assert: make tHelper a type alias by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1562](https://github.com/stretchr/testify/pull/1562) - Do not get argument again unnecessarily in Arguments.Error() by [@&#8203;TomWright](https://github.com/TomWright) in [#&#8203;820](https://github.com/stretchr/testify/pull/820) - Fix time.Time compare by [@&#8203;myxo](https://github.com/myxo) in [#&#8203;1582](https://github.com/stretchr/testify/pull/1582) - assert.Regexp: handle \[]byte array properly by [@&#8203;kevinburkesegment](https://github.com/kevinburkesegment) in [#&#8203;1587](https://github.com/stretchr/testify/pull/1587) - assert: collect.FailNow() should not panic by [@&#8203;marshall-lee](https://github.com/marshall-lee) in [#&#8203;1481](https://github.com/stretchr/testify/pull/1481) - mock: simplify implementation of FunctionalOptions by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1571](https://github.com/stretchr/testify/pull/1571) - mock: caller information for unexpected method call by [@&#8203;spirin](https://github.com/spirin) in [#&#8203;1644](https://github.com/stretchr/testify/pull/1644) - suite: fix test failures by [@&#8203;stevenh](https://github.com/stevenh) in [#&#8203;1421](https://github.com/stretchr/testify/pull/1421) - Fix issue [#&#8203;1662](https://github.com/stretchr/testify/issues/1662) (comparing infs should fail) by [@&#8203;ybrustin](https://github.com/ybrustin) in [#&#8203;1663](https://github.com/stretchr/testify/pull/1663) - NotSame should fail if args are not pointers [#&#8203;1661](https://github.com/stretchr/testify/issues/1661) by [@&#8203;sikehish](https://github.com/sikehish) in [#&#8203;1664](https://github.com/stretchr/testify/pull/1664) - Increase timeouts in Test\_Mock\_Called\_blocks to reduce flakiness in CI by [@&#8203;sikehish](https://github.com/sikehish) in [#&#8203;1667](https://github.com/stretchr/testify/pull/1667) - fix: compare functional option names for indirect calls by [@&#8203;arjun-1](https://github.com/arjun-1) in [#&#8203;1626](https://github.com/stretchr/testify/pull/1626) ##### Documentation, Build & CI - .gitignore: ignore "go test -c" binaries by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1565](https://github.com/stretchr/testify/pull/1565) - mock: improve doc by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1570](https://github.com/stretchr/testify/pull/1570) - mock: fix FunctionalOptions docs by [@&#8203;snirye](https://github.com/snirye) in [#&#8203;1433](https://github.com/stretchr/testify/pull/1433) - README: link out to the excellent testifylint by [@&#8203;brackendawson](https://github.com/brackendawson) in [#&#8203;1568](https://github.com/stretchr/testify/pull/1568) - assert: fix typo in comment by [@&#8203;JohnEndson](https://github.com/JohnEndson) in [#&#8203;1580](https://github.com/stretchr/testify/pull/1580) - Correct the EventuallyWithT and EventuallyWithTf example by [@&#8203;JonCrowther](https://github.com/JonCrowther) in [#&#8203;1588](https://github.com/stretchr/testify/pull/1588) - CI: bump softprops/action-gh-release from 1 to 2 by [@&#8203;dependabot](https://github.com/dependabot) in [#&#8203;1575](https://github.com/stretchr/testify/pull/1575) - mock: document more alternatives to deprecated AnythingOfTypeArgument by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1569](https://github.com/stretchr/testify/pull/1569) - assert: Correctly document EqualValues behavior by [@&#8203;brackendawson](https://github.com/brackendawson) in [#&#8203;1593](https://github.com/stretchr/testify/pull/1593) - fix: grammar in godoc by [@&#8203;miparnisari](https://github.com/miparnisari) in [#&#8203;1607](https://github.com/stretchr/testify/pull/1607) - .github/workflows: Run tests for Go 1.22 by [@&#8203;HaraldNordgren](https://github.com/HaraldNordgren) in [#&#8203;1629](https://github.com/stretchr/testify/pull/1629) - Document suite's lack of support for t.Parallel by [@&#8203;brackendawson](https://github.com/brackendawson) in [#&#8203;1645](https://github.com/stretchr/testify/pull/1645) - assert: fix typos in comments by [@&#8203;alexandear](https://github.com/alexandear) in [#&#8203;1650](https://github.com/stretchr/testify/pull/1650) - mock: fix doc comment for NotBefore by [@&#8203;alexandear](https://github.com/alexandear) in [#&#8203;1651](https://github.com/stretchr/testify/pull/1651) - Generate better comments for require package by [@&#8203;Neokil](https://github.com/Neokil) in [#&#8203;1610](https://github.com/stretchr/testify/pull/1610) - README: replace Testify V2 notice with [@&#8203;dolmen](https://github.com/dolmen)'s V2 manifesto by [@&#8203;hendrywiranto](https://github.com/hendrywiranto) in [#&#8203;1518](https://github.com/stretchr/testify/pull/1518) #### New Contributors - [@&#8203;fahimbagar](https://github.com/fahimbagar) made their first contribution in [#&#8203;1337](https://github.com/stretchr/testify/pull/1337) - [@&#8203;TomWright](https://github.com/TomWright) made their first contribution in [#&#8203;820](https://github.com/stretchr/testify/pull/820) - [@&#8203;snirye](https://github.com/snirye) made their first contribution in [#&#8203;1433](https://github.com/stretchr/testify/pull/1433) - [@&#8203;myxo](https://github.com/myxo) made their first contribution in [#&#8203;1582](https://github.com/stretchr/testify/pull/1582) - [@&#8203;JohnEndson](https://github.com/JohnEndson) made their first contribution in [#&#8203;1580](https://github.com/stretchr/testify/pull/1580) - [@&#8203;JonCrowther](https://github.com/JonCrowther) made their first contribution in [#&#8203;1588](https://github.com/stretchr/testify/pull/1588) - [@&#8203;miparnisari](https://github.com/miparnisari) made their first contribution in [#&#8203;1607](https://github.com/stretchr/testify/pull/1607) - [@&#8203;marshall-lee](https://github.com/marshall-lee) made their first contribution in [#&#8203;1481](https://github.com/stretchr/testify/pull/1481) - [@&#8203;spirin](https://github.com/spirin) made their first contribution in [#&#8203;1644](https://github.com/stretchr/testify/pull/1644) - [@&#8203;ReyOrtiz](https://github.com/ReyOrtiz) made their first contribution in [#&#8203;1637](https://github.com/stretchr/testify/pull/1637) - [@&#8203;stevenh](https://github.com/stevenh) made their first contribution in [#&#8203;1421](https://github.com/stretchr/testify/pull/1421) - [@&#8203;jayd3e](https://github.com/jayd3e) made their first contribution in [#&#8203;1636](https://github.com/stretchr/testify/pull/1636) - [@&#8203;Neokil](https://github.com/Neokil) made their first contribution in [#&#8203;1610](https://github.com/stretchr/testify/pull/1610) - [@&#8203;redachl](https://github.com/redachl) made their first contribution in [#&#8203;1586](https://github.com/stretchr/testify/pull/1586) - [@&#8203;ybrustin](https://github.com/ybrustin) made their first contribution in [#&#8203;1663](https://github.com/stretchr/testify/pull/1663) - [@&#8203;sikehish](https://github.com/sikehish) made their first contribution in [#&#8203;1664](https://github.com/stretchr/testify/pull/1664) - [@&#8203;arjun-1](https://github.com/arjun-1) made their first contribution in [#&#8203;1626](https://github.com/stretchr/testify/pull/1626) **Full Changelog**: <https://github.com/stretchr/testify/compare/v1.9.0...v1.10.0> ### [`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 [@&#8203;SuperQ](https://github.com/SuperQ) in [#&#8203;1394](https://github.com/stretchr/testify/pull/1394) - Document that require is not safe to call in created goroutines by [@&#8203;programmer04](https://github.com/programmer04) in [#&#8203;1392](https://github.com/stretchr/testify/pull/1392) - Remove myself from MAINTAINERS.md by [@&#8203;mvdkleijn](https://github.com/mvdkleijn) in [#&#8203;1367](https://github.com/stretchr/testify/pull/1367) - Correct spelling/grammar by [@&#8203;echarrod](https://github.com/echarrod) in [#&#8203;1389](https://github.com/stretchr/testify/pull/1389) - docs: Update URLs in README by [@&#8203;davidjb](https://github.com/davidjb) in [#&#8203;1349](https://github.com/stretchr/testify/pull/1349) - Update mockery link to Github Pages in README by [@&#8203;LandonTClipp](https://github.com/LandonTClipp) in [#&#8203;1346](https://github.com/stretchr/testify/pull/1346) - docs: Fix typos in tests and comments by [@&#8203;alexandear](https://github.com/alexandear) in [#&#8203;1410](https://github.com/stretchr/testify/pull/1410) - CI: tests from go1.17 by [@&#8203;SuperQ](https://github.com/SuperQ) in [#&#8203;1409](https://github.com/stretchr/testify/pull/1409) - Fix adding ? when no values passed by [@&#8203;lesichkovm](https://github.com/lesichkovm) in [#&#8203;1320](https://github.com/stretchr/testify/pull/1320) - codegen: use standard header for generated files by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1406](https://github.com/stretchr/testify/pull/1406) - mock: AssertExpectations log reason only on failure by [@&#8203;hikyaru-suzuki](https://github.com/hikyaru-suzuki) in [#&#8203;1360](https://github.com/stretchr/testify/pull/1360) - assert: fix flaky TestNeverTrue by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1417](https://github.com/stretchr/testify/pull/1417) - README: fix typos "set up" vs "setup" by [@&#8203;ossan-dev](https://github.com/ossan-dev) in [#&#8203;1428](https://github.com/stretchr/testify/pull/1428) - mock: move regexp compilation outside of `Called` by [@&#8203;aud10slave](https://github.com/aud10slave) in [#&#8203;631](https://github.com/stretchr/testify/pull/631) - assert: refactor internal func getLen() by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1445](https://github.com/stretchr/testify/pull/1445) - mock: deprecate type AnythingOfTypeArgument ([#&#8203;1434](https://github.com/stretchr/testify/issues/1434)) by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1441](https://github.com/stretchr/testify/pull/1441) - Remove no longer needed assert.canConvert by [@&#8203;alexandear](https://github.com/alexandear) in [#&#8203;1470](https://github.com/stretchr/testify/pull/1470) - assert: ObjectsAreEqual: use time.Equal for time.Time types by [@&#8203;tscales](https://github.com/tscales) in [#&#8203;1464](https://github.com/stretchr/testify/pull/1464) - Bump actions/checkout from 3 to 4 by [@&#8203;dependabot](https://github.com/dependabot) in [#&#8203;1466](https://github.com/stretchr/testify/pull/1466) - Bump actions/setup-go from 3.2.0 to 4.1.0 by [@&#8203;dependabot](https://github.com/dependabot) in [#&#8203;1451](https://github.com/stretchr/testify/pull/1451) - fix: make EventuallyWithT concurrency safe by [@&#8203;czeslavo](https://github.com/czeslavo) in [#&#8203;1395](https://github.com/stretchr/testify/pull/1395) - assert: fix httpCode and HTTPBody occur panic when http.Handler read Body by [@&#8203;hidu](https://github.com/hidu) in [#&#8203;1484](https://github.com/stretchr/testify/pull/1484) - assert.EqualExportedValues: fix handling of arrays by [@&#8203;zrbecker](https://github.com/zrbecker) in [#&#8203;1473](https://github.com/stretchr/testify/pull/1473) - .github: use latest Go versions by [@&#8203;kevinburkesegment](https://github.com/kevinburkesegment) in [#&#8203;1489](https://github.com/stretchr/testify/pull/1489) - assert: Deprecate EqualExportedValues by [@&#8203;HaraldNordgren](https://github.com/HaraldNordgren) in [#&#8203;1488](https://github.com/stretchr/testify/pull/1488) - suite: refactor test assertions by [@&#8203;alexandear](https://github.com/alexandear) in [#&#8203;1474](https://github.com/stretchr/testify/pull/1474) - suite: fix SetupSubTest and TearDownSubTest execution order by [@&#8203;linusbarth](https://github.com/linusbarth) in [#&#8203;1471](https://github.com/stretchr/testify/pull/1471) - docs: Fix deprecation comments for http package by [@&#8203;alexandear](https://github.com/alexandear) in [#&#8203;1335](https://github.com/stretchr/testify/pull/1335) - Add map support doc comments to Subset and NotSubset by [@&#8203;jedevc](https://github.com/jedevc) in [#&#8203;1306](https://github.com/stretchr/testify/pull/1306) - TestErrorIs/TestNotErrorIs: check error message contents by [@&#8203;craig65535](https://github.com/craig65535) in [#&#8203;1435](https://github.com/stretchr/testify/pull/1435) - suite: fix subtest names (fix [#&#8203;1501](https://github.com/stretchr/testify/issues/1501)) by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1504](https://github.com/stretchr/testify/pull/1504) - assert: improve unsafe.Pointer tests by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1505](https://github.com/stretchr/testify/pull/1505) - assert: simplify isNil implementation by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1506](https://github.com/stretchr/testify/pull/1506) - assert.InEpsilonSlice: fix expected/actual order and other improvements by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1483](https://github.com/stretchr/testify/pull/1483) - Fix dependency cycle with objx [#&#8203;1292](https://github.com/stretchr/testify/issues/1292) by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1453](https://github.com/stretchr/testify/pull/1453) - mock: refactor TestIsArgsEqual by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1444](https://github.com/stretchr/testify/pull/1444) - mock: optimize argument matching checks by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1416](https://github.com/stretchr/testify/pull/1416) - assert: fix TestEventuallyTimeout by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1412](https://github.com/stretchr/testify/pull/1412) - CI: add go 1.21 in GitHub Actions by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1450](https://github.com/stretchr/testify/pull/1450) - suite: fix recoverAndFailOnPanic to report test failure at the right location by [@&#8203;dolmen](https://github.com/dolmen) in [#&#8203;1502](https://github.com/stretchr/testify/pull/1502) - Update maintainers by [@&#8203;brackendawson](https://github.com/brackendawson) in [#&#8203;1533](https://github.com/stretchr/testify/pull/1533) - assert: Fix EqualValues to handle overflow/underflow by [@&#8203;arjunmahishi](https://github.com/arjunmahishi) in [#&#8203;1531](https://github.com/stretchr/testify/pull/1531) - assert: better formatting for Len() error by [@&#8203;kevinburkesegment](https://github.com/kevinburkesegment) in [#&#8203;1485](https://github.com/stretchr/testify/pull/1485) - Ensure AssertExpectations does not fail in skipped tests by [@&#8203;ianrose14](https://github.com/ianrose14) in [#&#8203;1331](https://github.com/stretchr/testify/pull/1331) - suite: fix deadlock in suite.Require()/Assert() by [@&#8203;arjunmahishi](https://github.com/arjunmahishi) in [#&#8203;1535](https://github.com/stretchr/testify/pull/1535) - Revert "assert: ObjectsAreEqual: use time.Equal for time.Time type" by [@&#8203;brackendawson](https://github.com/brackendawson) in [#&#8203;1537](https://github.com/stretchr/testify/pull/1537) - \[chore] Add issue templates by [@&#8203;arjunmahishi](https://github.com/arjunmahishi) in [#&#8203;1538](https://github.com/stretchr/testify/pull/1538) - Update the build status badge by [@&#8203;brackendawson](https://github.com/brackendawson) in [#&#8203;1540](https://github.com/stretchr/testify/pull/1540) - Update Github workflows setup-go to V5 by [@&#8203;hendrywiranto](https://github.com/hendrywiranto) in [#&#8203;1545](https://github.com/stretchr/testify/pull/1545) - Support Pointer to Struct in EqualExportedValues by [@&#8203;Lucaber](https://github.com/Lucaber) in [#&#8203;1517](https://github.com/stretchr/testify/pull/1517) - README: drop link to gorc by [@&#8203;guettli](https://github.com/guettli) in [#&#8203;1248](https://github.com/stretchr/testify/pull/1248) - http\_assertions: honour the msgAndArgs provided with each assertion by [@&#8203;arjunmahishi](https://github.com/arjunmahishi) in [#&#8203;1548](https://github.com/stretchr/testify/pull/1548) - fix typos in comments and tests by [@&#8203;ccoVeille](https://github.com/ccoVeille) in [#&#8203;1247](https://github.com/stretchr/testify/pull/1247) - Include the auto-release notes in releases by [@&#8203;brackendawson](https://github.com/brackendawson) in [#&#8203;1550](https://github.com/stretchr/testify/pull/1550) - Add `NotImplements` and variants by [@&#8203;hslatman](https://github.com/hslatman) in [#&#8203;1385](https://github.com/stretchr/testify/pull/1385) - Add support to compare uintptr by [@&#8203;bogdandrutu](https://github.com/bogdandrutu) in [#&#8203;1339](https://github.com/stretchr/testify/pull/1339) - build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2 by [@&#8203;dependabot](https://github.com/dependabot) in [#&#8203;1552](https://github.com/stretchr/testify/pull/1552) #### New Contributors - [@&#8203;SuperQ](https://github.com/SuperQ) made their first contribution in [#&#8203;1394](https://github.com/stretchr/testify/pull/1394) - [@&#8203;programmer04](https://github.com/programmer04) made their first contribution in [#&#8203;1392](https://github.com/stretchr/testify/pull/1392) - [@&#8203;echarrod](https://github.com/echarrod) made their first contribution in [#&#8203;1389](https://github.com/stretchr/testify/pull/1389) - [@&#8203;davidjb](https://github.com/davidjb) made their first contribution in [#&#8203;1349](https://github.com/stretchr/testify/pull/1349) - [@&#8203;LandonTClipp](https://github.com/LandonTClipp) made their first contribution in [#&#8203;1346](https://github.com/stretchr/testify/pull/1346) - [@&#8203;alexandear](https://github.com/alexandear) made their first contribution in [#&#8203;1410](https://github.com/stretchr/testify/pull/1410) - [@&#8203;lesichkovm](https://github.com/lesichkovm) made their first contribution in [#&#8203;1320](https://github.com/stretchr/testify/pull/1320) - [@&#8203;dolmen](https://github.com/dolmen) made their first contribution in [#&#8203;1406](https://github.com/stretchr/testify/pull/1406) - [@&#8203;hikyaru-suzuki](https://github.com/hikyaru-suzuki) made their first contribution in [#&#8203;1360](https://github.com/stretchr/testify/pull/1360) - [@&#8203;ossan-dev](https://github.com/ossan-dev) made their first contribution in [#&#8203;1428](https://github.com/stretchr/testify/pull/1428) - [@&#8203;aud10slave](https://github.com/aud10slave) made their first contribution in [#&#8203;631](https://github.com/stretchr/testify/pull/631) - [@&#8203;tscales](https://github.com/tscales) made their first contribution in [#&#8203;1464](https://github.com/stretchr/testify/pull/1464) - [@&#8203;czeslavo](https://github.com/czeslavo) made their first contribution in [#&#8203;1395](https://github.com/stretchr/testify/pull/1395) - [@&#8203;hidu](https://github.com/hidu) made their first contribution in [#&#8203;1484](https://github.com/stretchr/testify/pull/1484) - [@&#8203;zrbecker](https://github.com/zrbecker) made their first contribution in [#&#8203;1473](https://github.com/stretchr/testify/pull/1473) - [@&#8203;kevinburkesegment](https://github.com/kevinburkesegment) made their first contribution in [#&#8203;1489](https://github.com/stretchr/testify/pull/1489) - [@&#8203;linusbarth](https://github.com/linusbarth) made their first contribution in [#&#8203;1471](https://github.com/stretchr/testify/pull/1471) - [@&#8203;jedevc](https://github.com/jedevc) made their first contribution in [#&#8203;1306](https://github.com/stretchr/testify/pull/1306) - [@&#8203;craig65535](https://github.com/craig65535) made their first contribution in [#&#8203;1435](https://github.com/stretchr/testify/pull/1435) - [@&#8203;arjunmahishi](https://github.com/arjunmahishi) made their first contribution in [#&#8203;1531](https://github.com/stretchr/testify/pull/1531) - [@&#8203;ianrose14](https://github.com/ianrose14) made their first contribution in [#&#8203;1331](https://github.com/stretchr/testify/pull/1331) - [@&#8203;hendrywiranto](https://github.com/hendrywiranto) made their first contribution in [#&#8203;1545](https://github.com/stretchr/testify/pull/1545) - [@&#8203;Lucaber](https://github.com/Lucaber) made their first contribution in [#&#8203;1517](https://github.com/stretchr/testify/pull/1517) - [@&#8203;guettli](https://github.com/guettli) made their first contribution in [#&#8203;1248](https://github.com/stretchr/testify/pull/1248) - [@&#8203;ccoVeille](https://github.com/ccoVeille) made their first contribution in [#&#8203;1247](https://github.com/stretchr/testify/pull/1247) - [@&#8203;hslatman](https://github.com/hslatman) made their first contribution in [#&#8203;1385](https://github.com/stretchr/testify/pull/1385) - [@&#8203;bogdandrutu](https://github.com/bogdandrutu) made their first contribution in [#&#8203;1339](https://github.com/stretchr/testify/pull/1339) **Full Changelog**: <https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0> ### [`v1.8.4`](https://github.com/stretchr/testify/releases/tag/v1.8.4) [Compare Source](https://github.com/stretchr/testify/compare/v1.8.3...v1.8.4) #### What's Changed - Create GitHub release when new release tag is pushed by [@&#8203;aldas](https://github.com/aldas) in [#&#8203;1354](https://github.com/stretchr/testify/pull/1354) #### New Contributors - [@&#8203;aldas](https://github.com/aldas) made their first contribution in [#&#8203;1354](https://github.com/stretchr/testify/pull/1354) **Full Changelog**: <https://github.com/stretchr/testify/compare/v1.8.3...v1.8.4> ### [`v1.8.3`](https://github.com/stretchr/testify/releases/tag/v1.8.3) [Compare Source](https://github.com/stretchr/testify/compare/v1.8.2...v1.8.3) #### What's Changed - Compare public elements of struct by [@&#8203;mchlp](https://github.com/mchlp) in [#&#8203;1309](https://github.com/stretchr/testify/pull/1309) - assert: fix error message formatting for NotContains by [@&#8203;wwade](https://github.com/wwade) in [#&#8203;1362](https://github.com/stretchr/testify/pull/1362) - allow testing for functional options by [@&#8203;nbaztec](https://github.com/nbaztec) in [#&#8203;1023](https://github.com/stretchr/testify/pull/1023) - add EventuallyWithT assertion by [@&#8203;tobikris](https://github.com/tobikris) in [#&#8203;1264](https://github.com/stretchr/testify/pull/1264) - EqualExportedValues: Handle nested pointer, slice and map fields by [@&#8203;HaraldNordgren](https://github.com/HaraldNordgren) in [#&#8203;1379](https://github.com/stretchr/testify/pull/1379) #### New Contributors - [@&#8203;mchlp](https://github.com/mchlp) made their first contribution in [#&#8203;1309](https://github.com/stretchr/testify/pull/1309) - [@&#8203;wwade](https://github.com/wwade) made their first contribution in [#&#8203;1362](https://github.com/stretchr/testify/pull/1362) - [@&#8203;nbaztec](https://github.com/nbaztec) made their first contribution in [#&#8203;1023](https://github.com/stretchr/testify/pull/1023) - [@&#8203;tobikris](https://github.com/tobikris) made their first contribution in [#&#8203;1264](https://github.com/stretchr/testify/pull/1264) **Full Changelog**: <https://github.com/stretchr/testify/compare/v1.8.2...v1.8.3> ### [`v1.8.2`](https://github.com/stretchr/testify/releases/tag/v1.8.2) [Compare Source](https://github.com/stretchr/testify/compare/v1.8.1...v1.8.2) #### What's Changed - Add opportunity to trigger setup/teardown for subtest by [@&#8203;qerdcv](https://github.com/qerdcv) in [#&#8203;1246](https://github.com/stretchr/testify/pull/1246) - fix: fix bug for check unsafe.Pointer isNil by [@&#8203;sunpe](https://github.com/sunpe) in [#&#8203;1319](https://github.com/stretchr/testify/pull/1319) - Fix Call.Unset() panic (issue [#&#8203;1236](https://github.com/stretchr/testify/issues/1236)) by [@&#8203;lisitsky](https://github.com/lisitsky) in [#&#8203;1250](https://github.com/stretchr/testify/pull/1250) - Fix `CallerInfo()` source file paths by [@&#8203;bozaro](https://github.com/bozaro) in [#&#8203;1288](https://github.com/stretchr/testify/pull/1288) - assert: Fix Subset/NotSubset when map is missing keys from the subset by [@&#8203;danielwhite](https://github.com/danielwhite) in [#&#8203;1261](https://github.com/stretchr/testify/pull/1261) #### New Contributors - [@&#8203;qerdcv](https://github.com/qerdcv) made their first contribution in [#&#8203;1246](https://github.com/stretchr/testify/pull/1246) - [@&#8203;sunpe](https://github.com/sunpe) made their first contribution in [#&#8203;1319](https://github.com/stretchr/testify/pull/1319) - [@&#8203;lisitsky](https://github.com/lisitsky) made their first contribution in [#&#8203;1250](https://github.com/stretchr/testify/pull/1250) - [@&#8203;bozaro](https://github.com/bozaro) made their first contribution in [#&#8203;1288](https://github.com/stretchr/testify/pull/1288) - [@&#8203;danielwhite](https://github.com/danielwhite) made their first contribution in [#&#8203;1261](https://github.com/stretchr/testify/pull/1261) **Full Changelog**: <https://github.com/stretchr/testify/compare/v1.8.1...v1.8.2> </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. 🔕 **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:eyJjcmVhdGVkSW5WZXIiOiI0Mi45Mi4xMyIsInVwZGF0ZWRJblZlciI6IjQyLjkyLjEzIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Renovate-Clanker added 1 commit 2026-01-27 18:19:52 +07:00
fix(deps): update module github.com/stretchr/testify to v1.11.1
SonarQube Scan / SonarQube Trigger (pull_request) Has been cancelled
SonarQube Scan / SonarQube Trigger (push) Has been cancelled
4cbee5079c
Renovate-Clanker scheduled this pull request to auto merge when all checks succeed 2026-01-27 18:19:53 +07:00
Author
Collaborator

ℹ️ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
github.com/stretchr/objx v0.5.0 -> v0.5.2
### ℹ️ Artifact update notice ##### File name: go.mod In order to perform the update(s) described in the table above, Renovate ran the `go get` command, which resulted in the following additional change(s): - 1 additional dependency was updated Details: | **Package** | **Change** | | :------------------------- | :------------------- | | `github.com/stretchr/objx` | `v0.5.0` -> `v0.5.2` |
Renovate-Clanker merged commit 1344afd1b2 into main 2026-01-27 18:19:53 +07:00
Renovate-Clanker deleted branch renovate/github.com-stretchr-testify-1.x 2026-01-27 18:19:54 +07:00
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: bagas/tunnel-please#79