mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-18 21:27:54 +00:00
v14.0.22
This commit is contained in:
parent
a9e1209219
commit
4d888d727a
@ -1,3 +1,20 @@
|
||||
- commits:
|
||||
- subject: Split compose/volume tests into unit/integration
|
||||
hash: 321dad44c33025d8af4b6cd82f681a14ff8e4933
|
||||
body: |
|
||||
This also needs to modify the test environment as database migrations
|
||||
will look for `config.json` in the location given by the variable
|
||||
`CONFIG_MOUNT_POINT`.
|
||||
|
||||
The volume tests now run against the actual docker engine setup via dind
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: Felipe Lalanne
|
||||
nested: []
|
||||
version: 14.0.22
|
||||
title: "'Refactor supervisor tests that modify files on the OS'"
|
||||
date: 2022-09-13T20:48:09.190Z
|
||||
- commits:
|
||||
- subject: Fix withDefault type helper to work with boolean
|
||||
hash: 3e45e9561e109186ea038c6d3b67f54071ee8a67
|
||||
|
@ -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/).
|
||||
|
||||
# v14.0.22
|
||||
## (2022-09-13)
|
||||
|
||||
* Split compose/volume tests into unit/integration [Felipe Lalanne]
|
||||
|
||||
# v14.0.21
|
||||
## (2022-09-13)
|
||||
|
||||
|
@ -2,6 +2,6 @@ name: balena-supervisor
|
||||
description: 'Balena Supervisor: balena''s agent on devices.'
|
||||
joinable: false
|
||||
type: sw.application
|
||||
version: 14.0.21
|
||||
version: 14.0.22
|
||||
provides:
|
||||
- slug: sw.compose.long-volume-syntax
|
||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "balena-supervisor",
|
||||
"version": "14.0.21",
|
||||
"version": "14.0.22",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -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": "14.0.21",
|
||||
"version": "14.0.22",
|
||||
"license": "Apache-2.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@ -13,8 +13,8 @@
|
||||
"lint": "balena-lint -e ts -e js --typescript src/ test/ typings/ build-utils/ webpack.config.js",
|
||||
"test:build": "tsc --noEmit && tsc --noEmit --project tsconfig.js.json",
|
||||
"test:unit": "mocha --config test/unit/.mocharc.js",
|
||||
"test:integration": "find test/integration -name *.spec.ts | xargs -n 1 -I {} sh -c 'mocha --config test/integration/.mocharc.js {} || exit 255'",
|
||||
"test:integration:single": "mocha --config test/integration/.mocharc.js test/integration/**/*.spec.ts",
|
||||
"test:integration": "find test/integration -name *.spec.ts | xargs -n 1 -I {} sh -c 'mocha --config test/integration/.mocharc.js {} || exit 255'",
|
||||
"test:integration:single": "mocha --config test/integration/.mocharc.js test/integration/**/*.spec.ts",
|
||||
"test:legacy": "mocha --config test/legacy/.mocharc.js",
|
||||
"test:node": "npm run test:unit && npm run test:integration && npm run test:legacy",
|
||||
"test:env": "docker-compose -f docker-compose.test.yml -f docker-compose.dev.yml up --build; npm run compose:down",
|
||||
@ -142,6 +142,6 @@
|
||||
}
|
||||
},
|
||||
"versionist": {
|
||||
"publishedAt": "2022-09-13T20:13:18.516Z"
|
||||
"publishedAt": "2022-09-13T20:48:09.601Z"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user