v5.0.0
This commit is contained in:
parent
82c7392ea1
commit
9a333243d4
3 changed files with 140 additions and 1 deletions
|
@ -1,3 +1,106 @@
|
|||
- commits:
|
||||
- subject: Update layers/meta-balena to a4097f3317ad9b74ad237239b6b6552da75eeaf9
|
||||
hash: 33221e3ba1f64c5b08bde8eedb43fd52bc11d280
|
||||
body: Update layers/meta-balena
|
||||
footer:
|
||||
Changelog-entry: Update layers/meta-balena to a4097f3317ad9b74ad237239b6b6552da75eeaf9
|
||||
changelog-entry: Update layers/meta-balena to a4097f3317ad9b74ad237239b6b6552da75eeaf9
|
||||
author: Self-hosted Renovate Bot
|
||||
nested:
|
||||
- commits:
|
||||
- subject: Update balena-supervisor to v15
|
||||
hash: c41b110760f510d97ed4244bf39531a0f5bf562b
|
||||
body: |
|
||||
Update balena-supervisor from 14.13.13 to 15.0.1
|
||||
footer:
|
||||
Change-type: major
|
||||
change-type: major
|
||||
author: Felipe Lalanne
|
||||
nested:
|
||||
- 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: balena-supervisor-15.0.1
|
||||
title: ""
|
||||
date: 2023-10-25T13:04:05.171Z
|
||||
- commits:
|
||||
- subject: Ignore `expose` service compose configuration
|
||||
hash: 416170bc05a9a725f5a7f8ecbab4f8b1c8da5ddf
|
||||
body: >
|
||||
The docker EXPOSE directive and corresponding
|
||||
docker-compose `expose`
|
||||
|
||||
service configuration serves as documentation/metadata that a container
|
||||
|
||||
listens on a certain port that may be used for service discovery but it doesn't
|
||||
|
||||
have any real impact on the ability for
|
||||
|
||||
other containers on the same network to access the exposed service via
|
||||
|
||||
the port. In newer engine implementations, this property may conflict
|
||||
|
||||
with other network configurations, and prevent the container from being
|
||||
|
||||
started by the docker engine (see #2211).
|
||||
|
||||
|
||||
This PR removes code that would manage the expose property and takes the
|
||||
|
||||
property out of the whitelist. A composition with the `expose` property
|
||||
|
||||
will result in the log message `Ignoring unsupported or unknown compose fields: expose`.
|
||||
|
||||
|
||||
While this change should not have operational impact, it still removes
|
||||
|
||||
a previously supported configuration and as such there is a chance of it
|
||||
|
||||
being a breaking change for some applications. For this reason it is
|
||||
|
||||
being published as a new major version.
|
||||
footer:
|
||||
Change-type: major
|
||||
change-type: major
|
||||
Closes: "#2211"
|
||||
closes: "#2211"
|
||||
author: Felipe Lalanne
|
||||
nested: []
|
||||
version: balena-supervisor-15.0.0
|
||||
title: ""
|
||||
date: 2023-10-23T17:31:08.436Z
|
||||
- commits:
|
||||
- subject: Add note regading API jitter on target state poll
|
||||
hash: b107868765563e26ec04746f84d1bc15dd211723
|
||||
body: ""
|
||||
footer:
|
||||
Change-type: patch
|
||||
change-type: patch
|
||||
author: Felipe Lalanne
|
||||
nested: []
|
||||
version: balena-supervisor-14.13.14
|
||||
title: ""
|
||||
date: 2023-10-23T13:34:41.452Z
|
||||
version: meta-balena-5.0.0
|
||||
title: ""
|
||||
date: 2023-11-28T14:07:17.302Z
|
||||
version: 5.0.0
|
||||
title: ""
|
||||
date: 2023-11-28T17:08:04.165Z
|
||||
- commits:
|
||||
- subject: Update layers/meta-balena to cb75bf3ef0719cac2b8b080dd99f90d4f6c95705
|
||||
hash: 7bf260a7d489261bb5c8ec903b0d85889a030541
|
||||
|
|
36
CHANGELOG.md
36
CHANGELOG.md
|
@ -1,6 +1,42 @@
|
|||
Change log
|
||||
-----------
|
||||
|
||||
# v5.0.0
|
||||
## (2023-11-28)
|
||||
|
||||
|
||||
<details>
|
||||
<summary> Update layers/meta-balena to a4097f3317ad9b74ad237239b6b6552da75eeaf9 [Self-hosted Renovate Bot] </summary>
|
||||
|
||||
> ## meta-balena-5.0.0
|
||||
> ### (2023-11-28)
|
||||
>
|
||||
>
|
||||
> <details>
|
||||
> <summary> Update balena-supervisor to v15 [Felipe Lalanne] </summary>
|
||||
>
|
||||
>> ### balena-supervisor-15.0.1
|
||||
>> #### (2023-10-25)
|
||||
>>
|
||||
>> * Expose ports from port mappings on services [Felipe Lalanne]
|
||||
>>
|
||||
>> ### balena-supervisor-15.0.0
|
||||
>> #### (2023-10-23)
|
||||
>>
|
||||
>> * Ignore `expose` service compose configuration [Felipe Lalanne]
|
||||
>>
|
||||
>> ### balena-supervisor-14.13.14
|
||||
>> #### (2023-10-23)
|
||||
>>
|
||||
>> * Add note regading API jitter on target state poll [Felipe Lalanne]
|
||||
>>
|
||||
>
|
||||
> </details>
|
||||
>
|
||||
>
|
||||
|
||||
</details>
|
||||
|
||||
# v4.1.11
|
||||
## (2023-11-27)
|
||||
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
4.1.11
|
||||
5.0.0
|
Loading…
Add table
Reference in a new issue