mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-20 22:23:13 +00:00
v15.0.1
This commit is contained in:
parent
2a078b19b2
commit
06cf939958
@ -1,3 +1,19 @@
|
|||||||
|
- commits:
|
||||||
|
- subject: Expose ports from port mappings on services
|
||||||
|
hash: 9bd216327fda4526cd60ccf98178960242383769
|
||||||
|
body: |
|
||||||
|
PR #2217 removed the expose configuration but also caused a regresion
|
||||||
|
where ports set via the `ports` configuration would no longer get
|
||||||
|
exposed to the host, despite portmappings being set. This fixes that
|
||||||
|
issue by exposing only those ports comming from port mappings.
|
||||||
|
footer:
|
||||||
|
Change-type: patch
|
||||||
|
change-type: patch
|
||||||
|
author: Felipe Lalanne
|
||||||
|
nested: []
|
||||||
|
version: 15.0.1
|
||||||
|
title: ""
|
||||||
|
date: 2023-10-25T13:04:05.171Z
|
||||||
- commits:
|
- commits:
|
||||||
- subject: Ignore `expose` service compose configuration
|
- subject: Ignore `expose` service compose configuration
|
||||||
hash: 416170bc05a9a725f5a7f8ecbab4f8b1c8da5ddf
|
hash: 416170bc05a9a725f5a7f8ecbab4f8b1c8da5ddf
|
||||||
|
@ -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!
|
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/).
|
||||||
|
|
||||||
|
# v15.0.1
|
||||||
|
## (2023-10-25)
|
||||||
|
|
||||||
|
* Expose ports from port mappings on services [Felipe Lalanne]
|
||||||
|
|
||||||
# v15.0.0
|
# v15.0.0
|
||||||
## (2023-10-23)
|
## (2023-10-23)
|
||||||
|
|
||||||
|
@ -2,6 +2,6 @@ name: balena-supervisor
|
|||||||
description: 'Balena Supervisor: balena''s agent on devices.'
|
description: 'Balena Supervisor: balena''s agent on devices.'
|
||||||
joinable: false
|
joinable: false
|
||||||
type: sw.application
|
type: sw.application
|
||||||
version: 15.0.0
|
version: 15.0.1
|
||||||
provides:
|
provides:
|
||||||
- slug: sw.compose.long-volume-syntax
|
- slug: sw.compose.long-volume-syntax
|
||||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "balena-supervisor",
|
"name": "balena-supervisor",
|
||||||
"version": "15.0.0",
|
"version": "15.0.1",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "balena-supervisor",
|
"name": "balena-supervisor",
|
||||||
"version": "15.0.0",
|
"version": "15.0.1",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@balena/systemd": "^0.4.1",
|
"@balena/systemd": "^0.4.1",
|
||||||
|
@ -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": "15.0.0",
|
"version": "15.0.1",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
@ -140,6 +140,6 @@
|
|||||||
"yargs": "^15.4.1"
|
"yargs": "^15.4.1"
|
||||||
},
|
},
|
||||||
"versionist": {
|
"versionist": {
|
||||||
"publishedAt": "2023-10-23T17:31:09.234Z"
|
"publishedAt": "2023-10-25T13:04:05.829Z"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user