Skip to content

Releases: SebKay/touchstone

v4.0.0

04 Oct 10:10
ca74c88
Compare
Choose a tag to compare

What's Changed

Full Changelog: 3.0.0...4.0.0

v3.0.0

18 Aug 08:54
Compare
Choose a tag to compare

Important

  • PHP 8.0+ is now the minimum requirement

What's Changed

Full Changelog: 2.2.0...3.0.0

v2.2.0

21 Nov 11:51
c18e838
Compare
Choose a tag to compare

What's Changed

  • Add support for "setup" config option which is a closure by @SebKay in #25

Full Changelog: 2.1.0...2.2.0

v2.1.0

21 Nov 10:14
5b7a408
Compare
Choose a tag to compare

What's Changed

  • Add support for loading consumer bootstrap file by @SebKay in #24

Full Changelog: 2.0.0...2.1.0

v2.0.0

21 Nov 09:58
bd36a98
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.3.1...2.0.0

v1.3.1

10 Jun 12:26
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.3.0...1.3.1

v1.3.0

31 Jan 17:51
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.2.0...1.3.0

Highlights

Unix Socket Support

If you need to connect to your test database via a unix socket, you can now pass the --db-socket option to the setup command.

# Example
./vendor/bin/touchstone setup --db-host=127.0.0.1:8889 --db-socket="/path/to/mysqld.sock" --db-name=touchstone_tests --db-user=root --db-pass=root

v1.2.0

07 Jan 19:28
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.1.0...1.2.0

Highlights

Plugins and Theme Configuration

You can can now configure plugins and themes to use in tests, like so:

# config.touchstone.php

<?php

return [
    'plugins' => [
        [
            'name' => 'Hello Dolly',
            'file' => dirname(__FILE__) . '/bin/plugins/hello-dolly/hello.php',
        ],
    ],
    'theme' => [
        'root' => dirname(__FILE__) . '/../../themes/twentytwentyone',
    ],
];

1.1.0

09 Dec 18:45
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.0.1...1.1.0

v1.0.1

01 Oct 07:24
b43b732
Compare
Choose a tag to compare
Update composer.json