Welcome to Trickster 2.0.3! 🎉
In this release, we:
- improved ALB compatibility, including adding Time Series Merge support for
topkandbottomkPromQL aggregators - fixed a defect in Tracing configurations that would prevent some configs from being effective
- added additional test coverage
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.3
# 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.3Run via kubernetes/helm
helm install trickster oci://ghcr.io/trickstercache/charts/trickster --version '^2' --set image.tag="2.0.3"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
- test: use synctest for healthcheck timing by @houyuwushang in #1031
- fix: finalize topk and bottomk tsm results by @houyuwushang in #1035
- test: cover sharded query-range integration by @houyuwushang in #1033
- fix: [alb] expose localresponse via Handlers() so paths: overrides apply by @thinker0 in #1029
- fix: apply configured OTLP endpoint by @houyuwushang in #1037
New Contributors
- @houyuwushang made their first contribution in #1031
Full Changelog: v2.0.2...v2.0.3