Skip to content

Commit

Permalink
post 1.4.4 - update version in 1.4.x to 1.4.5-dev (#654)
Browse files Browse the repository at this point in the history
* update version in 1.4.x to 1.4.5-dev

* update envoy to 1.28.7

* update changelog and makefile

---------

Co-authored-by: github-team-consul-core <[email protected]>
  • Loading branch information
jmurret and hc-github-team-consul-core authored Nov 1, 2024
1 parent 9bc3dbf commit 4a58317
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 1.4.4 (November 1, 2024)

SECURITY:

* Upgrade Go to use 1.22.7. This addresses CVE
[CVE-2024-34155](https://nvd.nist.gov/vuln/detail/CVE-2024-34155) [[GH-608](https://github.com/hashicorp/consul-dataplane/pull/608)]
* Upgrade to support Envoy `1.28.7`. [[GH-659](https://github.com/hashicorp/consul-dataplane/pull/659)]

IMPROVEMENTS:

* Update `github.com/hashicorp/consul/proto-public` to v0.6.2. [[GH-585](https://github.com/hashicorp/consul-dataplane/pull/585)]

## 1.4.3 (July 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.28.5 as envoy-binary
FROM envoyproxy/envoy-distroless:v1.28.7 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.28.5-fips1402 as envoy-fips-binary
FROM hashicorp/envoy-fips:1.28.7-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 @@ -123,7 +123,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
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var (
//
// Version must conform to the format expected by github.com/hashicorp/go-version
// for tests to work.
Version = "1.4.4"
Version = "1.4.5"

// A pre-release marker for the version. If this is "" (empty string)
// then it means that it is a final release. Otherwise, this is a pre-release
Expand Down

0 comments on commit 4a58317

Please sign in to comment.