diff --git a/CHANGELOG.md b/CHANGELOG.md index 9282b04a..7dc9e558 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,37 +1,46 @@ This is a history of changes to clara-rules. -# 0.23.0-SNAPSHOT +# 0.25.0-SNAPSHOT + + +### 0.24.0 +* uplift to cljs 1.11.132 +* uplift to clj 1.11.2 +* remove atom usage in LHS functions +* remove redundant TestNode evaluations + +### 0.23.0 * extract clara.rules.compiler/compile-test-handler from clara.rules.compiler/compile-test * add support for `env` inside of test expressions * use `.clj_kondo` extension for clj-kondo hook code for better tool compatibility (clj-kondo support now requires clj-kondo 2022.04.25 or higher) * Include the invalid constraint in the exception thrown at session compilation time when negations have multiple children. See [Issue 284](https://github.com/cerner/clara-rules/issues/284). -# 0.22.1 +### 0.22.1 * fix incorrent lint warning triggered when this binding is not used in clj-kondo hooks -# 0.22.0 +### 0.22.0 * add built-in clj-kondo support for clara-rules as hooks. Importing should be automatic if using clojure-lsp; for detailed instructions see clj-kondo's documentation on [how to import clj-kondo configuration](https://github.com/clj-kondo/clj-kondo/blob/master/doc/config.md#importing) * use correct arity calling `->RuleOrderedActivation` constructor during serialization if clara session; this change should have the same effective behavior as before. -# 0.21.2 +### 0.21.2 * Try and catch TestNode expression evaluation so that exceptions thrown are re-thrown wrapped in a condition exception which includes production name and bindings information. See [PR 471](https://github.com/cerner/clara-rules/pull/471). -# 0.21.1 +### 0.21.1 * Add support to specify query binding arguments as symbols instead of only keywords so that defquery syntax looks closer to function definition syntax. See [PR 463](https://github.com/cerner/clara-rules/pull/463). -# 0.21.0 +### 0.21.0 * Add names to anonymous functions generated by rule compilation; these names will be in the class names of the generated objects. [Issue 261](https://github.com/cerner/clara-rules/issues/261) and [issue 291](https://github.com/cerner/clara-rules/issues/291) * Add types information to alpha nodes. [Issue 237](https://github.com/cerner/clara-rules/issues/237) * Fix a bug related to Java object facts with IndexedPropertyDescriptor fields. [Issue 446](https://github.com/cerner/clara-rules/issues/446) * Validate that parameters provided to queries exist on the query at compilation and throw an exception if queries on a session don't specify the required parameters. [Issue 454](https://github.com/cerner/clara-rules/issues/454) * Add an optional listener that reports suspected infinite loops of rules. [Issue 275](https://github.com/cerner/clara-rules/issues/275) -# 0.20.0 +### 0.20.0 * Add a flag to omit compilation context (used by the durability layer) after Session compilation to save space when not needed. Defaults to true. [issue 422](https://github.com/cerner/clara-rules/issues/422) * Correct duplicate bindings within the same condition. See [issue 417](https://github.com/cerner/clara-rules/issues/417) * Correct sharing of nodes with different parents. See [issue 433](https://github.com/cerner/clara-rules/issues/433) -# 0.19.1 +### 0.19.1 * Added a new field to the clara.rules.engine/Accumulator record. This could be a breaking change for any user durability implementations with low-level performance optimizations. See [PR 410](https://github.com/cerner/clara-rules/pull/410) for details. * Performance improvements for :exists conditions. See [issue 298](https://github.com/cerner/clara-rules/issues/298). * Decrease memory usage post deserialization (Durability). See [Issue 419](https://github.com/cerner/clara-rules/issues/419)