Skip to content

Commit 62baef3

Browse files
authored
post 1.6.1 - update main (#669)
merge in changes from 1.6.1
1 parent a838994 commit 62baef3

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.6.1 (November 1, 2024)
2+
3+
SECURITY:
4+
5+
* Upgrade to support Envoy `1.31.2`. [[GH-661](https://github.com/hashicorp/consul-dataplane/pull/661)]
6+
17
## 1.6.0 (October 15, 2024)
28

39
SECURITY:

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# prebuilt binaries in any other form.
1212
#
1313
ARG GOLANG_VERSION
14-
FROM envoyproxy/envoy-distroless:v1.31.2 as envoy-binary
14+
FROM envoyproxy/envoy-distroless:v1.32.1 as envoy-binary
1515

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

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

3232
# Modify the envoy-fips binary to be able to bind to privileged ports (< 1024).
3333
FROM debian:bullseye-slim AS setcap-envoy-fips-binary

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ copy-bootstrap-config: ## copy bootstrap config
124124
.PHONY: changelog
125125
changelog: ## build change log
126126
ifdef DP_LAST_RELEASE_GIT_TAG
127-
@changelog-build \
127+
go run github.com/hashicorp/go-changelog/cmd/changelog-build@latest \
128128
-last-release $(DP_LAST_RELEASE_GIT_TAG) \
129129
-entries-dir .changelog/ \
130130
-changelog-template .changelog/changelog.tmpl \

0 commit comments

Comments
 (0)