Skip to content

Commit 6b31c48

Browse files
author
Phillip Clark
committed
Merge branch 'master' into issue-74
2 parents 10bf97d + 5945c6a commit 6b31c48

11 files changed

+844
-409
lines changed

.jshintrc

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,7 @@
33
"strict": true,
44
"laxcomma": true,
55
"nomen": false,
6-
"indent": 2
6+
"indent": 2,
7+
"esversion": 6,
8+
"browser": true
79
}

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ branches:
55
node_js:
66
- "6"
77
- "5"
8-
- "4.2.1"
8+
- "4"
99
- "0.12"
1010
- "0.11"
1111
- "0.10"

Readme.md

+12-3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@
1212

1313
## ChangeLog
1414

15+
`0.3.5` - 2017-04-23 — Rolled up recent fixes; patches:
16+
* @stevemao — #79, #80: now testing latest version of node4
17+
* @mortonfox — #85: referencing mocha's new home
18+
* @tdebarochez — #90: fixed error when .toString not a function
19+
* @thiamsantos — #92, #93: changed module system for improved es2015 modules
20+
21+
`0.3.3` - Thanks @SimenB: enabled npm script for release (alternate to the Makefile). Also linting as part of `npm test`. Thanks @joeldenning: Fixed issue #35; diffs of top level arrays now working.
22+
1523
`0.3.3` - Thanks @SimenB: enabled npm script for release (alternate to the Makefile). Also linting as part of `npm test`. Thanks @joeldenning: Fixed issue #35; diffs of top level arrays now working.
1624

1725
`0.3.2` - Resolves #46; support more robust filters by including `lhs` and `rhs` in the filter callback. By @Orlando80
@@ -39,7 +47,7 @@ bower install deep-diff
3947

4048
## Tests
4149

42-
Tests use [mocha](http://visionmedia.github.io/mocha/) and [expect.js](https://github.com/LearnBoost/expect.js/), so if you clone the [github repository](https://github.com/flitbit/json-ptr) you'll need to run:
50+
Tests use [mocha](http://mochajs.org/) and [expect.js](https://github.com/LearnBoost/expect.js/), so if you clone the [github repository](https://github.com/flitbit/json-ptr) you'll need to run:
4351

4452
```bash
4553
npm install
@@ -225,8 +233,9 @@ The `prefilter`'s signature should be `function(path, key)` and it should return
225233

226234
Currently testing on Travis CI against:
227235

228-
+ nodejs `4.2.1`
236+
+ nodejs `6`
237+
+ nodejs `5`
238+
+ nodejs `4`
229239
+ nodejs `0.12`
230240
+ nodejs `0.11`
231241
+ nodejs `0.10`
232-
+ nodejs `0.8`

bower.json

+21-14
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,35 @@
11
{
22
"name": "deep-diff",
33
"main": "index.js",
4-
"version": "0.3.4",
4+
"version": "0.3.5",
55
"homepage": "https://github.com/flitbit/diff",
66
"authors": [
7-
"Dan Drinkard <[email protected]>",
8-
"Daniel Spangler <[email protected]>",
9-
"Denning <[email protected]>",
10-
"Elad Efrat <[email protected]>",
11-
"Mats Bryntse <[email protected]>",
12-
"Nicholas Calugar <[email protected]>",
13-
"Paul Pflugradt <[email protected]>",
147
"Phillip Clark <[email protected]>",
15-
"Serkan Serttop <[email protected]>",
168
"Simen Bekkhus <[email protected]>",
17-
"Tom Ashworth <[email protected]>",
18-
"Tom MacWright <[email protected]>",
9+
"Paul Pflugradt <[email protected]>",
10+
"wooorm <[email protected]>",
11+
"Nicholas Calugar <[email protected]>",
1912
"Yandell <[email protected]>",
13+
"Thiago Santos <[email protected]>",
14+
"Steve Mao <[email protected]>",
15+
"Mats Bryntse <[email protected]>",
16+
"Phillip Clark <[email protected]>",
2017
"ZauberNerd <[email protected]>",
21-
"caasi Huang <[email protected]>",
18+
"ravishivt <[email protected]>",
19+
"Daniel Spangler <[email protected]>",
20+
"Thomas de Barochez <[email protected]>",
21+
"Morton Fox <[email protected]>",
22+
"Amila Welihinda <[email protected]>",
23+
"Will Biddy <[email protected]>",
2224
"icesoar <[email protected]>",
25+
"Serkan Serttop <[email protected]>",
2326
"orlando <[email protected]>",
24-
"ravishivt <[email protected]>",
25-
"wooorm <[email protected]>"
27+
"Tom MacWright <[email protected]>",
28+
"Denning <[email protected]>",
29+
"Dan Drinkard <[email protected]>",
30+
"Elad Efrat <[email protected]>",
31+
"caasi Huang <[email protected]>",
32+
"Tom Ashworth <[email protected]>"
2633
],
2734
"description": "Javascript utility for calculating deep difference, capturing changes, and applying changes across objects; for nodejs and the browser.",
2835
"keywords": [

component.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "deep-diff",
33
"description": "Javascript utility for calculating deep difference, capturing changes, and applying changes across objects; for nodejs and the browser.",
4-
"version": "0.3.4",
4+
"version": "0.3.5",
55
"license": "MIT",
66
"keywords": [
77
"diff",

0 commit comments

Comments
 (0)