From 21a9bb4e8291e518450f1f8936b16e979b2ec5e9 Mon Sep 17 00:00:00 2001 From: Pablo Carranza Velez Date: Thu, 23 Nov 2017 14:08:32 -0800 Subject: [PATCH 1/2] When listenPort is not specified, use 48484 as default Should only be relevant in really old OS versions, but still this is the correct default. Fixes #439 Change-Type: patch Signed-off-by: Pablo Carranza Velez --- src/config.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.coffee b/src/config.coffee index f9d1bd53..d86f4ba1 100644 --- a/src/config.coffee +++ b/src/config.coffee @@ -7,7 +7,7 @@ apiEndpoint = checkString(process.env.API_ENDPOINT) module.exports = apiEndpoint: apiEndpoint apiTimeout: checkInt(process.env.API_TIMEOUT, positive: true) ? 15 * 60 * 1000 - listenPort: checkInt(process.env.LISTEN_PORT, positive: true) ? 80 + listenPort: checkInt(process.env.LISTEN_PORT, positive: true) ? 48484 gosuperAddress: "http://unix:#{process.env.GOSUPER_SOCKET}:" deltaHost: checkString(process.env.DELTA_ENDPOINT) ? 'https://delta.resin.io' registryEndpoint: checkString(process.env.REGISTRY_ENDPOINT) ? 'registry.resin.io' From eef8ee0c334d5b4de91003c35ac2cdc5f7c76d0b Mon Sep 17 00:00:00 2001 From: "resin-io-versionbot[bot]" Date: Fri, 1 Dec 2017 20:35:58 +0000 Subject: [PATCH 2/2] v6.4.8 --- CHANGELOG.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ffa10aa2..40689a46 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/). +## v6.4.8 - 2017-12-01 + +* When listenPort is not specified, use 48484 as default #529 [Pablo Carranza Velez] + ## v6.4.7 - 2017-11-20 * Sync.js: Fix command to build the source code without optimizations #527 [Pablo Carranza Velez] diff --git a/package.json b/package.json index a02994c6..ec456210 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": "6.4.7", + "version": "6.4.8", "license": "Apache-2.0", "repository": { "type": "git",