Skip to content
This repository has been archived by the owner on Jan 4, 2022. It is now read-only.

Latest commit

 

History

History
238 lines (157 loc) · 7.8 KB

CHANGELOG.md

File metadata and controls

238 lines (157 loc) · 7.8 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Unreleased

For a full diff see 1.6.0...main.

Removed

  • Removed all data providers (#552), by @localheinz

    If you use any of the data providers, run

    composer require --dev ergebnis/data-provider

    and replace occurrences of Ergebnis\Test\Util\DataProvider with Ergebnis\DataProvider.

  • Removed all assertions (#553), by @localheinz

    If you use any of the assertions, stop. Most of them are useless, some of them could be replaced with static code analysis. I do not use them anymore and I would not recommend to use these kinds of assertions.

  • Removed all provide methods ([#554]), by @localheinz

    If you use any of the provide methods in an external data provider, run

    composer require --dev ergebnis/data-provider

    and extend Ergebnis\DataProvider\AbstractProvider.

    If you use any of the provide methods in data provider declared as an instance method on a test case, extract your own Helper trait and move the functionality there.

For a full diff see 1.5.0...1.6.0.

Changed

For a full diff see 1.4.0...1.5.0.

Changed

Fixed

  • Stopped using deprecated magic properties on Faker\Generator and started using magic functions instead (#435), by @localheinz

For a full diff see 1.3.0...1.4.0.

Added

  • Added DataProvider\StringProvider::withWhitespace() (#374), by @localheinz

For a full diff see 1.3.0...1.3.1.

Fixed

  • Started using fakerphp/faker instead of fzaninotto/faker (#372), by @localheinz

For a full diff see 1.2.0...1.3.0.

Added

For a full diff see 1.1.0...1.2.0.

Added

Changed

  • Renamed DataProvider\BooleanProvider to DataProvider\BoolProvider (#334), by @localheinz

For a full diff see 1.0.1...1.1.0.

Changed

For a full diff see 1.0.0...1.0.1.

Changed

For a full diff see 0.9.1...1.0.0.

For a full diff see 0.9.0...0.9.1.

Fixed

For a full diff see 0.8.0...0.9.0.

Changed

  • Renamed vendor namespace Localheinz to Ergebnis after move to @ergebnis (#147), by @localheinz

    Run

    $ composer remove localheinz/test-util
    

    and

    $ composer require ergebnis/test-util
    

    to update.

    Run

    $ find . -type f -exec sed -i '.bak' 's/Localheinz\\Test\\Util/Ergebnis\\Test\\Util/g' {} \;
    

    to replace occurrences of Localheinz\Test\Util with Ergebnis\Test\Util.

    Run

    $ find -type f -name '*.bak' -delete
    

    to delete backup files created in the previous step.

For a full diff see 0.7.0...0.8.0.

Changed