mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-21 06:33:28 +00:00
Auto-merge for PR #930 via VersionBot
Be explicit about how much initial history log tailing includes
This commit is contained in:
commit
442416efc3
@ -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]
|
||||
|
@ -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)
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user