Skip to content

Commit

Permalink
post 1.6.1 - update main (#669)
Browse files Browse the repository at this point in the history
merge in changes from 1.6.1
  • Loading branch information
jmurret authored Nov 21, 2024
1 parent a838994 commit 62baef3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.6.1 (November 1, 2024)

SECURITY:

* Upgrade to support Envoy `1.31.2`. [[GH-661](https://github.com/hashicorp/consul-dataplane/pull/661)]

## 1.6.0 (October 15, 2024)

SECURITY:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# prebuilt binaries in any other form.
#
ARG GOLANG_VERSION
FROM envoyproxy/envoy-distroless:v1.31.2 as envoy-binary
FROM envoyproxy/envoy-distroless:v1.32.1 as envoy-binary

# Modify the envoy binary to be able to bind to privileged ports (< 1024).
FROM debian:bullseye-slim AS setcap-envoy-binary
Expand All @@ -27,7 +27,7 @@ RUN apt-get update && apt install -y libcap2-bin
RUN setcap CAP_NET_BIND_SERVICE=+ep /usr/local/bin/envoy
RUN setcap CAP_NET_BIND_SERVICE=+ep /usr/local/bin/$BIN_NAME

FROM hashicorp/envoy-fips:1.31.2-fips1402 as envoy-fips-binary
FROM hashicorp/envoy-fips:1.32.1-fips1402 as envoy-fips-binary

# Modify the envoy-fips binary to be able to bind to privileged ports (< 1024).
FROM debian:bullseye-slim AS setcap-envoy-fips-binary
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ copy-bootstrap-config: ## copy bootstrap config
.PHONY: changelog
changelog: ## build change log
ifdef DP_LAST_RELEASE_GIT_TAG
@changelog-build \
go run github.com/hashicorp/go-changelog/cmd/changelog-build@latest \
-last-release $(DP_LAST_RELEASE_GIT_TAG) \
-entries-dir .changelog/ \
-changelog-template .changelog/changelog.tmpl \
Expand Down

0 comments on commit 62baef3

Please sign in to comment.