From cba105a41be767c1414f3e194fd77ac6bfa1fa96 Mon Sep 17 00:00:00 2001 From: Eugene Mirotin Date: Thu, 23 Mar 2017 11:55:18 +0300 Subject: [PATCH 1/2] suppress warning during the device init OS download --- build/actions/device.js | 2 +- lib/actions/device.coffee | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/build/actions/device.js b/build/actions/device.js index 25fdca71..e431a4ae 100644 --- a/build/actions/device.js +++ b/build/actions/device.js @@ -292,7 +292,7 @@ exports.init = { var download; download = function() { return tmp.tmpNameAsync().then(function(temporalPath) { - return capitano.runAsync("os download " + application.device_type + " --output " + temporalPath); + return capitano.runAsync("os download " + application.device_type + " --output " + temporalPath + " --version default"); }).disposer(function(temporalPath) { return rimraf(temporalPath); }); diff --git a/lib/actions/device.coffee b/lib/actions/device.coffee index 4694bf70..d0290550 100644 --- a/lib/actions/device.coffee +++ b/lib/actions/device.coffee @@ -393,7 +393,8 @@ exports.init = download = -> tmp.tmpNameAsync().then (temporalPath) -> - capitano.runAsync("os download #{application.device_type} --output #{temporalPath}") + # TODO: allow version selection + capitano.runAsync("os download #{application.device_type} --output #{temporalPath} --version default") .disposer (temporalPath) -> return rimraf(temporalPath) From 8149172eb083a27e8a517822482ab3ac8eb5edbe Mon Sep 17 00:00:00 2001 From: Eugene Mirotin Date: Thu, 23 Mar 2017 15:32:06 +0300 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 740c3649..51b354d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,8 +3,15 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +### Added + - Add Sentry error tracking +### Fixed + +- The unneeded warning about the default OS version download from the `device init` command. +- Changed the help references from gitter to forums. + ## [5.6.0] - 2017-03-23 ### Added