Releases: jonatanpedersen/git-json-merge
Releases · jonatanpedersen/git-json-merge
v1.0.0
What's Changed
- Ignore invalid BOMs according to RFC7159 section 8.1 by @JulScsl in #18
- Stopped testing in Node 6, 8, 10 and 12
- Started testing in Node 16, 18 and 19
- Updated dependencies
New Contributors
Full Changelog: v0.4.5...v1.0.0
v0.4.5
What's Changed
- Update chai to the latest version 🚀 by @Greenkeeper in #7
- Update mocha to the latest version 🚀 by @Greenkeeper in #8
Full Changelog: v0.4.4...v0.4.5
v0.4.4
- Added Greenkeeper badge to README
- Added NSP status badge to README
v0.4.3
- Added postversion and preversion scripts in package.json
v0.4.2
- Added node versions 4 and 6 in travis.yml
- Added engines node version greater than or equal to 4 in package.json
v0.4.1
- Updated dependencies
- Added main and bin scripts, and removed directories and preferGlobal from package.json
- Added NPM version badge
v0.4.0
v0.4.0 introduces automatic detection of indentation characters. It works with any number of characters, and it will detect changes to indentation characters as well.
The behaviour is as follows (numbers are spaces):
selectIndent
given arguments of 4 as ours, 2 as base and 2 as theirs
✓ should return 4
given arguments of 4 as ours, 4 as base and 2 as theirs
✓ should return 2
given arguments of 4 as ours, 4 as base and 4 as theirs
✓ should return 4
given arguments of 2 as ours, 4 as base and 2 as theirs
✓ should return 2
given arguments of 2 as ours, 2 as base and 4 as theirs
✓ should return 4
given arguments of 2 as ours, 4 as base and 4 as theirs
✓ should return 2
See tests for more details.