Skip to content

Commit 4e128fa

Browse files
authored
Merge pull request #3900 from dtrudg/prep-4.3.6
chore: Prepare for 4.3.6 release
2 parents 92d5be4 + 0fa6ac5 commit 4e128fa

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ orbs:
66
parameters:
77
go-version:
88
type: string
9-
default: '1.25.4'
9+
default: '1.25.5'
1010

1111
executors:
1212
node:

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# SingularityCE Changelog
22

3+
## 4.3.6 \[2025-12-16\]
4+
5+
### Security Related Fixes
6+
7+
- Updates bundled CNI plugins to v1.9.0, to fix
8+
[CVE-2025-67499](https://github.com/containernetworking/plugins/security/advisories/GHSA-jv3w-x3r3-g6rm)
9+
Portmap nftables backend can intercept non-local traffic.
10+
311
## 4.3.5 \[2025-12-02\]
412

513
### Security Related Fixes

INSTALL.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ _**NOTE:** if you are updating Go from a older version, make sure you remove
163163
`/usr/local/go` before reinstalling it._
164164

165165
```sh
166-
export VERSION=1.25.3 OS=linux ARCH=amd64 # change this as you need
166+
export VERSION=1.25.5 OS=linux ARCH=amd64 # change this as you need
167167

168168
wget -O /tmp/go${VERSION}.${OS}-${ARCH}.tar.gz \
169169
https://dl.google.com/go/go${VERSION}.${OS}-${ARCH}.tar.gz
@@ -228,11 +228,11 @@ git submodule update --init
228228
By default your clone will be on the `main` branch which is where development
229229
of SingularityCE happens. To build a specific version of SingularityCE, check
230230
out a [release tag](https://github.com/sylabs/singularity/tags) before
231-
compiling. E.g. to build the 4.3.5 release, checkout the
232-
`v4.3.5` tag:
231+
compiling. E.g. to build the 4.3.6 release, checkout the
232+
`v4.3.6` tag:
233233

234234
```sh
235-
git checkout --recurse-submodules v4.3.5
235+
git checkout --recurse-submodules v4.3.6
236236
```
237237

238238
## Compiling SingularityCE

e2e/testdata/Dockerfile.nested

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ubuntu:25.04
22

3-
ARG GOVERSION="go1.25.3"
3+
ARG GOVERSION="go1.25.5"
44
ARG GOOS="linux"
55
ARG GOARCH="amd64"
66
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/go/bin

0 commit comments

Comments
 (0)