From ddf199566c0966b674e4a9af0902d1ddaad8eceb Mon Sep 17 00:00:00 2001 From: Ludovic Fernandez Date: Thu, 13 Dec 2018 19:42:03 -0800 Subject: [PATCH] Prepare release v1.7.6 --- CHANGELOG.md | 7 +++++++ build.Dockerfile | 8 ++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11fbef6c4..898e4db28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [v1.7.6](https://github.com/containous/traefik/tree/v1.7.6) (2018-12-07) +[All Commits](https://github.com/containous/traefik/compare/v1.7.5...v1.7.6) + +**Bug fixes:** +- **[consulcatalog]** Fix label segmentation when using custom prefix ([#4272](https://github.com/containous/traefik/pull/4272) by [hsmade](https://github.com/hsmade)) +- Update to Go 1.11.3 [CVE-2018-16875](https://nvd.nist.gov/vuln/detail/CVE-2018-16875) + ## [v1.7.5](https://github.com/containous/traefik/tree/v1.7.5) (2018-12-03) [All Commits](https://github.com/containous/traefik/compare/v1.7.4...v1.7.5) diff --git a/build.Dockerfile b/build.Dockerfile index 52b1b8bab..2b99ca322 100644 --- a/build.Dockerfile +++ b/build.Dockerfile @@ -4,8 +4,7 @@ RUN apk --update upgrade \ && apk --no-cache --no-progress add git mercurial bash gcc musl-dev curl tar \ && rm -rf /var/cache/apk/* -RUN go get github.com/containous/go-bindata/... \ -&& go get golang.org/x/lint/golint \ +RUN go get golang.org/x/lint/golint \ && go get github.com/kisielk/errcheck \ && go get github.com/client9/misspell/cmd/misspell @@ -13,6 +12,11 @@ RUN go get github.com/containous/go-bindata/... \ ARG DOCKER_VERSION=17.03.2 ARG DEP_VERSION=0.4.1 +# Download go-bindata binary to bin folder in $GOPATH +RUN mkdir -p /usr/local/bin \ + && curl -fsSL -o /usr/local/bin/go-bindata https://github.com/containous/go-bindata/releases/download/v1.0.0/go-bindata \ + && chmod +x /usr/local/bin/go-bindata + # Download dep binary to bin folder in $GOPATH RUN mkdir -p /usr/local/bin \ && curl -fsSL -o /usr/local/bin/dep https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 \