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