11.17.6 / 2020-06-13
2=================
3  * [Fix] `helpers/getSymbolDescription`: use the global Symbol registry when available (#92)
4  * [Fix] `ES2015+`: `IsConstructor`: when `Reflect.construct` is available, be spec-accurate (#93)
5  * [Fix] `ES2015+`: `Set`: Always return boolean value (#101)
6  * [Fix] `ES2015+`: `Set`: ensure exceptions are thrown in IE 9 when requested
7  * [Fix] Use `Reflect.apply(…)` if available (#99)
8  * [Fix] `helpers/floor`: module-cache `Math.floor`
9  * [Fix] `helpers/getSymbolDescription`: Prefer bound `description` getter when present
10  * [Fix] `2016`: Use `getIteratorMethod` in `IterableToArrayLike` (#94)
11  * [Fix] `helpers/OwnPropertyKeys`: Use `Reflect.ownKeys(…)` if available (#91)
12  * [Fix] `2018+`: Fix `CopyDataProperties` depending on `this` (#95)
13  * [meta] mark spackled files as autogenerated
14  * [meta] `Type`: fix spec URL
15  * [meta] `ES2015`: complete ops list
16  * [Deps] update `is‑callable`, `is‑regex`
17  * [Deps] switch from `string.prototype.trimleft`/`string.prototype.trimright` to `string.prototype.trimstart`/`string.prototype.trimend`
18  * [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `in-publish`, `object-is`, `tape`; add `aud`
19  * [eslint] `helpers/isPropertyDescriptor`: fix indentation
20  * [Tests] `helpers/getSymbolDescription`: add test cases; some envs have `Symbol.for` but can not infer a name (#92)
21  * [Tests] try out CodeQL analysis
22  * [Tests] reformat expected missing ops
23  * [Tests] Run tests with `undefined` this (#96)
24
251.17.5 / 2020-03-22
26=================
27  * [Fix] `CreateDataProperty`: update an existing property
28  * [Fix] run missing spackle from cd7504701879ddea0f5981e99cbcf93bfea9171d
29  * [Dev Deps] update `make-arrow-function`, `tape`, `@ljharb/eslint-config`
30
311.17.4 / 2020-01-21
32=================
33  * [Fix] `2015+`: add code to handle IE 8’s problems
34  * [Tests] fix tests for IE 8
35
361.17.3 / 2020-01-19
37=================
38  * [Fix] `ObjectCreate` `2015+`: Fall back to `__proto__` and normal `new` in older browsers
39  * [Fix] `GetIntrinsic`: ensure the `allowMissing` property actually works on dotted intrinsics
40
411.17.2 / 2020-01-14
42=================
43  * [Fix] `helpers/OwnPropertyKeys`: include non-enumerables too
44
451.17.1 / 2020-01-14
46=================
47  * [Refactor] add `OwnPropertyKeys` helper, use it in `CopyDataProperties`
48  * [Refactor] `IteratorClose`: remove useless assignment
49  * [Dev Deps] update `eslint`, `tape`, `diff`
50
511.17.0 / 2019-12-20
52=================
53  * [New] Split up each operation into its own file (prereleased)
54  * [Fix] `GetIntrinsic`: IE 8 has a broken `Object.getOwnPropertyDescriptor`
55  * [Fix] `object.assign` is a runtime dep (prereleased)
56  * [Refactor] `GetIntrinsic`: remove the internal property salts, since % already handles that
57  * [Refactor] `GetIntrinsic`: further simplification
58  * [Deps] update `is-callable`, `string.prototype.trimleft`, `string.prototype.trimright`, `is-regex`
59  * [Dev Deps] update `@ljharb/eslint-config`, `object-is`, `object.fromentries`, `tape`
60  * [Tests] add `.eslintignore`
61  * [meta] remove unused Makefile and associated utils
62  * [meta] only run spackle script in publish (#78) (prereleased)
63
641.17.0-next.1 / 2019-12-11
65=================
66  * [Fix] `object.assign` is a runtime dep
67  * [meta] only run spackle script in publish (#78)
68
691.17.0-next.0 / 2019-12-11
70=================
71  * [New] Split up each operation into its own file
72
731.16.3 / 2019-12-04
74=================
75  * [Fix] `GetIntrinsic`: when given a path to a getter, return the actual getter
76  * [Dev Deps] update `eslint`
77
781.16.2 / 2019-11-24
79=================
80  * [Fix] IE 6-7 lack JSON
81  * [Fix] IE 6-8 strings can’t use array slice, they need string slice
82  * [Dev Deps] update `eslint`
83
841.16.1 / 2019-11-24
85=================
86  * [Fix] `GetIntrinsics`: turns out IE 8 throws when `Object.getOwnPropertyDescriptor(arguments);`, and does not throw on `callee` anyways
87  * [Deps] update `es-to-primitive`, `has-symbols`, `object-inspect`
88  * [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`
89  * [meta] re-include year files inside `operations`
90  * [meta] add `funding` field
91  * [actions] add Automatic Rebase github action
92  * [Tests] use shared travis-ci config
93  * [Tests] disable `check-coverage`, and let codecov do it
94
951.16.0 / 2019-10-18
96=================
97  * [New] `ES2015+`: add `SetFunctionName`
98  * [New] `ES2015+`: add `GetPrototypeFromConstructor`, with caveats
99  * [New] `ES2015+`: add `CreateListFromArrayLike`
100  * [New] `ES2016+`: add `OrdinarySetPrototypeOf`
101  * [New] `ES2016+`: add `OrdinaryGetPrototypeOf`
102  * [New] add `getSymbolDescription` and `getInferredName` helpers
103  * [Fix] `GetIterator`: add fallback for pre-Symbol environments, tests
104  * [Dev Deps] update `object.fromentries`
105  * [Tests] add `node` `v12.2`
106
1071.15.0 / 2019-10-02
108=================
109  * [New] `ES2018`+: add `DateString`, `TimeString`
110  * [New] `ES2015`+: add `ToDateString`
111  * [New] `ES5`+: add `msFromTime`, `SecFromTime`, `MinFromTime`, `HourFromTime`, `TimeWithinDay`, `Day`, `DayFromYear`, `TimeFromYear`, `YearFromTime`, `WeekDay`, `DaysInYear`, `InLeapYear`, `DayWithinYear`, `MonthFromTime`, `DateFromTime`, `MakeDay`, `MakeDate`, `MakeTime`, `TimeClip`, `modulo`
112  * [New] add `regexTester` helper
113  * [New] add `callBound` helper
114  * [New] add ES2020’s intrinsic dot notation
115  * [New] add `isPrefixOf` helper
116  * [New] add `maxSafeInteger` helper
117  * [Deps] update `string.prototype.trimleft`, `string.prototype.trimright`
118  * [Dev Deps] update `eslint`
119  * [Tests] on `node` `v12.11`
120  * [meta] npmignore operations scripts; add "deltas"
121
1221.14.2 / 2019-09-08
123=================
124  * [Fix] `ES2016`: `IterableToArrayLike`: add proper fallback for strings, pre-Symbols
125  * [Tests] on `node` `v12.10`
126
1271.14.1 / 2019-09-03
128=================
129  * [meta] republish with some extra files removed
130
1311.14.0 / 2019-09-02
132=================
133  * [New] add ES2019
134  * [New] `ES2017+`: add `IterableToList`
135  * [New] `ES2016`: add `IterableToArrayLike`
136  * [New] `ES2015+`: add `ArrayCreate`, `ArraySetLength`, `OrdinaryDefineOwnProperty`, `OrdinaryGetOwnProperty`, `OrdinaryHasProperty`, `CreateHTML`, `GetOwnPropertyKeys`, `InstanceofOperator`, `SymbolDescriptiveString`, `GetSubstitution`, `ValidateAndApplyPropertyDescriptor`, `IsPromise`, `OrdinaryHasInstance`, `TestIntegrityLevel`, `SetIntegrityLevel`
137  * [New] add `callBind` helper, and use it
138  * [New] add helpers: `isPropertyDescriptor`, `every`
139  * [New] ES5+: add `Abstract Relational Comparison`
140  * [New] ES5+: add `Abstract Equality Comparison`, `Strict Equality Comparison`
141  * [Fix] `ES2015+`: `GetIterator`: only require native Symbols when `method` is omitted
142  * [Fix] `ES2015`: `Call`: error message now properly displays Symbols using `object-inspect`
143  * [Fix] `ES2015+`: `ValidateAndApplyPropertyDescriptor`: use ES2017 logic to bypass spec bugs
144  * [Fix] `ES2015+`: `CreateDataProperty`, `DefinePropertyOrThrow`, `ValidateAndApplyPropertyDescriptor`: add fallbacks for ES3
145  * [Fix] `ES2015+`: `FromPropertyDescriptor`: no longer requires a fully complete Property Descriptor
146  * [Fix] `ES5`: `IsPropertyDescriptor`: call into `IsDataDescriptor` and `IsAccessorDescriptor`
147  * [Refactor] use `has-symbols` for Symbol detection
148  * [Fix] `helpers/assertRecord`: remove `console.log`
149  * [Deps] update `object-keys`
150  * [readme] add security note
151  * [meta] change http URLs to https
152  * [meta] linter cleanup
153  * [meta] fix getOps script
154  * [meta] add FUNDING.yml
155  * [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`, `semver`, `replace`, `cheerio`, `tape`
156  * [Tests] up to `node` `v12.9`, `v11.15`, `v10.16`, `v8.16`, `v6.17`
157  * [Tests] temporarily allow node 0.6 to fail; segfaulting in travis
158  * [Tests] use the values helper more in es5 tests
159  * [Tests] fix linting to apply to all files
160  * [Tests] run `npx aud` only on prod deps
161  * [Tests] add v.descriptors helpers
162  * [Tests] use `npx aud` instead of `npm audit` with hoops
163  * [Tests] use `eclint` instead of `editorconfig-tools`
164  * [Tests] some intrinsic cleanup
165  * [Tests] migrate es5 tests to use values helper
166  * [Tests] add some missing ES2015 ops
167
1681.13.0 / 2019-01-02
169=================
170  * [New] add ES2018
171  * [New] add ES2015/ES2016: EnumerableOwnNames; ES2017: EnumerableOwnProperties
172  * [New] `ES2015+`: add `thisBooleanValue`, `thisNumberValue`, `thisStringValue`, `thisTimeValue`
173  * [New] `ES2015+`: add `DefinePropertyOrThrow`, `DeletePropertyOrThrow`, `CreateMethodProperty`
174  * [New] add `assertRecord` helper
175  * [Deps] update `is-callable`, `has`, `object-keys`, `es-to-primitive`
176  * [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `tape`, `semver`, `safe-publish-latest`, `replace`
177  * [Tests] use `npm audit` instead of `nsp`
178  * [Tests] remove `jscs`
179  * [Tests] up to `node` `v11.6`, `v10.15`, `v8.15`, `v6.16`
180  * [Tests] move descriptor factories to `values` helper
181  * [Tests] add `getOps` to programmatically fetch abstract operation names
182
1831.12.0 / 2018-05-31
184=================
185  * [New] add `GetIntrinsic` entry point
186  * [New] `ES2015`+: add `ObjectCreate`
187  * [Robustness]: `ES2015+`: ensure `Math.{abs,floor}` and `Function.call` are cached
188
1891.11.0 / 2018-03-21
190=================
191  * [New] `ES2015+`: add iterator abstract ops
192  * [Dev Deps] update `eslint`, `nsp`, `object.assign`, `semver`, `tape`
193  * [Tests] up to `node` `v9.8`, `v8.10`, `v6.13`
194
1951.10.0 / 2017-11-24
196=================
197  * [New] ES2015+: `AdvanceStringIndex`
198  * [Dev Deps] update `eslint`, `nsp`
199  * [Tests] require node 0.6 to pass again
200  * [Tests] up to `node` `v9.2`, `v8.9`, `v6.12`; use `nvm install-latest-npm`; pin included builds to LTS
201
2021.9.0 / 2017-09-30
203=================
204  * [New] `es2015+`: add `ArraySpeciesCreate`
205  * [New] ES2015+: add `CreateDataProperty` and `CreateDataPropertyOrThrow`
206  * [Tests] consolidate duplicated tests
207  * [Tests] increase coverage
208  * [Dev Deps] update `nsp`, `eslint`
209
2101.8.2 / 2017-09-03
211=================
212  * [Fix] `es2015`+: `ToNumber`: provide the proper hint for Date objects (#27)
213  * [Dev Deps] update `eslint`
214
2151.8.1 / 2017-08-30
216=================
217  * [Fix] ES2015+: `ToPropertyKey`: should return a symbol for Symbols (#26)
218  * [Deps] update `function-bind`
219  * [Dev Deps] update `eslint`, `@ljharb/eslint-config`
220  * [Docs] github broke markdown parsing
221
2221.8.0 / 2017-08-04
223=================
224  * [New] add ES2017
225  * [New] move es6+ to es2015+; leave es6/es7 as aliases
226  * [New] ES5+: add `IsPropertyDescriptor`, `IsAccessorDescriptor`, `IsDataDescriptor`, `IsGenericDescriptor`, `FromPropertyDescriptor`, `ToPropertyDescriptor`
227  * [New] ES2015+: add `CompletePropertyDescriptor`, `Set`, `HasOwnProperty`, `HasProperty`, `IsConcatSpreadable`, `Invoke`, `CreateIterResultObject`, `RegExpExec`
228  * [Fix] es7/es2016: do not mutate ES6
229  * [Fix] assign helper only supports one source
230  * [Deps] update `is-regex`
231  * [Dev Deps] update `nsp`, `eslint`, `@ljharb/eslint-config`
232  * [Dev Deps] update `eslint`, `@ljharb/eslint-config`, `nsp`, `semver`, `tape`
233  * [Tests] add tests for missing and excess operations
234  * [Tests] add codecov for coverage
235  * [Tests] up to `node` `v8.2`, `v7.10`, `v6.11`, `v4.8`; newer npm breaks on older node
236  * [Tests] use same lists of value types across tests; ensure tests are the same when ops are the same
237  * [Tests] ES2015: add ToNumber symbol tests
238  * [Tests] switch to `nyc` for code coverage
239  * [Tests] make IsRegExp tests consistent across editions
240
2411.7.0 / 2017-01-22
242=================
243  * [New] ES6: Add `GetMethod` (#16)
244  * [New] ES6: Add `GetV` (#16)
245  * [New] ES6: Add `Get` (#17)
246  * [Tests] up to `node` `v7.4`, `v6.9`, `v4.6`; improve test matrix
247  * [Dev Deps] update `tape`, `nsp`, `eslint`, `@ljharb/eslint-config`, `safe-publish-latest`
248
2491.6.1 / 2016-08-21
250=================
251  * [Fix] ES6: IsConstructor should return true for `class` constructors.
252
2531.6.0 / 2016-08-20
254=================
255  * [New] ES5 / ES6: add `Type`
256  * [New] ES6: `SpeciesConstructor`
257  * [Dev Deps] update `jscs`, `nsp`, `eslint`, `@ljharb/eslint-config`, `semver`; add `safe-publish-latest`
258  * [Tests] up to `node` `v6.4`, `v5.12`, `v4.5`
259
2601.5.1 / 2016-05-30
261=================
262  * [Fix] `ES.IsRegExp`: actually look up `Symbol.match` on the argument
263  * [Refactor] create `isNaN` helper
264  * [Deps] update `is-callable`, `function-bind`
265  * [Deps] update `es-to-primitive`, fix ES5 tests
266  * [Dev Deps] update `jscs`, `eslint`, `@ljharb/eslint-config`, `tape`, `nsp`
267  * [Tests] up to `node` `v6.2`, `v5.11`, `v4.4`
268  * [Tests] use pretest/posttest for linting/security
269
2701.5.0 / 2015-12-27
271=================
272  * [New] adds `Symbol.toPrimitive` support via `es-to-primitive`
273  * [Deps] update `is-callable`, `es-to-primitive`
274  * [Dev Deps] update `jscs`, `nsp`, `eslint`, `@ljharb/eslint-config`, `semver`, `tape`
275  * [Tests] up to `node` `v5.3`
276
2771.4.3 / 2015-11-04
278=================
279  * [Fix] `ES6.ToNumber`: should give `NaN` for explicitly signed hex strings (#4)
280  * [Refactor] `ES6.ToNumber`: No need to double-trim
281  * [Refactor] group tests better
282  * [Tests] should still pass on `node` `v0.8`
283
2841.4.2 / 2015-11-02
285=================
286  * [Fix] ensure `ES.ToNumber` trims whitespace, and does not trim non-whitespace (#3)
287
2881.4.1 / 2015-10-31
289=================
290  * [Fix] ensure only 0-1 are valid binary and 0-7 are valid octal digits (#2)
291  * [Dev Deps] update `tape`, `jscs`, `nsp`, `eslint`, `@ljharb/eslint-config`
292  * [Tests] on `node` `v5.0`
293  * [Tests] fix npm upgrades for older node versions
294  * package.json: use object form of "authors", add "contributors"
295
2961.4.0 / 2015-09-26
297=================
298  * [Deps] update `is-callable`
299  * [Dev Deps] update `tape`, `jscs`, `eslint`, `@ljharb/eslint-config`
300  * [Tests] on `node` `v4.2`
301  * [New] Add `SameValueNonNumber` to ES7
302
3031.3.2 / 2015-09-26
304=================
305  * [Fix] Fix `ES6.IsRegExp` to properly handle `Symbol.match`, per spec.
306  * [Tests] up to `io.js` `v3.3`, `node` `v4.1`
307  * [Dev Deps] update `tape`, `jscs`, `nsp`, `eslint`, `@ljharb/eslint-config`, `semver`
308
3091.3.1 / 2015-08-15
310=================
311  * [Fix] Ensure that objects that `toString` to a binary or octal literal also convert properly
312
3131.3.0 / 2015-08-15
314=================
315  * [New] ES6’s ToNumber now supports binary and octal literals.
316  * [Dev Deps] update `jscs`, `eslint`, `@ljharb/eslint-config`, `tape`
317  * [Docs] Switch from vb.teelaun.ch to versionbadg.es for the npm version badge SVG
318  * [Tests] up to `io.js` `v3.0`
319
3201.2.2 / 2015-07-28
321=================
322  * [Fix] Both `ES5.CheckObjectCoercible` and `ES6.RequireObjectCoercible` return the value if they don't throw.
323  * [Tests] Test on latest `io.js` versions.
324  * [Dev Deps] Update `eslint`, `jscs`, `tape`, `semver`, `covert`, `nsp`
325
3261.2.1 / 2015-03-20
327=================
328  * Fix `isFinite` helper.
329
3301.2.0 / 2015-03-19
331=================
332  * Use `es-to-primitive` for ToPrimitive methods.
333  * Test on latest `io.js` versions; allow failures on all but 2 latest `node`/`io.js` versions.
334
3351.1.2 / 2015-03-20
336=================
337  * Fix isFinite helper.
338
3391.1.1 / 2015-03-19
340=================
341  * Fix isPrimitive check for functions
342  * Update `eslint`, `editorconfig-tools`, `semver`, `nsp`
343
3441.1.0 / 2015-02-17
345=================
346  * Add ES7 export (non-default).
347  * All grade A-supported `node`/`iojs` versions now ship with an `npm` that understands `^`.
348  * Test on `iojs-v1.2`.
349
3501.0.1 / 2015-01-30
351=================
352  * Use `is-callable` instead of an internal function.
353  * Update `tape`, `jscs`, `nsp`, `eslint`
354
3551.0.0 / 2015-01-10
356=================
357  * v1.0.0
358