Welcome to Trickster 2.0.1! 🎉
In this release, we:
- updated to Go 1.26, which provides better garbage collection and reduced memory usage
- improved speed and performance of the Memory Cache
- squashed several ALB bugs that could cause
502 Bad Gatewayresponses
Run via docker
# via ghcr.io
docker run --name trickster -d -v /path/to/trickster.yaml:/etc/trickster/trickster.yaml -p 0.0.0.0:8480:8480 ghcr.io/trickstercache/trickster:2.0.1
# via docker.io
docker run --name trickster -d -v /path/to/trickster.yaml:/etc/trickster/trickster.yaml -p 0.0.0.0:8480:8480 docker.io/trickstercache/trickster:2.0.1Run via kubernetes/helm
helm install trickster oci://ghcr.io/trickstercache/charts/trickster --version '^2' --set image.tag="2.0.1"Note:
- The trickster chart version is managed separately from the Trickster version.
- The latest major version is 2.x, and supports a minimum Trickster version of 2.0.0 (beta3 or later).
For more information, see:
- Trying Out Trickster
- trickster's helm chart.
What's Changed
- chore: Bump Go version to 1.26 by @crandles in #913
- ci: cancel in progress workflows (to same PR/branch) by @crandles in #914
- fix: [alb] allow alb merging to occur by @crandles in #916
- feat: [cache/memory] use ristretto as memory backend by @crandles in #917
- feat: [alb] add concurrency limit options by @crandles in #918
- retain pre-existing hc target status on config reload by @jranson in #919
Full Changelog: v2.0.0...v2.0.1