Skip to content

Releases: caddyserver/gateway

v0.1.0

30 May 20:11
v0.1.0
bcf7db1
Compare
Choose a tag to compare

Breaking Changes

In this release, we updated our Gateway API dependency to v1.1.0. The update from v1.0.0 should be relatively painless, unless you are using the BackendTLSPolicy resource. If you are using the BackendTLSPolicy resource, the easiest way to update is to delete all your existing BackendTLSPolicies, update the CRDs and Caddy Gateway, then re-create your resources using the newer v1alpha3 version.

Update commands:

# Install Gateway API CRDs (including those that are experimental)
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.1.0/experimental-install.yaml

# Install Gateway API CRDs (only stable resources)
# NOTE: **Do not use this command if you already ran the `experimental-install`**
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.1.0/standard-install.yaml

See https://gateway-api.sigs.k8s.io/guides/#v11-upgrade-notes for more details on upgrading.

Changelog

Added

Fixed

  • 048a7c6: fix(controller): remove debug log that leaks the entire caddy config (@matthewpi)

Documentation

CI

Other work

Full Changelog: v0.0.1...v0.1.0

v0.0.1

20 May 23:35
v0.0.1
8891b63
Compare
Choose a tag to compare

First public release