From 3d6adab2b1317f4afb1d15602c5ca6cef8116595 Mon Sep 17 00:00:00 2001 From: "lennart.kramer" <lennart.kramer@stud.uni-goettingen.de> Date: Wed, 11 Jan 2023 20:50:16 +0100 Subject: [PATCH] update to 1.1.6 --- CHANGELOG | 7 +++++++ goemaxima_version | 2 +- helmmaxima/Chart.yaml | 4 ++-- src/web/web.go | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index bfd625f..a8f9a44 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,10 @@ +1.1.6 +----- +* Add stackmaxima versions 2023010400 +* Remove some required capabilities by managing users by changing uid from a webserver thread +* Change webserver build to use `CGO_ENABLED=0` to make it static +* Add NPROC rlimit of 4096 to make fork bombs less lethal + 1.1.5 ----- * Add stackmaxima versions 2022060100, 2022071300 diff --git a/goemaxima_version b/goemaxima_version index e25d8d9..0664a8f 100644 --- a/goemaxima_version +++ b/goemaxima_version @@ -1 +1 @@ -1.1.5 +1.1.6 diff --git a/helmmaxima/Chart.yaml b/helmmaxima/Chart.yaml index 85a2edd..a1a1bb3 100644 --- a/helmmaxima/Chart.yaml +++ b/helmmaxima/Chart.yaml @@ -14,8 +14,8 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. -version: 1.1.5 +version: 1.1.6 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. -appVersion: 1.1.5 +appVersion: 1.1.6 diff --git a/src/web/web.go b/src/web/web.go index 1e83c79..a640e25 100644 --- a/src/web/web.go +++ b/src/web/web.go @@ -456,7 +456,7 @@ func handler(w http.ResponseWriter, r *http.Request, queue <-chan *ChildProcess, health := r.FormValue("health") == "1" if r.Method == "GET" && r.FormValue("input") == "" && !health { hostname, _ := os.Hostname() - fmt.Fprintf(w, "Hostname: %s, version: 1.1.5\n", hostname) + fmt.Fprintf(w, "Hostname: %s, version: 1.1.6\n", hostname) return } // the maxima input to be evaluated -- GitLab