Skip to content

Releases: jonatanpedersen/git-json-merge

v1.0.0

26 Jan 13:03
c5572ac
Compare
Choose a tag to compare

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

26 Jan 13:04
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.4.4...v0.4.5

v0.4.4

01 Feb 22:44
Compare
Choose a tag to compare
  • Added Greenkeeper badge to README
  • Added NSP status badge to README

v0.4.3

01 Feb 22:45
Compare
Choose a tag to compare
  • Added postversion and preversion scripts in package.json

v0.4.2

01 Feb 22:48
Compare
Choose a tag to compare
  • 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

01 Feb 22:46
Compare
Choose a tag to compare
  • Updated dependencies
  • Added main and bin scripts, and removed directories and preferGlobal from package.json
  • Added NPM version badge

v0.4.0

13 May 08:55
Compare
Choose a tag to compare

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.