From 9b970ba66c66ffa476e70db9ea2a7859e9e992d0 Mon Sep 17 00:00:00 2001
From: Lennart Kramer <lennart.kramer@stud.uni-goettingen.de>
Date: Wed, 8 Mar 2023 14:26:30 +0100
Subject: [PATCH] update to version 1.1.8
---
CHANGELOG | 6 ++++++
goemaxima_version | 2 +-
helmmaxima/Chart.yaml | 4 ++--
src/web/web.go | 2 +-
4 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/CHANGELOG b/CHANGELOG
index b613568..4e6f8e9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,10 @@
+1.1.8
+-----
+* Backport cartesian_product fix for 5.44 maxima version
+* Update dependencies
+
1.1.7
+-----
* Fix bug where restart of container without DAC_OVERRIDE capability results in indefinite
restarts of the container
* Fix healthcheck not detecting inability to write to plot directory
diff --git a/goemaxima_version b/goemaxima_version
index 2bf1ca5..18efdb9 100644
--- a/goemaxima_version
+++ b/goemaxima_version
@@ -1 +1 @@
-1.1.7
+1.1.8
diff --git a/helmmaxima/Chart.yaml b/helmmaxima/Chart.yaml
index d78d5cc..2431ea5 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.7
+version: 1.1.8
# 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.7
+appVersion: 1.1.8
diff --git a/src/web/web.go b/src/web/web.go
index 10eabc9..10704c9 100644
--- a/src/web/web.go
+++ b/src/web/web.go
@@ -460,7 +460,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.7\n", hostname)
+ fmt.Fprintf(w, "Hostname: %s, version: 1.1.8\n", hostname)
return
}
// the maxima input to be evaluated
--
GitLab