From ca1ac2bb83c0d3c8390c4c5ede57d4939c1e6b81 Mon Sep 17 00:00:00 2001 From: Alexis Svinartchouk Date: Fri, 23 Mar 2018 15:20:18 +0000 Subject: [PATCH 1/2] Prefix all pine options with '$' in preload to avoid pine warnings. Change-Type: patch --- lib/actions/preload.coffee | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/actions/preload.coffee b/lib/actions/preload.coffee index b38c5e99..18e45feb 100644 --- a/lib/actions/preload.coffee +++ b/lib/actions/preload.coffee @@ -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') From 49fec7d8f255e3fc946ef99db0d1be832676e895 Mon Sep 17 00:00:00 2001 From: "resin-io-versionbot[bot]" Date: Fri, 23 Mar 2018 15:49:16 +0000 Subject: [PATCH 2/2] v7.1.3 --- CHANGELOG.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 58050f12..fd7fd6ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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] diff --git a/package.json b/package.json index 91153595..c08e7de4 100644 --- a/package.json +++ b/package.json @@ -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",