UNPKG

4.44 kBMarkdownView Raw
1#### 5.0.0 / 2019-11-29
2 * BREAKING CHANGES
3 * Rule conditions' `path` property is now interpreted using [json-path](https://goessner.net/articles/JsonPath/)
4 * To continue using the old syntax (provided via [selectn](https://github.com/wilmoore/selectn.js)), `npm install selectn` as a direct dependency, and `json-rules-engine` will continue to interpret legacy paths this way.
5 * Any path starting with `$` will be assumed to use `json-path` syntax
6
7#### 4.1.0 / 2019-09-27
8 * Export Typescript definitions (@brianphillips)
9
10#### 4.0.0 / 2019-08-22
11 * BREAKING CHANGES
12 * `engine.run()` now returns a hash of events and almanac: `{ events: [], almanac: Almanac instance }`. Previously in v3, the `run()` returned the `events` array.
13 * For example, `const events = await engine.run()` under v3 will need to be changed to `const { events } = await engine.run()` under v4.
14
15#### 3.1.0 / 2019-07-19
16 * Feature: `rule.setName()` and `ruleResult.name`
17
18#### 3.0.3 / 2019-07-15
19 * Fix "localStorage.debug" not working in browsers
20
21#### 3.0.2 / 2019-05-23
22 * Fix "process" not defined error in browsers lacking node.js global shims
23
24#### 3.0.0 / 2019-05-17
25 * BREAKING CHANGES
26 * Previously all conditions with undefined facts would resolve false. With this change, undefined facts values are treated as `undefined`.
27 * Greatly improved performance of `allowUndefinedfacts = true` engine option
28 * Reduce package bundle size by ~40%
29
30#### 2.3.5 / 2019-04-26
31 * Replace debug with vanilla console.log
32
33#### 2.3.4 / 2019-04-26
34 * Use Array.isArray instead of instanceof to test Array parameters to address edge cases
35
36#### 2.3.3 / 2019-04-23
37 * Fix rules cache not clearing after removeRule()
38
39#### 2.3.2 / 2018-12-28
40 * Upgrade all dependencies to latest
41
42#### 2.3.1 / 2018-12-03
43 * IE8 compatibility: replace Array.forEach with for loop (@knalbandianbrightgrove)
44
45#### 2.3.0 / 2018-05-03
46 * Engine.removeFact() - removes fact from the engine (@SaschaDeWaal)
47 * Engine.removeRule() - removes rule from the engine (@SaschaDeWaal)
48 * Engine.removeOperator() - removes operator from the engine (@SaschaDeWaal)
49
50#### 2.2.0 / 2018-04-19
51 * Performance: Constant facts now perform 18-26X better
52 * Performance: Removes await/async transpilation and json.stringify calls, significantly improving overall performance
53
54#### 2.1.0 / 2018-02-19
55 * Publish dist updates for 2.0.3
56
57#### 2.0.3 / 2018-01-29
58 * Add factResult and result to the JSON generated for Condition (@bjacobso)
59
60#### 2.0.2 / 2017-07-24
61 * Bugfix IE8 support
62
63#### 2.0.1 / 2017-07-05
64 * Bugfix rule result serialization
65
66#### 2.0.0 / 2017-04-21
67 * Publishing 2.0.0
68
69#### 2.0.0-beta2 / 2017-04-10
70 * Fix fact path object checking to work with objects that have prototypes (lodash isObjectLike instead of isPlainObject)
71
72#### 2.0.0-beta1 / 2017-04-09
73 * Add rule results
74 * Document fact .path ability to parse properties containing dots
75 * Bump dependencies
76 * BREAKING CHANGES
77 * `engine.on('failure', (rule, almanac))` is now `engine.on('failure', (event, almanac, ruleResult))`
78 * `engine.on(eventType, (eventParams, engine))` is now `engine.on(eventType, (eventParams, almanac, ruleResult))`
79
80#### 1.5.1 / 2017-03-19
81 * Bugfix almanac.factValue skipping interpreting condition "path" for cached facts
82
83#### 1.5.0 / 2017-03-12
84 * Add fact comparison conditions
85
86#### 1.4.0 / 2017-01-23
87 * Add `allowUndefinedFacts` engine option
88
89#### 1.3.1 / 2017-01-16
90 * Bump object-hash dependency to latest
91
92#### 1.3.0 / 2016-10-24
93 * Rule event emissions
94 * Rule chaining
95
96#### 1.2.1 / 2016-10-22
97 * Use Array.indexOf instead of Array.includes for older node version compatibility
98
99#### 1.2.0 / 2016-09-13
100 * Fact path support
101
102#### 1.1.0 / 2016-09-11
103 * Custom operator support
104
105#### 1.0.4 / 2016-06-18
106 * fix issue #6; runtime facts unique to each run()
107
108#### 1.0.3 / 2016-06-15
109 * fix issue #5; dependency error babel-core/register
110
111#### 1.0.0 / 2016-05-01
112 * api stable; releasing 1.0
113 * engine.run() now returns triggered events
114
115#### 1.0.0-beta10 / 2016-04-16
116 * Completed the 'fact-dependecy' advanced example
117 * Updated addFact and addRule engine methods to return 'this' for easy chaining
118
119#### 1.0.0-beta9 / 2016-04-11
120 * Completed the 'basic' example
121 * [BREAKING CHANGE] update engine.on('success') and engine.on('failure') to pass the current almanac instance as the second argument, rather than the engine