- [Fix] exclude deprecated Firefox keys (#53)
- [New] [Refactor] move full implementation to
implementation
entry point
- [Refactor] only evaluate the implementation if
Object.keys
is not present
- [Tests] up to
node
v11.8
, v10.15
, v8.15
, v6.16
- [Tests] remove jscs
- [Tests] switch to
npm audit
from nsp
- [Fix] avoid accessing
window.applicationCache
, to avoid issues with latest Chrome on HTTP (#46)
- [Fix] exclude keys regarding the style (eg.
pageYOffset
) on window
to avoid reflow (#32)
- [Fix] exclude
height
and width
keys on window
to avoid reflow (#31)
- [Fix] In IE 6,
window.external
makes Object.keys
throw
- [Tests] up to
node
v6.2
, v5.10
, v4.4
- [Tests] use pretest/posttest for linting/security
- [Dev Deps] update
tape
, jscs
, nsp
, eslint
, @ljharb/eslint-config
- [Dev Deps] remove unused eccheck script + dep
- [Fix] Blacklist 'frame' property on window (#16, #17)
- [Dev Deps] update
jscs
, eslint
, @ljharb/eslint-config
- [Fix] wrap automation equality bug checking in try/catch, per es5-shim#327
- [Fix] Blacklist 'window.frameElement' per es5-shim#322
- [Docs] Switch from vb.teelaun.ch to versionbadg.es for the npm version badge SVG
- [Tests] up to
io.js
v3.3
, node
v4.2
- [Dev Deps] update
eslint
, tape
, @ljharb/eslint-config
, jscs
- [Fix] A proper fix for
176f03335e
/ https://github.com/es-shims/es5-shim/issues/275 that doesn't break dontEnum/constructor fixes in IE 8.
- [Fix] Remove deprecation message in Chrome by touching deprecated window properties (#15)
- [Tests] Improve test output for automation equality bugfix
- [Tests] Test on
io.js
v2.4
- [Fix] Use an object lookup rather than ES5's
indexOf
(#14)
- [Tests] ES3 browsers don't have
Array.isArray
- [Tests] Fix
no-shadow
rule, as well as an IE 8 bug caused by engine NFE shadowing bugs.
- [Fix] Fix a flabbergasting IE 8 bug where
localStorage.constructor.prototype === localStorage
throws
- [Tests] Test up to
io.js
v2.3
- [Dev Deps] Update
nsp
, eslint
- Fix a Safari 5.0 bug with
Object.keys
not working with arguments
- Test on latest
node
and io.js
- Update
jscs
, tape
, eslint
, nsp
, is
, editorconfig-tools
, covert
- Revert "Make
object-keys
more robust against later environment tampering" to maintain ES3 compliance
- Update lots of dev dependencies
- Tweaks to README
- Make
object-keys
more robust against later environment tampering
- Update URLs and badges in README
- v0.6.1
- Updating dependencies (tape, covert, is)
- Update badges in readme
- Use separate var statements
- v0.6.0
- Updating dependencies (tape, covert)
- Make sure boxed primitives, and arguments objects, work properly in ES3 browsers
- Improve test matrix: test all node versions, but only latest two stables are a failure
- Remove internal foreach shim.
- 0.5.1
- Updating dependencies (tape, covert, is)
- Removing forEach from the module (but keeping it in tests)
- 0.5.0
- Explicitly returning the shim, instead of returning native Object.keys when present
- Adding a changelog.
- Cleaning up IIFE wrapping
- Testing on node 0.4 through 0.11
- v0.4.0
- In Chrome 4-10 and Safari 4, typeof (new RegExp) === 'function'
- If it's a string, make sure to use charAt instead of brackets.
- Only use Function#call if necessary.
- Making sure the context tests actually run.
- Better function detection
- Adding the android browser
- Fixing testling files
- Updating tape
- Removing the "is" dependency.
- Making an isArguments shim.
- Adding a local forEach shim and tests.
- Updating paths.
- Moving the shim test.
- v0.3.0
- README tweak.
- Fixing constructor enum issue. Fixes #5.
- Adding a test for #5
- Updating readme.
- Updating dependencies.
- Giving credit to lodash.
- Make sure that a prototype's constructor property is not enumerable. Fixes #3.
- Adding additional tests to handle arguments objects, and to skip "prototype" in functions. Fixes #2.
- Fixing a typo on this test for #3.
- Adding node 0.10 to travis.
- Adding an IE < 9 test per #3
- Adding an iOS 5 mobile Safari test per #2
- Moving "indexof" and "is" to be dev dependencies.
- Making sure the shim works with functions.
- Flattening the tests.
- v0.2.0
- Object.keys should work with arrays.
- v0.1.8
- Upgrading dependencies.
- Using a simpler check.
- Fixing a bug in hasDontEnumBug browsers.
- Using the newest tape!
- Fixing this error test.
- "undefined" is probably a reserved word in ES3.
- Better test message.
- Upgrading "is" once more.
- The key "null" is breaking some browsers.
- Bumping version.
- Adding more testling browsers.
- Updating "is"
- Using "is" instead of "is-extended".
- Using "foreach" instead of my own shim.
- Removing "tap"; I'll just wait for "tape" to fix its node 0.10 bug.
- Adding dependency status; moving links to an index at the bottom.
- Upgrading is-extended; version 0.1.2
- Adding an npm version badge.
- Adding Travis CI.
- Bumping the version.
- Adding indexOf since IE sucks.
- Adding a forEach shim since older browsers don't have Array#forEach.
- Upgrading tape - 0.3.2 uses Array#map
- Using explicit end instead of plan.
- Can't test with Array.isArray in older browsers.
- Using is-extended.
- Fixing testling files.
- JSHint/JSLint-ing.
- Removing an unused object.
- Using strict mode.
- Changing the exports should have meant a higher version bump.
- Oops, fixing the repo URL.
- Adding more tests.
- 0.0.2
- Merge branch 'export_one_thing'; closes #1
- Move shim export to a separate file.