UNPKG

7.54 kBMarkdownView Raw
11.1.1 / 2019-04-06
2=================
3 * [Fix] exclude deprecated Firefox keys (#53)
4
51.1.0 / 2019-02-10
6=================
7 * [New] [Refactor] move full implementation to `implementation` entry point
8 * [Refactor] only evaluate the implementation if `Object.keys` is not present
9 * [Tests] up to `node` `v11.8`, `v10.15`, `v8.15`, `v6.16`
10 * [Tests] remove jscs
11 * [Tests] switch to `npm audit` from `nsp`
12
131.0.12 / 2018-06-18
14=================
15 * [Fix] avoid accessing `window.applicationCache`, to avoid issues with latest Chrome on HTTP (#46)
16
171.0.11 / 2016-07-05
18=================
19 * [Fix] exclude keys regarding the style (eg. `pageYOffset`) on `window` to avoid reflow (#32)
20
211.0.10 / 2016-07-04
22=================
23 * [Fix] exclude `height` and `width` keys on `window` to avoid reflow (#31)
24 * [Fix] In IE 6, `window.external` makes `Object.keys` throw
25 * [Tests] up to `node` `v6.2`, `v5.10`, `v4.4`
26 * [Tests] use pretest/posttest for linting/security
27 * [Dev Deps] update `tape`, `jscs`, `nsp`, `eslint`, `@ljharb/eslint-config`
28 * [Dev Deps] remove unused eccheck script + dep
29
301.0.9 / 2015-10-19
31=================
32 * [Fix] Blacklist 'frame' property on window (#16, #17)
33 * [Dev Deps] update `jscs`, `eslint`, `@ljharb/eslint-config`
34
351.0.8 / 2015-10-14
36=================
37 * [Fix] wrap automation equality bug checking in try/catch, per [es5-shim#327](https://github.com/es-shims/es5-shim/issues/327)
38 * [Fix] Blacklist 'window.frameElement' per [es5-shim#322](https://github.com/es-shims/es5-shim/issues/322)
39 * [Docs] Switch from vb.teelaun.ch to versionbadg.es for the npm version badge SVG
40 * [Tests] up to `io.js` `v3.3`, `node` `v4.2`
41 * [Dev Deps] update `eslint`, `tape`, `@ljharb/eslint-config`, `jscs`
42
431.0.7 / 2015-07-18
44=================
45 * [Fix] A proper fix for 176f03335e90d5c8d0d8125a99f27819c9b9cdad / https://github.com/es-shims/es5-shim/issues/275 that doesn't break dontEnum/constructor fixes in IE 8.
46 * [Fix] Remove deprecation message in Chrome by touching deprecated window properties (#15)
47 * [Tests] Improve test output for automation equality bugfix
48 * [Tests] Test on `io.js` `v2.4`
49
501.0.6 / 2015-07-09
51=================
52 * [Fix] Use an object lookup rather than ES5's `indexOf` (#14)
53 * [Tests] ES3 browsers don't have `Array.isArray`
54 * [Tests] Fix `no-shadow` rule, as well as an IE 8 bug caused by engine NFE shadowing bugs.
55
561.0.5 / 2015-07-03
57=================
58 * [Fix] Fix a flabbergasting IE 8 bug where `localStorage.constructor.prototype === localStorage` throws
59 * [Tests] Test up to `io.js` `v2.3`
60 * [Dev Deps] Update `nsp`, `eslint`
61
621.0.4 / 2015-05-23
63=================
64 * Fix a Safari 5.0 bug with `Object.keys` not working with `arguments`
65 * Test on latest `node` and `io.js`
66 * Update `jscs`, `tape`, `eslint`, `nsp`, `is`, `editorconfig-tools`, `covert`
67
681.0.3 / 2015-01-06
69=================
70 * Revert "Make `object-keys` more robust against later environment tampering" to maintain ES3 compliance
71
721.0.2 / 2014-12-28
73=================
74 * Update lots of dev dependencies
75 * Tweaks to README
76 * Make `object-keys` more robust against later environment tampering
77
781.0.1 / 2014-09-03
79=================
80 * Update URLs and badges in README
81
821.0.0 / 2014-08-26
83=================
84 * v1.0.0
85
860.6.1 / 2014-08-25
87=================
88 * v0.6.1
89 * Updating dependencies (tape, covert, is)
90 * Update badges in readme
91 * Use separate var statements
92
930.6.0 / 2014-04-23
94=================
95 * v0.6.0
96 * Updating dependencies (tape, covert)
97 * Make sure boxed primitives, and arguments objects, work properly in ES3 browsers
98 * Improve test matrix: test all node versions, but only latest two stables are a failure
99 * Remove internal foreach shim.
100
1010.5.1 / 2014-03-09
102=================
103 * 0.5.1
104 * Updating dependencies (tape, covert, is)
105 * Removing forEach from the module (but keeping it in tests)
106
1070.5.0 / 2014-01-30
108=================
109 * 0.5.0
110 * Explicitly returning the shim, instead of returning native Object.keys when present
111 * Adding a changelog.
112 * Cleaning up IIFE wrapping
113 * Testing on node 0.4 through 0.11
114
1150.4.0 / 2013-08-14
116==================
117
118 * v0.4.0
119 * In Chrome 4-10 and Safari 4, typeof (new RegExp) === 'function'
120 * If it's a string, make sure to use charAt instead of brackets.
121 * Only use Function#call if necessary.
122 * Making sure the context tests actually run.
123 * Better function detection
124 * Adding the android browser
125 * Fixing testling files
126 * Updating tape
127 * Removing the "is" dependency.
128 * Making an isArguments shim.
129 * Adding a local forEach shim and tests.
130 * Updating paths.
131 * Moving the shim test.
132 * v0.3.0
133
1340.3.0 / 2013-05-18
135==================
136
137 * README tweak.
138 * Fixing constructor enum issue. Fixes [#5](https://github.com/ljharb/object-keys/issues/5).
139 * Adding a test for [#5](https://github.com/ljharb/object-keys/issues/5)
140 * Updating readme.
141 * Updating dependencies.
142 * Giving credit to lodash.
143 * Make sure that a prototype's constructor property is not enumerable. Fixes [#3](https://github.com/ljharb/object-keys/issues/3).
144 * Adding additional tests to handle arguments objects, and to skip "prototype" in functions. Fixes [#2](https://github.com/ljharb/object-keys/issues/2).
145 * Fixing a typo on this test for [#3](https://github.com/ljharb/object-keys/issues/3).
146 * Adding node 0.10 to travis.
147 * Adding an IE < 9 test per [#3](https://github.com/ljharb/object-keys/issues/3)
148 * Adding an iOS 5 mobile Safari test per [#2](https://github.com/ljharb/object-keys/issues/2)
149 * Moving "indexof" and "is" to be dev dependencies.
150 * Making sure the shim works with functions.
151 * Flattening the tests.
152
1530.2.0 / 2013-05-10
154==================
155
156 * v0.2.0
157 * Object.keys should work with arrays.
158
1590.1.8 / 2013-05-10
160==================
161
162 * v0.1.8
163 * Upgrading dependencies.
164 * Using a simpler check.
165 * Fixing a bug in hasDontEnumBug browsers.
166 * Using the newest tape!
167 * Fixing this error test.
168 * "undefined" is probably a reserved word in ES3.
169 * Better test message.
170
1710.1.7 / 2013-04-17
172==================
173
174 * Upgrading "is" once more.
175 * The key "null" is breaking some browsers.
176
1770.1.6 / 2013-04-17
178==================
179
180 * v0.1.6
181 * Upgrading "is"
182
1830.1.5 / 2013-04-14
184==================
185
186 * Bumping version.
187 * Adding more testling browsers.
188 * Updating "is"
189
1900.1.4 / 2013-04-08
191==================
192
193 * Using "is" instead of "is-extended".
194
1950.1.3 / 2013-04-07
196==================
197
198 * Using "foreach" instead of my own shim.
199 * Removing "tap"; I'll just wait for "tape" to fix its node 0.10 bug.
200
2010.1.2 / 2013-04-03
202==================
203
204 * Adding dependency status; moving links to an index at the bottom.
205 * Upgrading is-extended; version 0.1.2
206 * Adding an npm version badge.
207
2080.1.1 / 2013-04-01
209==================
210
211 * Adding Travis CI.
212 * Bumping the version.
213 * Adding indexOf since IE sucks.
214 * Adding a forEach shim since older browsers don't have Array#forEach.
215 * Upgrading tape - 0.3.2 uses Array#map
216 * Using explicit end instead of plan.
217 * Can't test with Array.isArray in older browsers.
218 * Using is-extended.
219 * Fixing testling files.
220 * JSHint/JSLint-ing.
221 * Removing an unused object.
222 * Using strict mode.
223
2240.1.0 / 2013-03-30
225==================
226
227 * Changing the exports should have meant a higher version bump.
228 * Oops, fixing the repo URL.
229 * Adding more tests.
230 * 0.0.2
231 * Merge branch 'export_one_thing'; closes [#1](https://github.com/ljharb/object-keys/issues/1)
232 * Move shim export to a separate file.
233
\No newline at end of file