diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index 24dece9f..eb42b3b4 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,19 @@ +- commits: + - subject: 'compose: Remove unique expose entries after adding all entries' + hash: 9e3fae585236c464fd25ab591b00d278c7d6463f + body: | + Prior to this change, we would `_.uniq` the expose value before adding + values from the port mappings. This could cause ports to get added + twice, which would cause the supervisor to think that there is a + configuration mismatch. + footer: + Change-type: patch + change-type: patch + Signed-off-by: Cameron Diver + signed-off-by: Cameron Diver + author: Cameron Diver + version: 9.14.4 + date: 2019-04-11T09:41:48.891Z - commits: - subject: Don't attempt to report any state during local mode hash: 892cf1961e5f86589f875e86294990dc8c6ed3bb diff --git a/CHANGELOG.md b/CHANGELOG.md index 129aeceb..4965a0e4 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/). +## 9.14.4 - 2019-04-11 + +* Compose: Remove unique expose entries after adding all entries [Cameron Diver] + ## 9.14.3 - 2019-04-10 * Don't attempt to report any state during local mode [Cameron Diver] diff --git a/package-lock.json b/package-lock.json index 4b673a64..e511bd1e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "balena-supervisor", - "version": "9.14.3", + "version": "9.14.4", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 09ac4144..8beafdce 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "balena-supervisor", "description": "This is balena'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 the balena API informs it to.", - "version": "9.14.3", + "version": "9.14.4", "license": "Apache-2.0", "repository": { "type": "git",