Skip to content

Releases: CalebMorris/react-moment-proptypes

v1.7.0

15 Aug 06:03
Compare
Choose a tag to compare

1.7.0 should have no changes on release builds except requiring node-8.x or above going forward.

This revision is an attempt to update all developer dependencies and their associated security concerns. As node versions before 8 are no longer supported (see node release cycle for current engine support).

The are no more outdated packages (via npm outdated) with this release.

Issues Fixed

  • #28 Depencies outdated

v1.6.0

09 Jun 19:24
Compare
Choose a tag to compare

Behavior Changes

#40 moment.createFromInputFallback

Removed source implementation of moment.createFromInputFallback and allow the warning message, but prevent conflicts with other packages that need to implement this themselves. Originated from #35.

Issues Fixed

  • #35 - Conflicts with moment-parseplus

Dev Changes

#37 package-lock.json

Removed package-lock.
See #37 for my thoughts on why it shouldn't be present in a library.

#38 Remove call to deprecated Sinon stub API

Removes warning printed when running tests:

sinon.stub(obj, 'meth', fn) is deprecated and will be removed from the public API in a future version of sinon.
 Use stub(obj, 'meth').callsFake(fn).
 Codemod available at https://github.com/hurrymaplelad/sinon-codemod

See http://sinonjs.org/releases/v2.0.0/stubs/ for more information on Sinon stubbing.

#39 Travis Targets

  • Removed end-of-life node versions 0.x and 4.x
  • Added explicit test targets of 8.x and 9.x