UNPKG

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