From 4ba020a784b52c95c8bfec0795a9d3e000c72a0e Mon Sep 17 00:00:00 2001 From: Petros Angelatos Date: Thu, 8 Mar 2018 23:29:46 -0800 Subject: [PATCH 1/2] compose: fix type error, createVolume returns a promise Signed-off-by: Petros Angelatos Change-type: patch --- src/compose/volumes.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compose/volumes.coffee b/src/compose/volumes.coffee index 70f97c04..94a8b1cc 100644 --- a/src/compose/volumes.coffee +++ b/src/compose/volumes.coffee @@ -61,7 +61,7 @@ module.exports = class Volumes Name: "#{appId}_#{name}" Labels: labels DriverOpts: driverOpts - }).inspect().then(@format) + }).call('inspect').then(@format) .tapCatch (err) => @logger.logSystemEvent(logTypes.createVolumeError, { volume: { name }, error: err }) From ae2a1acb1424c7b4aee60653578fcca57c47bbe8 Mon Sep 17 00:00:00 2001 From: "resin-io-versionbot[bot]" Date: Fri, 9 Mar 2018 08:13:11 +0000 Subject: [PATCH 2/2] v7.1.4 --- CHANGELOG.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a0e4829..b3eef14f 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.4 - 2018-03-09 + +* Compose: fix type error, createVolume returns a promise #571 [Petros Angelatos] + ## v7.1.3 - 2018-03-08 * Lib: add missing flag to openAsync() #570 [Petros Angelatos] diff --git a/package.json b/package.json index efc2adfa..7dca8aa2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "resin-supervisor", "description": "This is resin.io's Supervisor, a program that runs on IoT devices and has the task of running user Apps (which are Docker containers), and updating them as Resin's API informs it to.", - "version": "7.1.3", + "version": "7.1.4", "license": "Apache-2.0", "repository": { "type": "git",