Releases: Sweetchuck/composer-suite
Releases · Sweetchuck/composer-suite
v1.3.2: Merge pull request #23 from Sweetchuck/1.x-upgrade-dependencies
Upgrade dependencies
v1.3.0
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…
v1.1.0: Merge pull request #2 from Sweetchuck/acceptance-tests
Add acceptance tests
v1.0.0
Basic implementation