mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-01-02 20:16:47 +00:00
v10.0.4
This commit is contained in:
parent
da3113c1a6
commit
430e58c932
@ -1,3 +1,69 @@
|
|||||||
|
- commits:
|
||||||
|
- subject: Pre-emptively pull required images in parallel
|
||||||
|
hash: 565ef27b1b2c7e86d1b26571cec140e9da0ac14c
|
||||||
|
body: ''
|
||||||
|
footer:
|
||||||
|
Change-type: patch
|
||||||
|
change-type: patch
|
||||||
|
author: Pagan Gazzard
|
||||||
|
- subject: Avoid unnecessary else in Makefile
|
||||||
|
hash: 3945bb3a87eb18c6bcd175123d1cfa5afea78faf
|
||||||
|
body: ''
|
||||||
|
footer:
|
||||||
|
Change-type: patch
|
||||||
|
change-type: patch
|
||||||
|
author: Pagan Gazzard
|
||||||
|
- subject: Fix installing the specified npm version in debug builds
|
||||||
|
hash: 34983651d059de7e57cbb7171cf916bb1c033622
|
||||||
|
body: ''
|
||||||
|
footer:
|
||||||
|
Change-type: patch
|
||||||
|
change-type: patch
|
||||||
|
author: Pagan Gazzard
|
||||||
|
- subject: Remove the dummy node-build step for debug images
|
||||||
|
hash: ec816d115e98f0309ab0accbb69a45ba7c54fbab
|
||||||
|
body: ''
|
||||||
|
footer:
|
||||||
|
Change-type: patch
|
||||||
|
change-type: patch
|
||||||
|
author: Pagan Gazzard
|
||||||
|
- subject: Reduce differences between the debug and standard dockerfiles
|
||||||
|
hash: 31257f8f391e3a3500ca3772f0ab7cccb904b622
|
||||||
|
body: ''
|
||||||
|
footer:
|
||||||
|
Change-type: patch
|
||||||
|
change-type: patch
|
||||||
|
author: Pagan Gazzard
|
||||||
|
- subject: Run image cleanup in parallel
|
||||||
|
hash: 34af6e9b2a1306111033578632e5483ff5e07e66
|
||||||
|
body: ''
|
||||||
|
footer:
|
||||||
|
Change-type: patch
|
||||||
|
change-type: patch
|
||||||
|
author: Pagan Gazzard
|
||||||
|
- subject: Do intermediate build pushing in parallel
|
||||||
|
hash: 39e87414027525bc46467ea27cf864a49b89e8fc
|
||||||
|
body: ''
|
||||||
|
footer:
|
||||||
|
Change-type: patch
|
||||||
|
change-type: patch
|
||||||
|
author: Pagan Gazzard
|
||||||
|
- subject: Minimise the amount of cache busted by a changed ARG
|
||||||
|
hash: 1366abc7b113216fc007c78797a6c4e34d267a45
|
||||||
|
body: ''
|
||||||
|
footer:
|
||||||
|
Change-type: patch
|
||||||
|
change-type: patch
|
||||||
|
author: Pagan Gazzard
|
||||||
|
- subject: Fix cache usage for builds
|
||||||
|
hash: 0ad5d8688c2c09dc48cacd4a4af5bf7d8118709c
|
||||||
|
body: ''
|
||||||
|
footer:
|
||||||
|
Change-type: patch
|
||||||
|
change-type: patch
|
||||||
|
author: Pagan Gazzard
|
||||||
|
version: 10.0.4
|
||||||
|
date: 2019-07-19T18:00:31.121Z
|
||||||
- commits:
|
- commits:
|
||||||
- subject: 'fix: Don''t consider volume supervised labels when comparing'
|
- subject: 'fix: Don''t consider volume supervised labels when comparing'
|
||||||
hash: cbb079e8dc03b9ef85336a8fbd22b85574c7db7e
|
hash: cbb079e8dc03b9ef85336a8fbd22b85574c7db7e
|
||||||
|
12
CHANGELOG.md
12
CHANGELOG.md
@ -4,6 +4,18 @@ 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/).
|
||||||
|
|
||||||
|
## 10.0.4 - 2019-07-19
|
||||||
|
|
||||||
|
* Pre-emptively pull required images in parallel [Pagan Gazzard]
|
||||||
|
* Avoid unnecessary else in Makefile [Pagan Gazzard]
|
||||||
|
* Fix installing the specified npm version in debug builds [Pagan Gazzard]
|
||||||
|
* Remove the dummy node-build step for debug images [Pagan Gazzard]
|
||||||
|
* Reduce differences between the debug and standard dockerfiles [Pagan Gazzard]
|
||||||
|
* Run image cleanup in parallel [Pagan Gazzard]
|
||||||
|
* Do intermediate build pushing in parallel [Pagan Gazzard]
|
||||||
|
* Minimise the amount of cache busted by a changed ARG [Pagan Gazzard]
|
||||||
|
* Fix cache usage for builds [Pagan Gazzard]
|
||||||
|
|
||||||
## 10.0.3 - 2019-07-19
|
## 10.0.3 - 2019-07-19
|
||||||
|
|
||||||
* Fix: Don't consider volume supervised labels when comparing [Cameron Diver]
|
* Fix: Don't consider volume supervised labels when comparing [Cameron Diver]
|
||||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "balena-supervisor",
|
"name": "balena-supervisor",
|
||||||
"version": "10.0.3",
|
"version": "10.0.4",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -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": "10.0.3",
|
"version": "10.0.4",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
Loading…
Reference in New Issue
Block a user