From 8a765df545cf1d4f86fe3f0e543d2cab890279d7 Mon Sep 17 00:00:00 2001 From: Madhu Kanoor Date: Wed, 12 Apr 2023 11:51:10 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.11.0=20=E2=86=92=200.12.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGELOG.md | 29 +++++++++++++++++++++-------- ansible_rulebook/__init__.py | 2 +- setup.cfg | 2 +- 4 files changed, 24 insertions(+), 11 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index eb9bbab0..fbfd8e2c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.0 +current_version = 0.12.0 commit = True tag = True search = {current_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index ae9b6560..f4339da1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,28 @@ # Changelog + +## [Unreleased] + +### Added + +### Fixed + +### Removed + +## [0.12.0] - 2023-04-12 + ### Added - Support all file formats for static inventories as ansible does. +- Support for controller url via env var EDA_CONTROLLER_URL +- Support for controller token via env var EDA_CONTROLLER_TOKEN +- Support for controller token ssl verify via env var EDA_CONTROLLER_SSL_VERIFY +- Support for bulitin filter eda.builtin.insert_meta_info added to every source + +### Fixed +- actions in different rules to run in parallel +- actions within a single rule to execute sequentially +- comparing 2 different attributes in the same event +- select with search option on delayed evaluation ## [0.11.0] - 2023-03-08 @@ -20,10 +41,6 @@ - Support Jinja2 substitution in rule names - Support booleans in lists, which can contain mixed data types - Support for identifiers in select and selectattr -- Support for controller url via env var EDA_CONTROLLER_URL -- Support for controller token via env var EDA_CONTROLLER_TOKEN -- Support for controller token ssl verify via env var EDA_CONTROLLER_SSL_VERIFY -- Support for bulitin filter eda.builtin.insert_meta_info added to every source ### Fixed @@ -34,10 +51,6 @@ - Inventory argument to the CLI is optional - select works with null - a race condition between threads in drools rule engine -- actions in different rules to run in parallel -- actions within a single rule to execute sequentially -- comparing 2 different attributes in the same event -- select with search option on delayed evaluation ### Removed diff --git a/ansible_rulebook/__init__.py b/ansible_rulebook/__init__.py index 20b6b285..4a0d503b 100644 --- a/ansible_rulebook/__init__.py +++ b/ansible_rulebook/__init__.py @@ -14,4 +14,4 @@ """Top-level package for Ansible Events.""" -__version__ = "__version__ = '0.11.0'" +__version__ = "__version__ = '0.12.0'" diff --git a/setup.cfg b/setup.cfg index e95c6017..bb71cfb9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = ansible_rulebook -version = 0.11.0 +version = 0.12.0 description = Event driven automation for Ansible url = https://github.com/ansible/ansible-rulebook license = Apache-2.0