From ebc5499f731fed6e5df5d7d72959b9202c31e2e7 Mon Sep 17 00:00:00 2001 From: Jesse James Date: Tue, 2 Aug 2016 15:22:19 -0700 Subject: [PATCH 1/5] remove caret range for target version, set to 2.3.0 or higher --- blueprints/ember-cli-raygun/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueprints/ember-cli-raygun/index.js b/blueprints/ember-cli-raygun/index.js index d10bda2..21cf3f0 100644 --- a/blueprints/ember-cli-raygun/index.js +++ b/blueprints/ember-cli-raygun/index.js @@ -24,7 +24,7 @@ module.exports = { var self = this, raygunApiKey = options.api_key || 'YOUR-RAYGUN-API-KEY'; - return this.addBowerPackagesToProject([ { name: 'raygun4js', target: "^1.18.4"} ]) + return this.addBowerPackagesToProject([ { name: 'raygun4js', target: ">2.3.0"} ]) .then(function() { return self.setupRaygunConfig(raygunApiKey); }) From 9dc2037d5101d14ca8a636c3b232acb1a3f17708 Mon Sep 17 00:00:00 2001 From: Jesse James Date: Tue, 2 Aug 2016 15:27:04 -0700 Subject: [PATCH 2/5] change target version to reflect package dependency on raygun4js ~2.0.3 --- blueprints/ember-cli-raygun/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueprints/ember-cli-raygun/index.js b/blueprints/ember-cli-raygun/index.js index 21cf3f0..c85d080 100644 --- a/blueprints/ember-cli-raygun/index.js +++ b/blueprints/ember-cli-raygun/index.js @@ -24,7 +24,7 @@ module.exports = { var self = this, raygunApiKey = options.api_key || 'YOUR-RAYGUN-API-KEY'; - return this.addBowerPackagesToProject([ { name: 'raygun4js', target: ">2.3.0"} ]) + return this.addBowerPackagesToProject([ { name: 'raygun4js', target: "~2.0.3"} ]) .then(function() { return self.setupRaygunConfig(raygunApiKey); }) From 54c181691b756fe1870fe896e7dfd87c493d748b Mon Sep 17 00:00:00 2001 From: Jesse James Date: Tue, 2 Aug 2016 15:37:47 -0700 Subject: [PATCH 3/5] change the targ version to match Pulse trackEvent release --- blueprints/ember-cli-raygun/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueprints/ember-cli-raygun/index.js b/blueprints/ember-cli-raygun/index.js index c85d080..40eb901 100644 --- a/blueprints/ember-cli-raygun/index.js +++ b/blueprints/ember-cli-raygun/index.js @@ -24,7 +24,7 @@ module.exports = { var self = this, raygunApiKey = options.api_key || 'YOUR-RAYGUN-API-KEY'; - return this.addBowerPackagesToProject([ { name: 'raygun4js', target: "~2.0.3"} ]) + return this.addBowerPackagesToProject([ { name: 'raygun4js', target: "^2.2.1"} ]) .then(function() { return self.setupRaygunConfig(raygunApiKey); }) From f6bfa1201206475ac0adee40554bda3faff050f0 Mon Sep 17 00:00:00 2001 From: fundead Date: Wed, 3 Aug 2016 12:13:47 +1200 Subject: [PATCH 4/5] Bump to minimum latest v2.3.4 and update bower.json also --- blueprints/ember-cli-raygun/index.js | 2 +- bower.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/blueprints/ember-cli-raygun/index.js b/blueprints/ember-cli-raygun/index.js index 40eb901..d87db3d 100644 --- a/blueprints/ember-cli-raygun/index.js +++ b/blueprints/ember-cli-raygun/index.js @@ -24,7 +24,7 @@ module.exports = { var self = this, raygunApiKey = options.api_key || 'YOUR-RAYGUN-API-KEY'; - return this.addBowerPackagesToProject([ { name: 'raygun4js', target: "^2.2.1"} ]) + return this.addBowerPackagesToProject([ { name: 'raygun4js', target: "^2.3.4"} ]) .then(function() { return self.setupRaygunConfig(raygunApiKey); }) diff --git a/bower.json b/bower.json index e0c01a0..a1d2442 100644 --- a/bower.json +++ b/bower.json @@ -11,7 +11,7 @@ "jquery": "^1.11.3", "loader.js": "ember-cli/loader.js#3.4.0", "qunit": "~1.20.0", - "raygun4js": "~2.0.3" + "raygun4js": "^2.3.4" }, "devDependencies": {} } From 415b6a3aa84331608eb3f02014b31d1fa353714b Mon Sep 17 00:00:00 2001 From: Jesse James Date: Wed, 3 Aug 2016 09:28:33 -0700 Subject: [PATCH 5/5] change raygun.io to raygun.com --- blueprints/ember-cli-raygun/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueprints/ember-cli-raygun/index.js b/blueprints/ember-cli-raygun/index.js index d87db3d..53a0da6 100644 --- a/blueprints/ember-cli-raygun/index.js +++ b/blueprints/ember-cli-raygun/index.js @@ -30,7 +30,7 @@ module.exports = { }) .then(function () { var output = EOL; - output += chalk.blue('Raygun') + ' has been installed. Please set your API Key in ' + chalk.green('config/environment.js') + '. If you don\'t have a key, get one at https://raygun.io!' + EOL; + output += chalk.blue('Raygun') + ' has been installed. Please set your API Key in ' + chalk.green('config/environment.js') + '. If you don\'t have a key, get one at https://raygun.com!' + EOL; console.log(output); }); },