27.0.0 (2024-04-04)
⚠ BREAKING CHANGES
- 💥 refactor custom services and port exposure (7e349d4)
Upgrade notes
Custom services and port exposure have been redesigned, requiring the following changes:
- if you were overriding port exposure behavior using the
expose
orexposeInternal
flags, you should replace them with a service name to boolean mapping, i.e. replace this:
ports:
web:
expose: false
exposeInternal: true
with this:
ports:
web:
expose:
default: false
internal: true
- if you were previously using the
service.internal
value, you should migrate the values to theservice.additionalServices.internal
value instead; this should yield the same results, but make sure to carefully check for any changes!
Features
- restrict access to secrets (8fbae97)
Bug Fixes
- rbac: do not create clusterrole for namespace deployment on Traefik v3 (d0f3442)
- remove null annotations on dashboard
IngressRoute
(606ab52) - use hostIP also on entrypoint and healthChecks when set (82a3cab)
New Contributors
- @samox73 made their first contribution in #1016
- @ChandonPierre made their first contribution in #1012
- @andrzejpawcenis made their first contribution in #1021
- @jnonino made their first contribution in #1009
- @Zebradil made their first contribution in #992
Full Changelog: v26.1.0...v27.0.0