Upgrade framework
This commit is contained in:
175
vendor/mockery/mockery/CHANGELOG.md
vendored
175
vendor/mockery/mockery/CHANGELOG.md
vendored
@@ -1,5 +1,178 @@
|
||||
# Change Log
|
||||
|
||||
## 1.3.6 (2022-09-07)
|
||||
* PHP 8.2 | Fix "Use of "parent" in callables is deprecated" notice #1169
|
||||
|
||||
## 1.5.1 (2022-09-07)
|
||||
|
||||
* [PHP 8.2] Various tests: explicitly declare properties #1170
|
||||
* [PHP 8.2] Fix "Use of "parent" in callables is deprecated" notice #1169
|
||||
* [PHP 8.1] Support intersection types #1164
|
||||
* Handle final `__toString` methods #1162
|
||||
|
||||
## 1.5.0 (2022-01-20)
|
||||
|
||||
* Override default call count expectations via expects() #1146
|
||||
* Mock methods with static return types #1157
|
||||
* Mock methods with mixed return type #1156
|
||||
* Mock classes with new in initializers on PHP 8.1 #1160
|
||||
* Removes redundant PHPUnitConstraint #1158
|
||||
|
||||
## 1.4.4 (2021-09-13)
|
||||
|
||||
* Fixes auto-generated return values #1144
|
||||
* Adds support for tentative types #1130
|
||||
* Fixes for PHP 8.1 Support (#1130 and #1140)
|
||||
* Add method that allows defining a set of arguments the mock should yield #1133
|
||||
* Added option to configure default matchers for objects `\Mockery::getConfiguration()->setDefaultMatcher($class, $matcherClass)` #1120
|
||||
|
||||
## 1.3.5 (2021-09-13)
|
||||
* Fix auto-generated return values with union types #1143
|
||||
* Adds support for tentative types #1130
|
||||
* Fixes for PHP 8.1 Support (#1130 and #1140)
|
||||
* Add method that allows defining a set of arguments the mock should yield #1133
|
||||
* Added option to configure default matchers for objects `\Mockery::getConfiguration()->setDefaultMatcher($class, $matcherClass)` #1120
|
||||
|
||||
## 1.4.3 (2021-02-24)
|
||||
|
||||
* Fixes calls to fetchMock before initialisation #1113
|
||||
* Allow shouldIgnoreMissing() to behave in a recursive fashion #1097
|
||||
* Custom object formatters #766 (Needs Docs)
|
||||
* Fix crash on a union type including null #1106
|
||||
|
||||
## 1.3.4 (2021-02-24)
|
||||
|
||||
* Fixes calls to fetchMock before initialisation #1113
|
||||
* Fix crash on a union type including null #1106
|
||||
|
||||
## 1.4.2 (2020-08-11)
|
||||
|
||||
* Fix array to string conversion in ConstantsPass (#1086)
|
||||
* Fixed nullable PHP 8.0 union types (#1088, #1089)
|
||||
* Fixed support for PHP 8.0 parent type (#1088, #1089)
|
||||
* Fixed PHP 8.0 mixed type support (#1088, #1089)
|
||||
* Fixed PHP 8.0 union return types (#1088, #1089)
|
||||
|
||||
## 1.4.1 (2020-07-09)
|
||||
|
||||
* Allow quick definitions to use 'at least once' expectation
|
||||
`\Mockery::getConfiguration()->getQuickDefinitions()->shouldBeCalledAtLeastOnce(true)` (#1056)
|
||||
* Added provisional support for PHP 8.0 (#1068, #1072,#1079)
|
||||
* Fix mocking methods with iterable return type without specifying a return value (#1075)
|
||||
|
||||
## 1.3.3 (2020-08-11)
|
||||
|
||||
* Fix array to string conversion in ConstantsPass (#1086)
|
||||
* Fixed nullable PHP 8.0 union types (#1088)
|
||||
* Fixed support for PHP 8.0 parent type (#1088)
|
||||
* Fixed PHP 8.0 mixed type support (#1088)
|
||||
* Fixed PHP 8.0 union return types (#1088)
|
||||
|
||||
## 1.3.2 (2020-07-09)
|
||||
|
||||
* Fix mocking with anonymous classes (#1039)
|
||||
* Fix andAnyOthers() to properly match earlier expectations (#1051)
|
||||
* Added provisional support for PHP 8.0 (#1068, #1072,#1079)
|
||||
* Fix mocking methods with iterable return type without specifying a return value (#1075)
|
||||
|
||||
## 1.4.0 (2020-05-19)
|
||||
|
||||
* Fix mocking with anonymous classes (#1039)
|
||||
* Fix andAnyOthers() to properly match earlier expectations (#1051)
|
||||
* Drops support for PHP < 7.3 and PHPUnit < 8 (#1059)
|
||||
|
||||
## 1.3.1 (2019-12-26)
|
||||
|
||||
* Revert improved exception debugging due to BC breaks (#1032)
|
||||
|
||||
## 1.3.0 (2019-11-24)
|
||||
|
||||
* Added capture `Mockery::capture` convenience matcher (#1020)
|
||||
* Added `andReturnArg` to echo back an argument passed to a an expectation (#992)
|
||||
* Improved exception debugging (#1000)
|
||||
* Fixed `andSet` to not reuse properties between mock objects (#1012)
|
||||
|
||||
## 1.2.4 (2019-09-30)
|
||||
|
||||
* Fix a bug introduced with previous release, for empty method definition lists (#1009)
|
||||
|
||||
## 1.2.3 (2019-08-07)
|
||||
|
||||
* Allow mocking classes that have allows and expects methods (#868)
|
||||
* Allow passing thru __call method in all mock types (experimental) (#969)
|
||||
* Add support for `!` to blacklist methods (#959)
|
||||
* Added `withSomeOfArgs` to partial match a list of args (#967)
|
||||
* Fix chained demeter calls with type hint (#956)
|
||||
|
||||
## 1.2.2 (2019-02-13)
|
||||
|
||||
* Fix a BC breaking change for PHP 5.6/PHPUnit 5.7.27 (#947)
|
||||
|
||||
## 1.2.1 (2019-02-07)
|
||||
|
||||
* Support for PHPUnit 8 (#942)
|
||||
* Allow mocking static methods called on instance (#938)
|
||||
|
||||
## 1.2.0 (2018-10-02)
|
||||
|
||||
* Starts counting default expectations towards count (#910)
|
||||
* Adds workaround for some HHVM return types (#909)
|
||||
* Adds PhpStorm metadata support for autocomplete etc (#904)
|
||||
* Further attempts to support multiple PHPUnit versions (#903)
|
||||
* Allows setting constructor expectations on instance mocks (#900)
|
||||
* Adds workaround for HHVM memoization decorator (#893)
|
||||
* Adds experimental support for callable spys (#712)
|
||||
|
||||
## 1.1.0 (2018-05-08)
|
||||
|
||||
* Allows use of string method names in allows and expects (#794)
|
||||
* Finalises allows and expects syntax in API (#799)
|
||||
* Search for handlers in a case instensitive way (#801)
|
||||
* Deprecate allowMockingMethodsUnnecessarily (#808)
|
||||
* Fix risky tests (#769)
|
||||
* Fix namespace in TestListener (#812)
|
||||
* Fixed conflicting mock names (#813)
|
||||
* Clean elses (#819)
|
||||
* Updated protected method mocking exception message (#826)
|
||||
* Map of constants to mock (#829)
|
||||
* Simplify foreach with `in_array` function (#830)
|
||||
* Typehinted return value on Expectation#verify. (#832)
|
||||
* Fix shouldNotHaveReceived with HigherOrderMessage (#842)
|
||||
* Deprecates shouldDeferMissing (#839)
|
||||
* Adds support for return type hints in Demeter chains (#848)
|
||||
* Adds shouldNotReceive to composite expectation (#847)
|
||||
* Fix internal error when using --static-backup (#845)
|
||||
* Adds `andAnyOtherArgs` as an optional argument matcher (#860)
|
||||
* Fixes namespace qualifying with namespaced named mocks (#872)
|
||||
* Added possibility to add Constructor-Expections on hard dependencies, read: Mockery::mock('overload:...') (#781)
|
||||
|
||||
## 1.0.0 (2017-09-06)
|
||||
|
||||
* Destructors (`__destruct`) are stubbed out where it makes sense
|
||||
* Allow passing a closure argument to `withArgs()` to validate multiple arguments at once.
|
||||
* `Mockery\Adapter\Phpunit\TestListener` has been rewritten because it
|
||||
incorrectly marked some tests as risky. It will no longer verify mock
|
||||
expectations but instead check that tests do that themselves. PHPUnit 6 is
|
||||
required if you want to use this fail safe.
|
||||
* Removes SPL Class Loader
|
||||
* Removed object recorder feature
|
||||
* Bumped minimum PHP version to 5.6
|
||||
* `andThrow` will now throw anything `\Throwable`
|
||||
* Adds `allows` and `expects` syntax
|
||||
* Adds optional global helpers for `mock`, `namedMock` and `spy`
|
||||
* Adds ability to create objects using traits
|
||||
* `Mockery\Matcher\MustBe` was deprecated
|
||||
* Marked `Mockery\MockInterface` as internal
|
||||
* Subset matcher matches recursively
|
||||
* BC BREAK - Spies return `null` by default from ignored (non-mocked) methods with nullable return type
|
||||
* Removed extracting getter methods of object instances
|
||||
* BC BREAK - Remove implicit regex matching when trying to match string arguments, introduce `\Mockery::pattern()` when regex matching is needed
|
||||
* Fix Mockery not getting closed in cases of failing test cases
|
||||
* Fix Mockery not setting properties on overloaded instance mocks
|
||||
* BC BREAK - Fix Mockery not trying default expectations if there is any concrete expectation
|
||||
* BC BREAK - Mockery's PHPUnit integration will mark a test as risky if it
|
||||
thinks one it's exceptions has been swallowed in PHPUnit > 5.7.6. Use `$e->dismiss()` to dismiss.
|
||||
|
||||
## 0.9.4 (XXXX-XX-XX)
|
||||
|
||||
* `shouldIgnoreMissing` will respect global `allowMockingNonExistentMethods`
|
||||
@@ -19,7 +192,7 @@
|
||||
|
||||
## 0.9.2 (2014-09-03)
|
||||
|
||||
* Some workarounds for the serilisation problems created by changes to PHP in 5.5.13, 5.4.29,
|
||||
* Some workarounds for the serialisation problems created by changes to PHP in 5.5.13, 5.4.29,
|
||||
5.6.
|
||||
* Demeter chains attempt to reuse doubles as they see fit, so for foo->bar and
|
||||
foo->baz, we'll attempt to use the same foo
|
||||
|
||||
Reference in New Issue
Block a user