Changelog
*Sourced from [phpunit/phpunit's changelog](https://github.com/sebastianbergmann/phpunit/blob/master/ChangeLog-7.5.md).*
> ## [7.5.4] - 2019-02-07
>
> ### Fixed
>
> * Fixed [#3352](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3352): Using `phpunit.phar` with PHPDBG does not work with `auto_globals_jit=On`
> * Fixed [#3502](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3502): Numeric `[**ticket**](https://github.com/ticket)` or `[**group**](https://github.com/group)` annotations no longer work
>
> ## [7.5.3] - 2019-02-01
>
> ### Fixed
>
> * Fixed [#3490](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/pull/3490): Exceptions in `tearDownAfterClass()` kill PHPUnit
>
> ### Deprecated
>
> * The method `assertArraySubset()` is now deprecated. There is no behavioral change in this version of PHPUnit. Using this method will trigger a deprecation warning in PHPUnit 8 and in PHPUnit 9 this method will be removed.
>
> ## [7.5.2] - 2019-01-15
>
> ### Fixed
>
> * Fixed [#3456](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/pull/3456): Generator for Xdebug filter script does not handle directories with leading `.` correctly
> * Fixed [#3459](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3459): `[**requires**](https://github.com/requires)` function swallows digits at the end of function name
>
> ## [7.5.1] - 2018-12-12
>
> ### Fixed
>
> * Fixed [#3441](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3441): Call to undefined method `DataProviderTestSuite::usesDataProvider()`
>
> ## [7.5.0] - 2018-12-07
>
> ### Added
>
> * Implemented [#3340](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3340): Added `assertEqualsCanonicalizing()`, `assertEqualsIgnoringCase()`, `assertEqualsWithDelta()`, `assertNotEqualsCanonicalizing()`, `assertNotEqualsIgnoringCase()`, and `assertNotEqualsWithDelta()` as alternatives to using `assertEquals()` and `assertNotEquals()` with the `$delta`, `$canonicalize`, or `$ignoreCase` parameters
> * Implemented [#3368](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3368): Added `assertIsArray()`, `assertIsBool()`, `assertIsFloat()`, `assertIsInt()`, `assertIsNumeric()`, `assertIsObject()`, `assertIsResource()`, `assertIsString()`, `assertIsScalar()`, `assertIsCallable()`, `assertIsIterable()`, `assertIsNotArray()`, `assertIsNotBool()`, `assertIsNotFloat()`, `assertIsNotInt()`, `assertIsNotNumeric()`, `assertIsNotObject()`, `assertIsNotResource()`, `assertIsNotString()`, `assertIsNotScalar()`, `assertIsNotCallable()`, `assertIsNotIterable()` as alternatives to `assertInternalType()` and `assertNotInternalType()`
> * Implemented [#3391](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3391): Added a `TestHook` that fires after each test, regardless of result
> * Implemented [#3417](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/pull/3417): Refinements related to test suite sorting and TestDox result printer
> * Implemented [#3422](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3422): Added `assertStringContainsString()`, `assertStringContainsStringIgnoringCase()`, `assertStringNotContainsString()`, and `assertStringNotContainsStringIgnoringCase()`
>
> ### Deprecated
>
> * The methods `assertInternalType()` and `assertNotInternalType()` are now deprecated. There is no behavioral change in this version of PHPUnit. Using these methods will trigger a deprecation warning in PHPUnit 8 and in PHPUnit 9 these methods will be removed.
> * The methods `assertAttributeContains()`, `assertAttributeNotContains()`, `assertAttributeContainsOnly()`, `assertAttributeNotContainsOnly()`, `assertAttributeCount()`, `assertAttributeNotCount()`, `assertAttributeEquals()`, `assertAttributeNotEquals()`, `assertAttributeEmpty()`, `assertAttributeNotEmpty()`, `assertAttributeGreaterThan()`, `assertAttributeGreaterThanOrEqual()`, `assertAttributeLessThan()`, `assertAttributeLessThanOrEqual()`, `assertAttributeSame()`, `assertAttributeNotSame()`, `assertAttributeInstanceOf()`, `assertAttributeNotInstanceOf()`, `assertAttributeInternalType()`, `assertAttributeNotInternalType()`, `attributeEqualTo()`, `readAttribute()`, `getStaticAttribute()`, and `getObjectAttribute()` are now deprecated. There is no behavioral change in this version of PHPUnit. Using these methods will trigger a deprecation warning in PHPUnit 8 and in PHPUnit 9 these methods will be removed.
> * The optional parameters `$delta`, `$maxDepth`, `$canonicalize`, and `$ignoreCase` of `assertEquals()` and `assertNotEquals()` are now deprecated. There is no behavioral change in this version of PHPUnit. Using these parameters will trigger a deprecation warning in PHPUnit 8 and in PHPUnit 9 these parameters will be removed.
> * The annotations `[**expectedException**](https://github.com/expectedException)`, `[**expectedExceptionCode**](https://github.com/expectedExceptionCode)`, `[**expectedExceptionMessage**](https://github.com/expectedExceptionMessage)`, and `[**expectedExceptionMessageRegExp**](https://github.com/expectedExceptionMessageRegExp)` are now deprecated. There is no behavioral change in this version of PHPUnit. Using these annotations will trigger a deprecation warning in PHPUnit 8 and in PHPUnit 9 these annotations will be removed.
> * Using the methods `assertContains()` and `assertNotContains()` on `string` haystacks is now deprecated. There is no behavioral change in this version of PHPUnit. Using these methods on `string` haystacks will trigger a deprecation warning in PHPUnit 8 and in PHPUnit 9 these methods cannot be used on on `string` haystacks anymore.
> * The optional parameters `$ignoreCase`, `$checkForObjectIdentity`, and `$checkForNonObjectIdentity` of `assertContains()` and `assertNotContains()` are now deprecated. There is no behavioral change in this version of PHPUnit. Using these parameters will trigger a deprecation warning in PHPUnit 8 and in PHPUnit 9 these parameters will be removed.
>
> ### Fixed
> ... (truncated)
Commits
- [`2896657`](https://github.com/sebastianbergmann/phpunit/commit/2896657da5fb237bc316bdfc18c2650efeee0dc0) Prepare release
- [`a6465d9`](https://github.com/sebastianbergmann/phpunit/commit/a6465d9f909d78ae5c0fc8d8a8bb6310bcc69259) Closes [#3352](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3352)
- [`ca16574`](https://github.com/sebastianbergmann/phpunit/commit/ca165740350f32e92ab37338848707bcd8ce8479) Add tests
- [`a6abdfa`](https://github.com/sebastianbergmann/phpunit/commit/a6abdfaae74791e6c1f02b5d8f1038b4f117160f) Update tools
- [`34fac14`](https://github.com/sebastianbergmann/phpunit/commit/34fac14396f67b2401a35c3ea1e7eaf5ec404966) Update ChangeLog
- [`cd71bbe`](https://github.com/sebastianbergmann/phpunit/commit/cd71bbeadf67411d54cf17b36cfb281f362720e6) Fix [#3502](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3502) missing numeric [**group**](https://github.com/group) and [**ticket**](https://github.com/ticket) annotations
- [`2cb7597`](https://github.com/sebastianbergmann/phpunit/commit/2cb759721e53bc05f56487f628c6b9fbb6c18746) Prepare release
- [`0f3e264`](https://github.com/sebastianbergmann/phpunit/commit/0f3e26407a6747bb7baab8bb8fa260d66fa9f778) Merge branch '6.5' into 7.5
- [`bac23fe`](https://github.com/sebastianbergmann/phpunit/commit/bac23fe7ff13dbdb461481f706f0e9fe746334b7) Prepare release
- [`fe7da90`](https://github.com/sebastianbergmann/phpunit/commit/fe7da905db23843e830a68309080a1af5cb00f2f) Update tools
- Additional commits viewable in [compare view](https://github.com/sebastianbergmann/phpunit/compare/5.7.27...7.5.4)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Finally, you can contact us by mentioning @dependabot.
Bumps phpunit/phpunit from 5.7.27 to 7.5.4.
Changelog
*Sourced from [phpunit/phpunit's changelog](https://github.com/sebastianbergmann/phpunit/blob/master/ChangeLog-7.5.md).* > ## [7.5.4] - 2019-02-07 > > ### Fixed > > * Fixed [#3352](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3352): Using `phpunit.phar` with PHPDBG does not work with `auto_globals_jit=On` > * Fixed [#3502](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3502): Numeric `[**ticket**](https://github.com/ticket)` or `[**group**](https://github.com/group)` annotations no longer work > > ## [7.5.3] - 2019-02-01 > > ### Fixed > > * Fixed [#3490](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/pull/3490): Exceptions in `tearDownAfterClass()` kill PHPUnit > > ### Deprecated > > * The method `assertArraySubset()` is now deprecated. There is no behavioral change in this version of PHPUnit. Using this method will trigger a deprecation warning in PHPUnit 8 and in PHPUnit 9 this method will be removed. > > ## [7.5.2] - 2019-01-15 > > ### Fixed > > * Fixed [#3456](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/pull/3456): Generator for Xdebug filter script does not handle directories with leading `.` correctly > * Fixed [#3459](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3459): `[**requires**](https://github.com/requires)` function swallows digits at the end of function name > > ## [7.5.1] - 2018-12-12 > > ### Fixed > > * Fixed [#3441](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3441): Call to undefined method `DataProviderTestSuite::usesDataProvider()` > > ## [7.5.0] - 2018-12-07 > > ### Added > > * Implemented [#3340](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3340): Added `assertEqualsCanonicalizing()`, `assertEqualsIgnoringCase()`, `assertEqualsWithDelta()`, `assertNotEqualsCanonicalizing()`, `assertNotEqualsIgnoringCase()`, and `assertNotEqualsWithDelta()` as alternatives to using `assertEquals()` and `assertNotEquals()` with the `$delta`, `$canonicalize`, or `$ignoreCase` parameters > * Implemented [#3368](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3368): Added `assertIsArray()`, `assertIsBool()`, `assertIsFloat()`, `assertIsInt()`, `assertIsNumeric()`, `assertIsObject()`, `assertIsResource()`, `assertIsString()`, `assertIsScalar()`, `assertIsCallable()`, `assertIsIterable()`, `assertIsNotArray()`, `assertIsNotBool()`, `assertIsNotFloat()`, `assertIsNotInt()`, `assertIsNotNumeric()`, `assertIsNotObject()`, `assertIsNotResource()`, `assertIsNotString()`, `assertIsNotScalar()`, `assertIsNotCallable()`, `assertIsNotIterable()` as alternatives to `assertInternalType()` and `assertNotInternalType()` > * Implemented [#3391](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3391): Added a `TestHook` that fires after each test, regardless of result > * Implemented [#3417](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/pull/3417): Refinements related to test suite sorting and TestDox result printer > * Implemented [#3422](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3422): Added `assertStringContainsString()`, `assertStringContainsStringIgnoringCase()`, `assertStringNotContainsString()`, and `assertStringNotContainsStringIgnoringCase()` > > ### Deprecated > > * The methods `assertInternalType()` and `assertNotInternalType()` are now deprecated. There is no behavioral change in this version of PHPUnit. Using these methods will trigger a deprecation warning in PHPUnit 8 and in PHPUnit 9 these methods will be removed. > * The methods `assertAttributeContains()`, `assertAttributeNotContains()`, `assertAttributeContainsOnly()`, `assertAttributeNotContainsOnly()`, `assertAttributeCount()`, `assertAttributeNotCount()`, `assertAttributeEquals()`, `assertAttributeNotEquals()`, `assertAttributeEmpty()`, `assertAttributeNotEmpty()`, `assertAttributeGreaterThan()`, `assertAttributeGreaterThanOrEqual()`, `assertAttributeLessThan()`, `assertAttributeLessThanOrEqual()`, `assertAttributeSame()`, `assertAttributeNotSame()`, `assertAttributeInstanceOf()`, `assertAttributeNotInstanceOf()`, `assertAttributeInternalType()`, `assertAttributeNotInternalType()`, `attributeEqualTo()`, `readAttribute()`, `getStaticAttribute()`, and `getObjectAttribute()` are now deprecated. There is no behavioral change in this version of PHPUnit. Using these methods will trigger a deprecation warning in PHPUnit 8 and in PHPUnit 9 these methods will be removed. > * The optional parameters `$delta`, `$maxDepth`, `$canonicalize`, and `$ignoreCase` of `assertEquals()` and `assertNotEquals()` are now deprecated. There is no behavioral change in this version of PHPUnit. Using these parameters will trigger a deprecation warning in PHPUnit 8 and in PHPUnit 9 these parameters will be removed. > * The annotations `[**expectedException**](https://github.com/expectedException)`, `[**expectedExceptionCode**](https://github.com/expectedExceptionCode)`, `[**expectedExceptionMessage**](https://github.com/expectedExceptionMessage)`, and `[**expectedExceptionMessageRegExp**](https://github.com/expectedExceptionMessageRegExp)` are now deprecated. There is no behavioral change in this version of PHPUnit. Using these annotations will trigger a deprecation warning in PHPUnit 8 and in PHPUnit 9 these annotations will be removed. > * Using the methods `assertContains()` and `assertNotContains()` on `string` haystacks is now deprecated. There is no behavioral change in this version of PHPUnit. Using these methods on `string` haystacks will trigger a deprecation warning in PHPUnit 8 and in PHPUnit 9 these methods cannot be used on on `string` haystacks anymore. > * The optional parameters `$ignoreCase`, `$checkForObjectIdentity`, and `$checkForNonObjectIdentity` of `assertContains()` and `assertNotContains()` are now deprecated. There is no behavioral change in this version of PHPUnit. Using these parameters will trigger a deprecation warning in PHPUnit 8 and in PHPUnit 9 these parameters will be removed. > > ### Fixed > ... (truncated)Commits
- [`2896657`](https://github.com/sebastianbergmann/phpunit/commit/2896657da5fb237bc316bdfc18c2650efeee0dc0) Prepare release - [`a6465d9`](https://github.com/sebastianbergmann/phpunit/commit/a6465d9f909d78ae5c0fc8d8a8bb6310bcc69259) Closes [#3352](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3352) - [`ca16574`](https://github.com/sebastianbergmann/phpunit/commit/ca165740350f32e92ab37338848707bcd8ce8479) Add tests - [`a6abdfa`](https://github.com/sebastianbergmann/phpunit/commit/a6abdfaae74791e6c1f02b5d8f1038b4f117160f) Update tools - [`34fac14`](https://github.com/sebastianbergmann/phpunit/commit/34fac14396f67b2401a35c3ea1e7eaf5ec404966) Update ChangeLog - [`cd71bbe`](https://github.com/sebastianbergmann/phpunit/commit/cd71bbeadf67411d54cf17b36cfb281f362720e6) Fix [#3502](https://github-redirect.dependabot.com/sebastianbergmann/phpunit/issues/3502) missing numeric [**group**](https://github.com/group) and [**ticket**](https://github.com/ticket) annotations - [`2cb7597`](https://github.com/sebastianbergmann/phpunit/commit/2cb759721e53bc05f56487f628c6b9fbb6c18746) Prepare release - [`0f3e264`](https://github.com/sebastianbergmann/phpunit/commit/0f3e26407a6747bb7baab8bb8fa260d66fa9f778) Merge branch '6.5' into 7.5 - [`bac23fe`](https://github.com/sebastianbergmann/phpunit/commit/bac23fe7ff13dbdb461481f706f0e9fe746334b7) Prepare release - [`fe7da90`](https://github.com/sebastianbergmann/phpunit/commit/fe7da905db23843e830a68309080a1af5cb00f2f) Update tools - Additional commits viewable in [compare view](https://github.com/sebastianbergmann/phpunit/compare/5.7.27...7.5.4)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.