Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

4 лет назад
12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. Changelog
  2. =========
  3. v0.6.0
  4. ------
  5. - Updated "devDependencies" versions to fix vulnerability alerts
  6. - Dropped support of io.js and node.js v0.12.x and lower since new versions of
  7. "devDependencies" couldn't work with those old node.js versions
  8. (minimal supported version of node.js now is v4.0.0)
  9. v0.5.1
  10. ------
  11. - Fix prototype pollution vulnerability (thanks to @mwakerman for the PR)
  12. - Avoid using deprecated Buffer API (thanks to @ChALkeR for the PR)
  13. v0.5.0
  14. ------
  15. - Auto-testing provided by Travis CI;
  16. - Support older Node.JS versions (`v0.11.x` and `v0.10.x`);
  17. - Removed tests files from npm package.
  18. v0.4.2
  19. ------
  20. - Fix for `null` as an argument.
  21. v0.4.1
  22. ------
  23. - Removed test code from <b>npm</b> package
  24. ([see pull request #21](https://github.com/unclechu/node-deep-extend/pull/21));
  25. - Increased minimal version of Node from `0.4.0` to `0.12.0`
  26. (because can't run tests on lesser version anyway).
  27. v0.4.0
  28. ------
  29. - **WARNING!** Broken backward compatibility with `v0.3.x`;
  30. - Fixed bug with extending arrays instead of cloning;
  31. - Deep cloning for arrays;
  32. - Check for own property;
  33. - Fixed some documentation issues;
  34. - Strict JS mode.