Auto-merge for PR #831 via VersionBot

Prefix all pine options with '$' in preload to avoid pine warnings.
This commit is contained in:
resin-io-versionbot[bot] 2018-03-23 15:57:54 +00:00 committed by GitHub
commit 2b0143775c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 5 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.1.3 - 2018-03-23
* Prefix all pine options with '$' in preload to avoid pine warnings. #831 [Alexis Svinartchouk]
## v7.1.2 - 2018-03-23
* Update resin-preload to 6.2.0 and resin-sdk to 9.0.0-beta16 #830 [Alexis Svinartchouk]

View File

@ -25,7 +25,7 @@ getApplicationsWithSuccessfulBuilds = (deviceType) ->
resin.pine.get
resource: 'my_application'
options:
filter:
$filter:
device_type: deviceType
owns__release:
$any:
@ -33,9 +33,9 @@ getApplicationsWithSuccessfulBuilds = (deviceType) ->
$expr:
r:
status: 'success'
expand: preload.applicationExpandOptions
select: [ 'id', 'app_name', 'device_type', 'commit', 'should_track_latest_release' ]
orderby: 'app_name asc'
$expand: preload.applicationExpandOptions
$select: [ 'id', 'app_name', 'device_type', 'commit', 'should_track_latest_release' ]
$orderby: 'app_name asc'
selectApplication = (deviceType) ->
visuals = require('resin-cli-visuals')

View File

@ -1,6 +1,6 @@
{
"name": "resin-cli",
"version": "7.1.2",
"version": "7.1.3",
"description": "The official resin.io CLI tool",
"main": "./build/actions/index.js",
"homepage": "https://github.com/resin-io/resin-cli",