summaryrefslogtreecommitdiffstats
path: root/node_modules/sift/changelog.md
blob: ff230e8ff2810e9fb6c028b755830f19c856ba22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
### 7.0.0

- Remove global `*.use()` function.
- converted to ES6

### 3.3.x

- `$in` now uses `toString()` when evaluating objects. Fixes #116.

#### 2.x

- `use()` now uses a different format:

```javascript
sift.use({
  $operator: function(a) {
    return function(b) {
      // compare here
    };
  }
})
```

- all operators are traversable now
- fix #58.