Skip to content

Releases: Sweetchuck/composer-suite

v1.3.2: Merge pull request #23 from Sweetchuck/1.x-upgrade-dependencies

25 Apr 10:47
e299244
Compare
Choose a tag to compare

v1.3.0

09 Dec 10:55
ab0d30a
Compare
Choose a tag to compare

What's Changed

  • Issue #4 - External file support
  • Issue #10 - New command suite:list
  • Issue #12 - Provide JSON Schema for suite definition

Full Changelog: v1.2.0...v1.3.0

Sorry for that, but the „External file support” feature uses a different configuration schema.

old:

{

    "composer-suite": {
        "my_suite_01": [
            {
                "type": "prepend",
                "config": {
                    "parents": ["foo"],
                    "items": {
                        "bar": 42
                    }
                }
            }
        ]
    }
}

new:

{

    "composer-suite": {
        "my_suite_01": {
            "description": "my description",
            "actions": [
                {
                    "type": "prepend",
                    "config": {
                        "parents": ["foo"],
                        "items": {
                            "bar": 42
                        }
                    }
                }
            ]
        }
    }
}

v1.2.0: Merge pull request #5 from Sweetchuck/1.x-cmd-validate-do-not-fail-on…

03 May 08:42
e95e980
Compare
Choose a tag to compare
…-missing

Do not fail on "validate" when a *.json suite file is missing

v1.1.0: Merge pull request #2 from Sweetchuck/acceptance-tests

21 Jan 22:17
37fcab6
Compare
Choose a tag to compare

v1.0.0

17 Jan 19:46
Compare
Choose a tag to compare
Basic implementation