Skip to content

Releases: zalando/skipper

v0.13.24

09 Feb 17:34
4a4eb65
Compare
Choose a tag to compare

Changes

Password support for Redis (#1703)

  • Set Redis password using environment variable

Docker image

Docker image is available in Zalando's Open Source registry:

docker run -it registry.opensource.zalan.do/teapot/skipper:v0.13.24 skipper --help
# arm64
docker run -it registry.opensource.zalan.do/teapot/skipper-arm64:v0.13.24 skipper --help
# arm v7 32bit
docker run -it registry.opensource.zalan.do/teapot/skipper-armv7:v0.13.24 skipper --help

v0.13.23

08 Feb 16:55
6ab914e
Compare
Choose a tag to compare

Changes

Wait for multiple dataclients (#1710)

Docker image

Docker image is available in Zalando's Open Source registry:

docker run -it registry.opensource.zalan.do/teapot/skipper:v0.13.23 skipper --help
# arm64
docker run -it registry.opensource.zalan.do/teapot/skipper-arm64:v0.13.23 skipper --help
# arm v7 32bit
docker run -it registry.opensource.zalan.do/teapot/skipper-armv7:v0.13.23 skipper --help

v0.13.22

05 Feb 13:51
0313047
Compare
Choose a tag to compare

Changes

Document default filters wrt. grantCallback route (#1700)

Docker image

Docker image is available in Zalando's Open Source registry:

docker run -it registry.opensource.zalan.do/teapot/skipper:v0.13.22 skipper --help
# arm64
docker run -it registry.opensource.zalan.do/teapot/skipper-arm64:v0.13.22 skipper --help
# arm v7 32bit
docker run -it registry.opensource.zalan.do/teapot/skipper-armv7:v0.13.22 skipper --help

v0.13.21

26 Jan 14:53
114b1e7
Compare
Choose a tag to compare

Changes

add lightstep tracing propagators (#1696)
this is #1652 redone with latest tracer

Docker image

Docker image is available in Zalando's Open Source registry:

docker run -it registry.opensource.zalan.do/teapot/skipper:v0.13.21 skipper --help
# arm64
docker run -it registry.opensource.zalan.do/teapot/skipper-arm64:v0.13.21 skipper --help
# arm v7 32bit
docker run -it registry.opensource.zalan.do/teapot/skipper-armv7:v0.13.21 skipper --help

v0.13.20

26 Jan 11:15
e1c1df6
Compare
Choose a tag to compare

Changes

increase visbility for route not found (#1698)

Docker image

Docker image is available in Zalando's Open Source registry:

docker run -it registry.opensource.zalan.do/teapot/skipper:v0.13.20 skipper --help
# arm64
docker run -it registry.opensource.zalan.do/teapot/skipper-arm64:v0.13.20 skipper --help
# arm v7 32bit
docker run -it registry.opensource.zalan.do/teapot/skipper-armv7:v0.13.20 skipper --help

v0.13.19

26 Jan 10:58
f5f2314
Compare
Choose a tag to compare

Changes

Closes upgraded connection on copy completion (#1670)
Proxy copies data via io.Copy between upgraded request and backend connections in
two goroutines and waits for both copy calls to complete:

wait {
        copy backend to request // 1
        copy request to backend // 2
}

When backend connection is closed, first copy call completes
but the second is still blocked on read from request connection until
it is closed (i.e. client disconnects).
This change waits for either copy to complete and closes both request and
backend connections and thus unblocks the second copy.
Fixes #1669

Docker image

Docker image is available in Zalando's Open Source registry:

docker run -it registry.opensource.zalan.do/teapot/skipper:v0.13.19 skipper --help
# arm64
docker run -it registry.opensource.zalan.do/teapot/skipper-arm64:v0.13.19 skipper --help
# arm v7 32bit
docker run -it registry.opensource.zalan.do/teapot/skipper-armv7:v0.13.19 skipper --help

v0.13.18

25 Jan 15:59
657ad4e
Compare
Choose a tag to compare

Changes

add formula with examples on clientRatelimit filter (#1684)

Docker image

Docker image is available in Zalando's Open Source registry:

docker run -it registry.opensource.zalan.do/teapot/skipper:v0.13.18 skipper --help
# arm64
docker run -it registry.opensource.zalan.do/teapot/skipper-arm64:v0.13.18 skipper --help
# arm v7 32bit
docker run -it registry.opensource.zalan.do/teapot/skipper-armv7:v0.13.18 skipper --help

v0.13.17

25 Jan 15:22
a8f056f
Compare
Choose a tag to compare

Changes

Opentracing: set http.status_code correctly (#1697)

Docker image

Docker image is available in Zalando's Open Source registry:

docker run -it registry.opensource.zalan.do/teapot/skipper:v0.13.17 skipper --help
# arm64
docker run -it registry.opensource.zalan.do/teapot/skipper-arm64:v0.13.17 skipper --help
# arm v7 32bit
docker run -it registry.opensource.zalan.do/teapot/skipper-armv7:v0.13.17 skipper --help

v0.13.16

25 Jan 10:49
fa2286e
Compare
Choose a tag to compare

Changes

Deprecate kubernetes-enable-east-west feature (#1692)
With #1676 our approach to East-West traffic relies on Kubernetes
objects, Ingresses and RouteGroups, explicitly defining internal
hostnames instead of Skipper adding it automatically. This way, each
application can decide whether it accepts just internal traffic.
This commit deprecates the previous feature handling East-West traffic,
marking it as deprecated on the CLI help, raising a warning message when
used and updating the documentation. On the documentation, it marks the
old feature as deprecated with an Attention note, as well as, updates
any reference and tutorials to East-West traffic, suggesting the usage
of the East-West Range feature.

Docker image

Docker image is available in Zalando's Open Source registry:

docker run -it registry.opensource.zalan.do/teapot/skipper:v0.13.16 skipper --help
# arm64
docker run -it registry.opensource.zalan.do/teapot/skipper-arm64:v0.13.16 skipper --help
# arm v7 32bit
docker run -it registry.opensource.zalan.do/teapot/skipper-armv7:v0.13.16 skipper --help

v0.13.15

21 Jan 15:03
96ac9bb
Compare
Choose a tag to compare

Changes

update staticcheck (#1695)

Docker image

Docker image is available in Zalando's Open Source registry:

docker run -it registry.opensource.zalan.do/teapot/skipper:v0.13.15 skipper --help
# arm64
docker run -it registry.opensource.zalan.do/teapot/skipper-arm64:v0.13.15 skipper --help
# arm v7 32bit
docker run -it registry.opensource.zalan.do/teapot/skipper-armv7:v0.13.15 skipper --help