Skip to content

Commit f6ab0fd

Browse files
authored
Merge pull request #3634 from dtrudg/merge-4.3.1-main
chore: merge release-4.3 at v4.3.1 into main
2 parents 12f093e + 489a3d6 commit f6ab0fd

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

Diff for: .circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ orbs:
66
parameters:
77
go-version:
88
type: string
9-
default: '1.24.0'
9+
default: '1.24.2'
1010

1111
executors:
1212
node:

Diff for: CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# SingularityCE Changelog
22

3+
## 4.3.1 \[2025-04-11\]
4+
5+
### Bug Fixes
6+
7+
- Update bundled squashfuse to 0.6.0, which includes `.`, `..` entries in
8+
`getdents()` results, fixing errors with some applications.
9+
310
## 4.3.0 \[2025-03-13\]
411

512
### Behaviour Changes

Diff for: INSTALL.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ _**NOTE:** if you are updating Go from a older version, make sure you remove
162162
`/usr/local/go` before reinstalling it._
163163

164164
```sh
165-
export VERSION=1.24.0 OS=linux ARCH=amd64 # change this as you need
165+
export VERSION=1.24.2 OS=linux ARCH=amd64 # change this as you need
166166

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

233233
```sh
234-
git checkout --recurse-submodules v4.3.0
234+
git checkout --recurse-submodules v4.3.1
235235
```
236236

237237
## Compiling SingularityCE
@@ -334,7 +334,7 @@ build and install the RPM like this:
334334
<!-- markdownlint-disable MD013 -->
335335

336336
```sh
337-
export VERSION=4.3.0 # this is the singularity version, change as you need
337+
export VERSION=4.3.1 # this is the singularity version, change as you need
338338

339339
# Fetch the source
340340
wget https://github.com/sylabs/singularity/releases/download/v${VERSION}/singularity-ce-${VERSION}.tar.gz

Diff for: e2e/testdata/Dockerfile.nested

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ubuntu:24.10
22

3-
ARG GOVERSION="go1.24.0"
3+
ARG GOVERSION="go1.24.2"
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)