Skip to content

Commit

Permalink
Merge pull request #57 from dtrudg/380_changelog
Browse files Browse the repository at this point in the history
3.8.0 changelog entries
  • Loading branch information
dtrudg authored May 26, 2021
2 parents 3d6f5d8 + d25eaa7 commit 8960f2b
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/RELEASE_PROCEDURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ bug(s), and well covered by tests.
4. Modify the `README.md`, `INSTALL.md`, `CHANGELOG.md` via PR against
the release branch, so that they reflect the version to be released.
5. Apply an annotated tag via `git tag -a -m "SingularityCE v3.8.0" v3.8.0`.
6. Push the tag via `git push upstream v3.8.0-rc.1`.
6. Push the tag via `git push upstream v3.8.0`.
7. Create a tarball via `mconfig -v && make dist`.
8. Test intallation from the tarball.
9. Compute the sha256sum of the tarball e.g. `sha256sum *.tar.gz > sha256sums`.
Expand Down
25 changes: 20 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# SingularityCE Changelog

## v3.8.0-rc.1 [2021-05-11]
## v3.8.0 [2021-05-26]

This is the first release candidate for SingularityCE 3.8.0, the Community
This is the first release of SingularityCE 3.8.0, the Community
Edition of the Singularity container runtime hosted at
https://github.com/sylabs/singularity.

Expand Down Expand Up @@ -54,11 +54,26 @@ of `make test` for ease of use:

----

## v3.7.3 - [2021-04-06]
## v3.7.4 - [2021-05-26]

**Singularity 3.7.4 is the most recent stable release of Singularity prior to Sylabs' fork from https://github.com/hpcng/singularity**

**Singularity 3.7.3 is the most recent stable release of Singularity prior to Sylabs' fork from https://github.com/hpcng/singularity**
The 3.7.4 release is identical to https://github.com/hpcng/singularity/releases/tag/v3.7.4 and is provided for convenience to users arriving from outdated links.

### Security Related Fixes

The 3.7.3 release is identical to https://github.com/hpcng/singularity/releases/tag/v3.7.3 and is provided for convenience to users arriving from outdated links.
- [CVE-2021-32635](https://github.com/sylabs/singularity/security/advisories/GHSA-5mv9-q7fq-9394):
Due to incorrect use of a default URL, singularity action commands
(run/shell/exec) specifying a container using a library:// URI will
always attempt to retrieve the container from the default remote
endpoint (cloud.sylabs.io) rather than the configured remote
endpoint. An attacker may be able to push a malicious container to
the default remote endpoint with a URI that is identical to the URI
used by a victim with a non-default remote endpoint, thus executing
the malicious container.


## v3.7.3 - [2021-04-06]

### Security Related Fixes

Expand Down
9 changes: 2 additions & 7 deletions INSTALL.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
# Installing SingularityCE

**NOTE:** *This installation guide has been updated for the release candidate of
SingularityCE 3.8.0. The `3.8.0-rc1` version that will be installed is a
pre-release of SingularityCE. To install the latest stable version,
substitute the version `3.7.3` in the instructions below. See the `release-3.7` branch for the current stable codebase.*

Since you are reading this from the SingularityCE source code, it will be assumed
that you are building/compiling from source.

Expand Down Expand Up @@ -87,7 +82,7 @@ $ mkdir -p ${GOPATH}/src/github.com/sylabs && \
To build a specific version of SingularityCE, check out a [release tag](https://github.com/sylabs/singularity/tags) before compiling:

```
$ git checkout v3.8.0-rc.1
$ git checkout v3.8.0
```

## Compiling SingularityCE
Expand Down Expand Up @@ -130,7 +125,7 @@ as shown above. Then download the latest
and use it to install the RPM like this:

```
$ export VERSION=3.8.0-rc.1 # this is the singularity version, change as you need
$ export VERSION=3.8.0 # this is the singularity version, change as you need
$ wget https://github.com/sylabs/singularity/releases/download/v${VERSION}/singularity-ce-${VERSION}.tar.gz && \
rpmbuild -tb singularity-ce-${VERSION}.tar.gz && \
Expand Down

0 comments on commit 8960f2b

Please sign in to comment.