From 3a7f9127a5be7c8311ea8c1cfbe306083cc1b217 Mon Sep 17 00:00:00 2001 From: Frederic Date: Thu, 18 Feb 2021 15:54:35 +0100 Subject: [PATCH 1/3] update changelog --- CHANGELOG.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73a0f823..e73fd13f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.3] - 2021-02-18 + +## Fixed + +- Wait for all containers in a stackl job pod to be ready (#198) +- Check if stack instance exists before deleting it (#199) + +## Added + +- Configurable vault image for vault secret handler (#200) +- Secrets can now be supplied for each service (#201) +- Terraform backend can now be set with params + +## Changed + +- Force delete now tries to delete every functional requirement (#213) +- Error message now also gets logged in agent + ## [0.3.2] - 2021-01-28 ### Fixed @@ -75,7 +93,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add reporting policies - Add codeql-analysis -[unreleased]: https://github.com/stacklio/stackl/compare/v0.3.2...HEAD +[unreleased]: https://github.com/stacklio/stackl/compare/v0.3.3...HEAD +[0.3.3]: https://github.com/stacklio/stackl/compare/v0.3.2...v0.3.3 [0.3.2]: https://github.com/stacklio/stackl/compare/v0.3.1...v0.3.2 [0.3.1]: https://github.com/stacklio/stackl/compare/v0.3.0...v0.3.1 [0.3.0]: https://github.com/stacklio/stackl/compare/v0.2.6...v0.3.0 From 22288b6829ba727c5982bbbf6cdf01d7d5655e28 Mon Sep 17 00:00:00 2001 From: Stef Graces Date: Tue, 23 Feb 2021 11:06:38 +0100 Subject: [PATCH 2/3] Change version to 0.3.3 --- stackl/agent/pyproject.toml | 2 +- stackl/cli/setup.py | 4 ++-- stackl/core/pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/stackl/agent/pyproject.toml b/stackl/agent/pyproject.toml index 25c27873..c96caeac 100644 --- a/stackl/agent/pyproject.toml +++ b/stackl/agent/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "agent" -version = "0.3.3dev" +version = "0.3.3" description = "" authors = ["Frederic "] diff --git a/stackl/cli/setup.py b/stackl/cli/setup.py index 3a35701f..ef542624 100644 --- a/stackl/cli/setup.py +++ b/stackl/cli/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -__version__ = "0.3.3dev" +__version__ = "0.3.3" setup( name='stackl-cli', @@ -8,7 +8,7 @@ py_modules=['stackl', 'commands', 'context'], packages=find_packages(), install_requires=[ - f'stackl-client==0.3.0', 'pyYAML==5.3', 'Click==7.0', + f'stackl-client==0.3.3', 'pyYAML==5.3', 'Click==7.0', 'mergedeep==1.3.0', 'tabulate==0.8.6', 'glom==19.10.0' ], entry_points=''' diff --git a/stackl/core/pyproject.toml b/stackl/core/pyproject.toml index 7a0cc672..0bdd19cb 100644 --- a/stackl/core/pyproject.toml +++ b/stackl/core/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "core" -version = "0.3.3dev" +version = "0.3.3" description = "" authors = ["Frederic "] From 020007d57ab1e3cf368666982ec87db7d3f69d4a Mon Sep 17 00:00:00 2001 From: Stef Graces Date: Tue, 23 Feb 2021 11:09:29 +0100 Subject: [PATCH 3/3] Change headings and capitalization --- CHANGELOG.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e73fd13f..19af34ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,18 +9,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.3.3] - 2021-02-18 -## Fixed +### Fixed -- Wait for all containers in a stackl job pod to be ready (#198) +- Wait for all containers in a Stackl job pod to be ready (#198) - Check if stack instance exists before deleting it (#199) -## Added +### Added -- Configurable vault image for vault secret handler (#200) +- Configurable Vault image for Vault secret handler (#200) - Secrets can now be supplied for each service (#201) - Terraform backend can now be set with params -## Changed +### Changed - Force delete now tries to delete every functional requirement (#213) - Error message now also gets logged in agent