Skip to content

Releases: dgreene1/merge-partially

v2.0.2

18 Sep 14:08
Compare
Choose a tag to compare
  • Merge pull request #102 from dgreene1/issue100-betterTypeErrorForLimitingTypes d1eb13c
  • better type errors and a fix for #100 3d016dd

v2.0.1...v2.0.2

v2.0.1

18 Sep 12:57
Compare
Choose a tag to compare
  • Merge pull request #101 from dgreene1/optionalBooleansShouldNotBeAnErrorCase 3ee5a27
  • We were missing boolean and Date support. That's been added now. 990c46d

v2.0.0...v2.0.1

New feature: new API prevents bad data

16 Sep 14:54
Compare
Choose a tag to compare

New Features:

Breaking Changes:

  • the mergePartially function was replaced with an object called mergePartially that has a .deep function and .shallow
    • i.e. use mergePartially.deep instead of mergePartially
    • see the new F.A.Q. in the readme that explains the difference between .shallow and .deep and why the API was split into two function.

Commit History:

  • Merge pull request #99 from dgreene1/disallowSeedWithOptionalNested d91316f
  • adds additional coverage 187eef7
  • Merge branch 'master' into disallowSeedWithOptionalNested a5a9c41
  • removed test code that I forgot to remove earlier 6989623
  • Gives feedback when seed type is not supported in .deep. Also, this introduces the .deep and .shallow split b90178f
  • Merge pull request #96 from dgreene1/dependabot/npm_and_yarn/husky-4.3.0 8df1905
  • Bump husky from 4.2.5 to 4.3.0 b0ab513
  • Merge pull request #94 from dgreene1/makeItEasierToUse d0e0d70
  • One of the users wanted to be able to call it when there was no override. Made that easier again like it was 608bec1

v1.0.0...v2.0.0

Major Release: ability to merge nested/deep objects, increased test coverage, and minor props change

04 Sep 19:23
Compare
Choose a tag to compare

New Features:

Breaking Changes:

  • I really couldn't come up with a reason why someone would want to avoid passing in an override object. So the second parameter is no longer optional. I would be very surprised if this breaks anyone. But I made this a major version release anyway.