Skip to content

v1.3.0

Compare
Choose a tag to compare
@Sweetchuck Sweetchuck released this 09 Dec 10:55
· 27 commits to 1.x since this release
ab0d30a

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
                        }
                    }
                }
            ]
        }
    }
}