From 6cf3af03171f2a0412c3eb7390545dd2df0e1feb Mon Sep 17 00:00:00 2001 From: James Ranson Date: Tue, 2 Jun 2020 08:57:19 -0600 Subject: [PATCH 1/2] Update new-changed-1.1.md --- docs/new-changed-1.1.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/new-changed-1.1.md b/docs/new-changed-1.1.md index 63a9db624..045c49493 100644 --- a/docs/new-changed-1.1.md +++ b/docs/new-changed-1.1.md @@ -2,7 +2,7 @@ ## Pre-release -Trickster 1.1 is currently in Public Beta. We anticipate a short beta cycle with an expected GA release in mid-May 2020. This document may be updated with new information as the cycle progresses. +Trickster 1.1 is currently in Public Beta. We anticipate a short beta cycle with an expected GA release the first week of June 2020. This document may be updated with new information as the cycle progresses. ## What's Improved @@ -21,14 +21,14 @@ Trickster 1.1 is currently in Public Beta. We anticipate a short beta cycle with - In-process config reloading via HUP or optional http listener endpoint - Added `-validate-config` command line flag - Customizable pprof debugging server configurations -- Updated to OpenTelemetry 0.5.0, streamlined Tracing configs, added Zipkin exporter support +- Updated to OpenTelemetry 0.6.0, streamlined Tracing configs, added Zipkin exporter support - Updated Named Locks package to support RWMutex for concurrent cached object reads - New Rules Engine for custom request handling and rewriting - HTTP 2.0 Support - systemd service file (`trickster.service`) is relocated from `./cmd/trickster/conf/` to `./deploy/systemd/` - `rangesim` package has been rebranded as `mockster`, and moved to [its own project](https://github.com/tricksterproxy/mockster), with its own docker image using port `8482` -- Fully support acceleration of HTTP POST requests to Prometheus `query` and `query_range` endpoints -- Updated dependencies to Go 1.14.2, Alpine 3.11.5, InfluxDB 1.8.0 +- Fully support acceleration of HTTP POST requests to Prometheus and InfluxDB endpoints +- Updated dependencies to Go 1.14.3, Alpine 3.12, InfluxDB 1.8.0 ## Installing From 5fbce66c3ac9fece2d358b3915008ab36df26345 Mon Sep 17 00:00:00 2001 From: James Ranson Date: Tue, 2 Jun 2020 08:59:40 -0600 Subject: [PATCH 2/2] bump dependency versions in Dockerfile --- deploy/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/Dockerfile b/deploy/Dockerfile index 9e2001fe5..5ee7efaa7 100644 --- a/deploy/Dockerfile +++ b/deploy/Dockerfile @@ -1,13 +1,13 @@ ARG IMAGE_ARCH=amd64 -FROM golang:1.14.2 as builder +FROM golang:1.14.3 as builder COPY . /go/src/github.com/tricksterproxy/trickster WORKDIR /go/src/github.com/tricksterproxy/trickster ARG GOARCH=amd64 RUN GOOS=linux GOARCH=${GOARCH} CGO_ENABLED=0 make build -FROM ${IMAGE_ARCH}/alpine:3.11.6 +FROM ${IMAGE_ARCH}/alpine:3.12 LABEL maintainer "The Trickster Authors " COPY --from=builder /go/src/github.com/tricksterproxy/trickster/OPATH/trickster /usr/local/bin/trickster