Skip to content

Commit cfb80c6

Browse files
committed
Release 0.2.5
1 parent 4226394 commit cfb80c6

File tree

6 files changed

+106
-18
lines changed

6 files changed

+106
-18
lines changed

CHANGELOG.md

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
## [0.0.7] - 2020-02-04
10+
## [0.2.5] - 2020-10-29
1111

1212
### Added
13-
14-
- First full open source release on Github
13+
- Option for force deleting a stack instance
14+
- Option added for configuring max_jobs for stackl agent
15+
- Update deployment and configuration docs
16+
- Added progressbar option when creating/updating stack instance
17+
- Add Ansible-playbook docs
18+
- Add docs on how to debug OPA
19+
- Option to disable automatic rollback
20+
- Option to supply Redis password for agent and core
21+
- (EXPERIMENTAL) Elastic APM can be enabled for stackl core
1522

1623
### Changed
17-
18-
### Deprecated
19-
20-
### Removed
24+
- Using as_group on a functional-requirement will now group infrastructure targets in the stack instance status
2125

2226
### Fixed
27+
- `stackl apply` for documents now fails when a document is not valid
28+
- stackl core now passes pylint test
29+
- stack instance creation will not fail when policies are not defined in SAT
30+
- `python3-devel` package changed to `python38-devel` in Dockerfile core
31+
- Fix inventory when running Ansible role with local connection
2332

2433
### Security
34+
- Bumped UBI versions for images to 8.2-349 to fix issue with librepo package
35+
- Add reporting policies
36+
- Add codeql-analysis
2537

26-
[unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/v1.1.0...HEAD
27-
[0.0.7]: https://github.com/olivierlacan/keep-a-changelog/compare/v0.0.0...v0.0.7
38+
[unreleased]: https://github.com/stacklio/stackl/compare/v0.2.5...HEAD
39+
[0.2.5]: https://github.com/stacklio/stackl/compare/v0.2.4...v0.2.5

stackl/agent/poetry.lock

Lines changed: 30 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

stackl/agent/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "agent"
3-
version = "0.2.5dev"
3+
version = "0.2.5"
44
description = ""
55
authors = ["Frederic <[email protected]>"]
66

@@ -9,7 +9,7 @@ python = "^3.7"
99
kubernetes = "^11.0.0"
1010
pyyaml = "^5.3.1"
1111
arq = "^0.19"
12-
stackl-client = "0.2.5dev"
12+
stackl-client = "0.2.5"
1313
pydantic = "^1.6.1"
1414

1515
[tool.poetry.dev-dependencies]

stackl/cli/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
__version__ = "0.2.5dev"
3+
__version__ = "0.2.5"
44

55
setup(
66
name='stackl-cli',

stackl/core/poetry.lock

Lines changed: 51 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)