From 663cab3f2b01180b1af994fc851376f93197d682 Mon Sep 17 00:00:00 2001 From: Denis Perov Date: Sat, 25 Jul 2015 08:34:55 +0300 Subject: [PATCH 1/2] mysql insecure warning fix --- tasks/lib/util.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/lib/util.js b/tasks/lib/util.js index 41ddb72..15304d3 100644 --- a/tasks/lib/util.js +++ b/tasks/lib/util.js @@ -220,8 +220,8 @@ exports.init = function (grunt) { var tpls = { backup_path: "<%= backups_dir %>/<%= env %>/<%= date %>/<%= time %>", - mysqldump: "mysqldump -h <%= host %> -u<%= user %> -p<%= pass %> <%= database %>", - mysql: "mysql -h <%= host %> -u <%= user %> -p<%= pass %> <%= database %>", + mysqldump: "MYSQL_PWD=<%= pass %> mysqldump -h <%= host %> -u<%= user %> <%= database %>", + mysql: "MYSQL_PWD=<%= pass %> mysql -h <%= host %> -u <%= user %> <%= database %>", rsync_push: "rsync <%= rsync_args %> --delete -e 'ssh <%= ssh_host %>' <%= exclusions %> <%= from %> :<%= to %>", rsync_pull: "rsync <%= rsync_args %> -e 'ssh <%= ssh_host %>' <%= exclusions %> :<%= from %> <%= to %>", ssh: "ssh <%= host %>", From e55ccd1e76bc355c3aa733887caa2c47decdb530 Mon Sep 17 00:00:00 2001 From: gruntjs-updater Date: Sun, 21 Feb 2016 12:56:55 -0500 Subject: [PATCH 2/2] Update peerDependencies to support Grunt 1.0 Hello, This is an automated issue request to update the `peerDependencies` for your Grunt plugin. We ask you to merge this and **publish a new release on npm** to get your plugin working in Grunt 1.0! Read more here: http://gruntjs.com/blog/2016-02-11-grunt-1.0.0-rc1-released#peer-dependencies Also on Twitter: https://twitter.com/gruntjs/status/700819604155707392 If you have any questions or you no longer have time to maintain this plugin, then please let us know in this thread. Thanks for creating and working on this plugin! (P.S. Close this PR if it is a mistake, sorry) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5272ee3..f6be078 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "grunt": "~0.4.1" }, "peerDependencies": { - "grunt": "~0.4.1" + "grunt": ">=0.4.0" }, "keywords": [ "gruntplugin",