Auto-merge for PR #930 via VersionBot

Be explicit about how much initial history log tailing includes
This commit is contained in:
resin-io-versionbot[bot] 2018-07-20 18:07:00 +00:00 committed by GitHub
commit 442416efc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 3 deletions

View File

@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
This project adheres to [Semantic Versioning](http://semver.org/).
## v7.8.1 - 2018-07-20
* Be explicit about how much initial history log tailing includes #930 [Tim Perry]
## v7.8.0 - 2018-07-20
* Add join/leave commands to promote and move devices between platforms #895 [Akis Kesoglou]

View File

@ -51,7 +51,7 @@ module.exports =
console.log("#{timestamp} #{line.message}")
if options.tail
resin.logs.subscribe(params.uuid).then (logs) ->
resin.logs.subscribe(params.uuid, { count: 100 }).then (logs) ->
logs.on('line', printLine)
logs.on('error', done)
.catch(done)

View File

@ -1,6 +1,6 @@
{
"name": "resin-cli",
"version": "7.8.0",
"version": "7.8.1",
"description": "The official resin.io CLI tool",
"main": "./build/actions/index.js",
"homepage": "https://github.com/resin-io/resin-cli",
@ -149,7 +149,7 @@
"resin-multibuild": "^0.5.1",
"resin-preload": "^6.3.0",
"resin-release": "^1.2.0",
"resin-sdk": "10.0.0-beta1",
"resin-sdk": "10.0.0-beta2",
"resin-sdk-preconfigured": "^6.9.0",
"resin-semver": "^1.2.2",
"resin-settings-client": "^3.6.1",