From 7574f7ccf0248df935db19b9b83b16129a9209ef Mon Sep 17 00:00:00 2001 From: "Jason A. Staph" Date: Sat, 12 Feb 2022 21:30:57 -0500 Subject: [PATCH 1/3] feat: add CHANGELOG entry for container version bump to Python 3.8 / Ubuntu 20 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a71a676..2830c3c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## In Development * Advanced Feature: Make securityContext (on Deployments/Jobs) and podSecurityContext (on Pods) configurable. This allows dropping all capabilities, for example. You can override the securityContext for `st2actionrunner`, `st2sensorcontainer`, and `st2client` if your actions or sensors need, for example, additional capabilites that the rest of StackStorm does not need. (#271) (by @cognifloyd) * Prefix template helpers with chart name and format helper comments as template comments. (#272) (by @cognifloyd) +* Migrate from `python 3.6` `Ubuntu Bionic` to `python 3.8` `Ubuntu Focal` as a base StackStorm OS (StackStorm/st2-dockerfiles#54) ## v0.80.0 * Switch st2 to `v3.6` as a new default stable version (#274) From 9b4710d9070fdd0580ab1fdf55f7c193bf13b860 Mon Sep 17 00:00:00 2001 From: "Jason A. Staph" Date: Sun, 13 Feb 2022 11:32:18 -0500 Subject: [PATCH 2/3] fix: update tests to reflect new python version string --- tests/st2tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/st2tests.sh b/tests/st2tests.sh index b6024478..44470a62 100755 --- a/tests/st2tests.sh +++ b/tests/st2tests.sh @@ -7,9 +7,9 @@ load "${BATS_HELPERS_DIR}/bats-file/load.bash" @test 'st2 version deployed and python env are as expected' { run st2 --version assert_success - # st2 3.3dev (9ea417346), on Python 3.6.9 + # st2 3.7dev (4aac99ba8), on Python 3.8.10 assert_line --partial "st2 ${ST2_VERSION}" - assert_line --partial 'on Python 3.6.9' + assert_line --partial 'on Python 3.8.10' } @test 'ST2_AUTH_URL service endpoint is accessible and working' { From 3e51186dd3b1a8090f8d26797e70a888ea512fe6 Mon Sep 17 00:00:00 2001 From: Jacob Floyd Date: Fri, 6 May 2022 17:49:21 -0500 Subject: [PATCH 3/3] switch st2 to v3.7 --- CHANGELOG.md | 1 + Chart.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc057443..e6c144fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog ## In Development +* Switch st2 to `v3.7` as a new default stable version (#274) * Upgrade MongoDB `v4.0` -> `v4.4` as 4.0 has reached its EOL. (#304) * Migrate from `python 3.6` `Ubuntu Bionic` to `python 3.8` `Ubuntu Focal` as a base StackStorm OS (StackStorm/st2-dockerfiles#54) diff --git a/Chart.yaml b/Chart.yaml index 6d648958..4edfe8ad 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 # StackStorm version which refers to Docker images tag -appVersion: "3.6" +appVersion: "3.7" name: stackstorm-ha version: 0.90.0 description: StackStorm K8s Helm Chart, optimized for running StackStorm in HA environment.