This commit is contained in:
flowzone-app[bot] 2023-10-25 13:04:14 +00:00 committed by GitHub
parent 2a078b19b2
commit 06cf939958
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 27 additions and 6 deletions

View File

@ -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:
- subject: Ignore `expose` service compose configuration
hash: 416170bc05a9a725f5a7f8ecbab4f8b1c8da5ddf

View File

@ -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/).
# v15.0.1
## (2023-10-25)
* Expose ports from port mappings on services [Felipe Lalanne]
# v15.0.0
## (2023-10-23)

View File

@ -1 +1 @@
15.0.0
15.0.1

View File

@ -2,6 +2,6 @@ name: balena-supervisor
description: 'Balena Supervisor: balena''s agent on devices.'
joinable: false
type: sw.application
version: 15.0.0
version: 15.0.1
provides:
- slug: sw.compose.long-volume-syntax

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "balena-supervisor",
"version": "15.0.0",
"version": "15.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "balena-supervisor",
"version": "15.0.0",
"version": "15.0.1",
"license": "Apache-2.0",
"dependencies": {
"@balena/systemd": "^0.4.1",

View File

@ -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": "15.0.0",
"version": "15.0.1",
"license": "Apache-2.0",
"repository": {
"type": "git",
@ -140,6 +140,6 @@
"yargs": "^15.4.1"
},
"versionist": {
"publishedAt": "2023-10-23T17:31:09.234Z"
"publishedAt": "2023-10-25T13:04:05.829Z"
}
}