v12.10.10

This commit is contained in:
Balena CI 2021-09-07 18:03:20 +03:00 committed by VersionBot
parent dbb563a0ea
commit 7191e7a042
5 changed files with 57 additions and 4 deletions

View File

@ -1,3 +1,49 @@
- commits:
- subject: 'api-keys: Remove os variant parameter for authentication check'
hash: 9e0cbe04c6d1c533c3e66183eca1d3abfb8c381d
body: |
The current code authenticates unmanaged production devices which makes
no sense. Unmanaged devices do not need to authenticate with the API.
footer:
Change-type: patch
change-type: patch
Signed-off-by: Alex Gonzalez <alexg@balena.io>
signed-off-by: Alex Gonzalez <alexg@balena.io>
author: Alex Gonzalez
nested: []
- subject: 'os-release: Use developmentMode to ascertain OS variant in new releases'
hash: 1abd10a12947f05ae328496e98fcbcdc6a834ce1
body: |
Newer BalenaOS releases have replaced OS variants for a developmentMode
configuration setting. This commit uses this variable to set the OS
variant in the absence of `VARIANT_ID` from the os-release file.
footer:
Change-type: patch
change-type: patch
Signed-off-by: Alex Gonzalez <alexg@balena.io>
signed-off-by: Alex Gonzalez <alexg@balena.io>
author: Alex Gonzalez
nested: []
- subject: 'config: Add developmentMode to schema'
hash: 4ad7a3ae917c888f267463fd3d5b839439cf40e6
body: >
Add a `developmentMode` configuration variable to the schema. Do not
expose
this on the device target state until local key-based authentication is
sorted.
footer:
Relates-to: 'https://jel.ly.fish/e9525e9e-aa74-478c-b931-52951c679f78'
relates-to: 'https://jel.ly.fish/e9525e9e-aa74-478c-b931-52951c679f78'
Change-type: patch
change-type: patch
Signed-off-by: Alex Gonzalez <alexg@balena.io>
signed-off-by: Alex Gonzalez <alexg@balena.io>
author: Alex Gonzalez
nested: []
version: 12.10.10
date: 2021-09-07T13:47:51.206Z
- commits: - commits:
- subject: Update URL to balena-proxy-config source code - subject: Update URL to balena-proxy-config source code
hash: 2bcc3aeb56cce11b21d411ee55492109ebaf259f hash: 2bcc3aeb56cce11b21d411ee55492109ebaf259f

View File

@ -4,6 +4,13 @@ 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/).
# v12.10.10
## (2021-09-07)
* api-keys: Remove os variant parameter for authentication check [Alex Gonzalez]
* os-release: Use developmentMode to ascertain OS variant in new releases [Alex Gonzalez]
* config: Add developmentMode to schema [Alex Gonzalez]
# v12.10.9 # v12.10.9
## (2021-09-02) ## (2021-09-02)

View File

@ -1 +1 @@
12.10.9 12.10.10

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "balena-supervisor", "name": "balena-supervisor",
"version": "12.10.9", "version": "12.10.10",
"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": "12.10.9", "version": "12.10.10",
"license": "Apache-2.0", "license": "Apache-2.0",
"repository": { "repository": {
"type": "git", "type": "git",
@ -138,6 +138,6 @@
} }
}, },
"versionist": { "versionist": {
"publishedAt": "2021-09-02T12:25:21.880Z" "publishedAt": "2021-09-07T13:47:51.416Z"
} }
} }