Skip to content

Commit

Permalink
Add release 2.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
rajch committed Apr 6, 2024
1 parent ac180cf commit c3cc210
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## Release 2.8.5

This release has upgraded dependencies based on CVE recommendations.

* Build with Go version 1.21.9
* A dependency has been updated

## Release 2.8.4

The alpine base image used by `weave-kube` and `weave-npc` was upgraded to version 3.19.1 in the previous release. In this version, the default iptables backend is nftables, and the legacy backend is not included. Our scripts and programs assume legacy as the default backend, and change to nft if autodetected, or if we ask for it. So, the build Dockerfile (reweave/build/Dockerfile) was changed to also install the Alpine `iptables-legacy` package , and change the `iptables-{save,restore}` symbolic links to point to the legacy backend by default.
Expand Down
7 changes: 6 additions & 1 deletion reweave/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

All changes made to the weave net codebase during the reweave effort will be documented in this file.

## 2.8.5-beta1
## 2.8.5

* Changed version in `reweave/Makefile` to 2.8.5
* Modified reweave and main CHANGELOG.md

## 2.8.5-beta1 (ac180cfc)

### Changed

Expand Down
2 changes: 1 addition & 1 deletion reweave/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
IMAGE_VERSION ?= 2.8.5-beta1
IMAGE_VERSION ?= 2.8.5
REGISTRY_USER ?= rajchaudhuri

ALPINE_BASEIMAGE ?= alpine:3.19.1
Expand Down
3 changes: 1 addition & 2 deletions reweave/build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ RUN <<EOCROSSCOMPILERS
set -e
echo 'Acquire::Retries "6";' > /etc/apt/apt.conf.d/80-retries
for platform in ${DEB_CROSSPLATFORMS}; do dpkg --add-architecture $platform; done
apt-get update --error-on=any
apt-get upgrade -y
apt-get update
apt-get install -y build-essential
for platform in ${DEB_CROSSPLATFORMS}; do apt-get install -y crossbuild-essential-${platform}; done
apt-get clean
Expand Down
4 changes: 2 additions & 2 deletions reweave/scans/report.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Vulnerability Report

```
Report date: 2024-04-04
Report date: 2024-04-06
Unique vulnerability count: 17
Images version: 2.8.5-beta1
Images version: 2.8.5
```

## Scanner Details
Expand Down

0 comments on commit c3cc210

Please sign in to comment.