This commit is contained in:
Resin CI 2019-03-18 19:59:34 +02:00
parent 46c99e7001
commit 000f9ae6c8
4 changed files with 53 additions and 2 deletions

View File

@ -1,3 +1,48 @@
- commits:
- subject: >-
fix: Correct use of $expand to avoid an exception when updating from a
legacy OS
hash: d64dcb4b4060d3e6fd84382d3b12c6d8a3fe2310
body: >
The last update of pinejs-client to pinejs-client-request made the way
we were
using $expand on the migration break. This switches to the correct way
of doing it now.
footer:
Change-type: patch
change-type: patch
Signed-off-by: Pablo Carranza Velez <pablo@balena.io>
signed-off-by: Pablo Carranza Velez <pablo@balena.io>
author: Pablo Carranza Velez
- subject: 'device-api: Add v2/device/tags api endpoint'
hash: b922789deeb29568b7105ef2ffc3b6ec8900f97f
body: |
This endpoint will fetch the device tags from the balena api
footer:
Change-type: minor
change-type: minor
Closes: '#890'
closes: '#890'
Signed-off-by: Cameron Diver <cameron@balena.io>
signed-off-by: Cameron Diver <cameron@balena.io>
author: Cameron Diver
- subject: 'device-api: Add v2/device/name endpoint'
hash: 3f231e8ff3af80fd6006064d951013858bddcba3
body: |
This endpoint returns the last known device name from the API. This
differs from the BALENA_DEVICE_NAME_AT_INIT env var because this will
not change throughout the runtime of the container.
footer:
Closes: '#908'
closes: '#908'
Change-type: minor
change-type: minor
Signed-off-by: Cameron Diver <cameron@balena.io>
signed-off-by: Cameron Diver <cameron@balena.io>
author: Cameron Diver
version: 9.11.0
date: 2019-03-18T16:56:09.031Z
- commits: - commits:
- subject: 'state-engine: Return a noop when waiting for a dependency' - subject: 'state-engine: Return a noop when waiting for a dependency'
hash: 84356b82b814b10c14c12a285ffe71dac278ea19 hash: 84356b82b814b10c14c12a285ffe71dac278ea19

View File

@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY! automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).
## 9.11.0 - 2019-03-18
* Fix: Correct use of $expand to avoid an exception when updating from a legacy OS [Pablo Carranza Velez]
* Device-api: Add v2/device/tags api endpoint [Cameron Diver]
* Device-api: Add v2/device/name endpoint [Cameron Diver]
## 9.10.2 - 2019-03-13 ## 9.10.2 - 2019-03-13
* State-engine: Return a noop when waiting for a dependency [Cameron Diver] * State-engine: Return a noop when waiting for a dependency [Cameron Diver]

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "balena-supervisor", "name": "balena-supervisor",
"version": "9.10.2", "version": "9.11.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,7 +1,7 @@
{ {
"name": "balena-supervisor", "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.", "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.10.2", "version": "9.11.0",
"license": "Apache-2.0", "license": "Apache-2.0",
"repository": { "repository": {
"type": "git", "type": "git",