diff --git a/CHANGELOG.md b/CHANGELOG.md index c064f488..19adf818 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # CHANGELOG +## v0.10.0 [2016/03/08] + +- Replaced copy with rsync to move the temporary build output as part of the +default build process. For Windows environments, copy is still used. +- Added support for running tests included with custom modules for Drupal 8. +- Updated default phplint patterns to skip `*.panels_default.inc` files. +- Removed peer dependency on Grunt in package.json. This prevents issues when +updating to the forthcoming Grunt 1.0.0. +- Updating Node.js engines requirement in package.json to v0.12.0 or later. +- Updated dependencies. + +### Upgrade Notes + +- Node.js v0.10.x is no longer supported. +- Project configurations that override the default `drushmake` task should be +updated to use `rsync:tempbuild` instead of `copy:tempbuild` on non-Windows +environments. The `canRsync` function from `lib/util.js` should be used to +determine if rsync is supported in an environment. + ## v0.9.3 [2016/02/25] - Improved performance for code style quality checks by limiting file scans. diff --git a/example/package.json b/example/package.json index 864e95a6..d478da4f 100644 --- a/example/package.json +++ b/example/package.json @@ -5,7 +5,7 @@ "private": true, "dependencies": { "grunt": "~0.4.5", - "grunt-drupal-tasks": "~0.9.0", + "grunt-drupal-tasks": "~0.10.0", "zombie": "^2.5.1" } } diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 7a12b002..073d122a 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -1,6 +1,6 @@ { "name": "grunt-drupal-tasks", - "version": "0.9.3", + "version": "0.10.0", "dependencies": { "grunt": { "version": "0.4.5", diff --git a/package.json b/package.json index dea6db6c..27b01556 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "grunt-drupal-tasks", "description": "A Grunt plugin to automate Drupal build and testing tasks.", - "version": "0.9.3", + "version": "0.10.0", "main": "bootstrap.js", "dependencies": { "grunt-available-tasks": "~0.6.1",