You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

151 lines
4.2 KiB

  1. 1.0.0 / 2014-08-26
  2. =================
  3. * v1.0.0
  4. 0.6.1 / 2014-08-25
  5. =================
  6. * v0.6.1
  7. * Updating dependencies (tape, covert, is)
  8. * Update badges in readme
  9. * Use separate var statements
  10. 0.6.0 / 2014-04-23
  11. =================
  12. * v0.6.0
  13. * Updating dependencies (tape, covert)
  14. * Make sure boxed primitives, and arguments objects, work properly in ES3 browsers
  15. * Improve test matrix: test all node versions, but only latest two stables are a failure
  16. * Remove internal foreach shim.
  17. 0.5.1 / 2014-03-09
  18. =================
  19. * 0.5.1
  20. * Updating dependencies (tape, covert, is)
  21. * Removing forEach from the module (but keeping it in tests)
  22. 0.5.0 / 2014-01-30
  23. =================
  24. * 0.5.0
  25. * Explicitly returning the shim, instead of returning native Object.keys when present
  26. * Adding a changelog.
  27. * Cleaning up IIFE wrapping
  28. * Testing on node 0.4 through 0.11
  29. 0.4.0 / 2013-08-14
  30. ==================
  31. * v0.4.0
  32. * In Chrome 4-10 and Safari 4, typeof (new RegExp) === 'function'
  33. * If it's a string, make sure to use charAt instead of brackets.
  34. * Only use Function#call if necessary.
  35. * Making sure the context tests actually run.
  36. * Better function detection
  37. * Adding the android browser
  38. * Fixing testling files
  39. * Updating tape
  40. * Removing the "is" dependency.
  41. * Making an isArguments shim.
  42. * Adding a local forEach shim and tests.
  43. * Updating paths.
  44. * Moving the shim test.
  45. * v0.3.0
  46. 0.3.0 / 2013-05-18
  47. ==================
  48. * README tweak.
  49. * Fixing constructor enum issue. Fixes [#5](https://github.com/ljharb/object-keys/issues/5).
  50. * Adding a test for [#5](https://github.com/ljharb/object-keys/issues/5)
  51. * Updating readme.
  52. * Updating dependencies.
  53. * Giving credit to lodash.
  54. * Make sure that a prototype's constructor property is not enumerable. Fixes [#3](https://github.com/ljharb/object-keys/issues/3).
  55. * Adding additional tests to handle arguments objects, and to skip "prototype" in functions. Fixes [#2](https://github.com/ljharb/object-keys/issues/2).
  56. * Fixing a typo on this test for [#3](https://github.com/ljharb/object-keys/issues/3).
  57. * Adding node 0.10 to travis.
  58. * Adding an IE < 9 test per [#3](https://github.com/ljharb/object-keys/issues/3)
  59. * Adding an iOS 5 mobile Safari test per [#2](https://github.com/ljharb/object-keys/issues/2)
  60. * Moving "indexof" and "is" to be dev dependencies.
  61. * Making sure the shim works with functions.
  62. * Flattening the tests.
  63. 0.2.0 / 2013-05-10
  64. ==================
  65. * v0.2.0
  66. * Object.keys should work with arrays.
  67. 0.1.8 / 2013-05-10
  68. ==================
  69. * v0.1.8
  70. * Upgrading dependencies.
  71. * Using a simpler check.
  72. * Fixing a bug in hasDontEnumBug browsers.
  73. * Using the newest tape!
  74. * Fixing this error test.
  75. * "undefined" is probably a reserved word in ES3.
  76. * Better test message.
  77. 0.1.7 / 2013-04-17
  78. ==================
  79. * Upgrading "is" once more.
  80. * The key "null" is breaking some browsers.
  81. 0.1.6 / 2013-04-17
  82. ==================
  83. * v0.1.6
  84. * Upgrading "is"
  85. 0.1.5 / 2013-04-14
  86. ==================
  87. * Bumping version.
  88. * Adding more testling browsers.
  89. * Updating "is"
  90. 0.1.4 / 2013-04-08
  91. ==================
  92. * Using "is" instead of "is-extended".
  93. 0.1.3 / 2013-04-07
  94. ==================
  95. * Using "foreach" instead of my own shim.
  96. * Removing "tap"; I'll just wait for "tape" to fix its node 0.10 bug.
  97. 0.1.2 / 2013-04-03
  98. ==================
  99. * Adding dependency status; moving links to an index at the bottom.
  100. * Upgrading is-extended; version 0.1.2
  101. * Adding an npm version badge.
  102. 0.1.1 / 2013-04-01
  103. ==================
  104. * Adding Travis CI.
  105. * Bumping the version.
  106. * Adding indexOf since IE sucks.
  107. * Adding a forEach shim since older browsers don't have Array#forEach.
  108. * Upgrading tape - 0.3.2 uses Array#map
  109. * Using explicit end instead of plan.
  110. * Can't test with Array.isArray in older browsers.
  111. * Using is-extended.
  112. * Fixing testling files.
  113. * JSHint/JSLint-ing.
  114. * Removing an unused object.
  115. * Using strict mode.
  116. 0.1.0 / 2013-03-30
  117. ==================
  118. * Changing the exports should have meant a higher version bump.
  119. * Oops, fixing the repo URL.
  120. * Adding more tests.
  121. * 0.0.2
  122. * Merge branch 'export_one_thing'; closes [#1](https://github.com/ljharb/object-keys/issues/1)
  123. * Move shim export to a separate file.