diff --git a/.versionbot/CHANGELOG.yml b/.versionbot/CHANGELOG.yml index c54e0417..46f2832d 100644 --- a/.versionbot/CHANGELOG.yml +++ b/.versionbot/CHANGELOG.yml @@ -1,3 +1,17 @@ +- commits: + - subject: Add backoff to state reporting when 503 is received + hash: aab000209bdf7e98175a76372660ad4089ae28ec + body: | + Current state reporting had a backoff when network or inconsistency + errors were found, but not on API errors. This change adds a backoff + using RetryAfter header if present to reduce load on API + footer: + Change-type: patch + change-type: patch + author: Felipe Lalanne + nested: [] + version: 12.10.13 + date: 2021-09-28T18:56:07.205Z - commits: - subject: Use balena CLI for pushing to balenaCloud hash: 458e2a16cfa8e963dba0198ae79935a304895f3a diff --git a/CHANGELOG.md b/CHANGELOG.md index f30efdbb..ea96ff5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ 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/). +# v12.10.13 +## (2021-09-28) + +* Add backoff to state reporting when 503 is received [Felipe Lalanne] + # v12.10.12 ## (2021-09-27) diff --git a/VERSION b/VERSION index 37cae90b..c0585bac 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -12.10.12 \ No newline at end of file +12.10.13 \ No newline at end of file diff --git a/balena.yml b/balena.yml index e759b970..53035754 100644 --- a/balena.yml +++ b/balena.yml @@ -2,4 +2,4 @@ name: balena-supervisor description: 'Balena Supervisor: balena''s agent on devices.' joinable: false type: sw.application -version: 12.10.12 +version: 12.10.13 diff --git a/package-lock.json b/package-lock.json index 14e7c7e5..888947dc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "balena-supervisor", - "version": "12.10.12", + "version": "12.10.13", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 44b97a5a..000ad269 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": "12.10.12", + "version": "12.10.13", "license": "Apache-2.0", "repository": { "type": "git", @@ -138,6 +138,6 @@ } }, "versionist": { - "publishedAt": "2021-09-27T15:33:53.003Z" + "publishedAt": "2021-09-28T18:56:07.404Z" } }