Skip to content

Commit

Permalink
Auto-merge for PR #831 via VersionBot
Browse files Browse the repository at this point in the history
Prefix all pine options with '$' in preload to avoid pine warnings.
  • Loading branch information
resin-io-versionbot[bot] committed Mar 23, 2018
2 parents 50b1a7e + 49fec7d commit 2b01437
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
8 changes: 4 additions & 4 deletions lib/actions/preload.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ getApplicationsWithSuccessfulBuilds = (deviceType) ->
resin.pine.get
resource: 'my_application'
options:
filter:
$filter:
device_type: deviceType
owns__release:
$any:
$alias: 'r'
$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')
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 2b01437

Please sign in to comment.