From f4f44f978e8444da8600cc4e6c1a8a837feefd26 Mon Sep 17 00:00:00 2001 From: Tim Perry Date: Thu, 19 Jul 2018 19:05:15 +0200 Subject: [PATCH 1/2] Update reconfix to fix volume signature errors in local configure Change-Type: patch --- lib/actions/local/configure.coffee | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/actions/local/configure.coffee b/lib/actions/local/configure.coffee index 51cdf9e8..ad3470fb 100644 --- a/lib/actions/local/configure.coffee +++ b/lib/actions/local/configure.coffee @@ -53,12 +53,12 @@ getConfigurationSchema = (connnectionFileName = 'resin-wifi') -> path: CONNECTIONS_FOLDER.slice(1) # Reconfix still uses the older resin-image-fs, so still needs an # object-based partition definition. - partition: { primary: BOOT_PARTITION } + partition: BOOT_PARTITION config_json: type: 'json' location: path: 'config.json' - partition: { primary: BOOT_PARTITION } + partition: BOOT_PARTITION inquirerOptions = (data) -> [ { diff --git a/package.json b/package.json index b91735f1..4b954b6f 100644 --- a/package.json +++ b/package.json @@ -133,7 +133,7 @@ "prettyjson": "^1.1.3", "progress-stream": "^2.0.0", "raven": "^2.5.0", - "reconfix": "^0.0.3", + "reconfix": "^0.1.0", "request": "^2.81.0", "resin-bundle-resolve": "^0.5.3", "resin-cli-form": "^1.4.1", From ef3c7f0fd6f32c04157fca5e71aa8eac57c7bafa Mon Sep 17 00:00:00 2001 From: "resin-io-versionbot[bot]" Date: Wed, 25 Jul 2018 10:13:48 +0000 Subject: [PATCH 2/2] v7.8.2 --- CHANGELOG.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18651b68..6d8caf94 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.8.2 - 2018-07-25 + +* Update reconfix to fix volume signature errors in local configure #929 [Tim Perry] + ## v7.8.1 - 2018-07-20 * Be explicit about how much initial history log tailing includes #930 [Tim Perry] diff --git a/package.json b/package.json index 4b954b6f..10c18a90 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "resin-cli", - "version": "7.8.1", + "version": "7.8.2", "description": "The official resin.io CLI tool", "main": "./build/actions/index.js", "homepage": "https://github.com/resin-io/resin-cli",