From 369118d61f95cd93e172baa22e4ac90dbc938e69 Mon Sep 17 00:00:00 2001 From: Matt Conway Date: Tue, 24 Oct 2023 10:51:17 -0400 Subject: [PATCH] updated changelog --- .app.yml | 3 ++- CHANGELOG.md | 12 ++++++++++++ Rakefile | 2 +- helm/kubetruth/Chart.yaml | 6 ++++-- 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/.app.yml b/.app.yml index a9301a9..d6679f4 100644 --- a/.app.yml +++ b/.app.yml @@ -1,3 +1,4 @@ org: cloudtruth name: kubetruth -version: 1.2.3 +version: 1.2.4 + diff --git a/CHANGELOG.md b/CHANGELOG.md index 45d6cf5..47288e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +1.2.4 (10/24/2023) +------------------ + +* preserve cookies from api server [1914a47](../../commit/1914a47) +* allow async concurrency tuning [82b01f8](../../commit/82b01f8) +* maintenance [f78ca9f](../../commit/f78ca9f) +* fix rakefile var fetching [cad3e11](../../commit/cad3e11) +* reuse ctapi from collection to project [410d1a7](../../commit/410d1a7) +* mention substring matching for project mapping selectors [00155db](../../commit/00155db) +* remove debug statement [0ac48ce](../../commit/0ac48ce) +* project_selector doc updates (#13) [b644a1c](../../commit/b644a1c) + 1.2.3 (03/16/2023) ------------------ diff --git a/Rakefile b/Rakefile index 7865b5f..33457ae 100644 --- a/Rakefile +++ b/Rakefile @@ -16,7 +16,7 @@ def get_var(name, env_name: name.to_s.upcase, yml_name: name.to_s.downcase.to_sy value ||= APP[yml_name] value ||= default - if (prompt || value.nil?) && $stdin.tty? + if (prompt || (value.nil? && required)) && $stdin.tty? print "Enter '#{name}': " value = $stdin.gets end diff --git a/helm/kubetruth/Chart.yaml b/helm/kubetruth/Chart.yaml index 5657d89..7f3c4ce 100644 --- a/helm/kubetruth/Chart.yaml +++ b/helm/kubetruth/Chart.yaml @@ -15,11 +15,13 @@ 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. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.2.3 +version: 1.2.4 + # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: 1.2.3 +appVersion: 1.2.4 +