Bump the npm group with 2 updates (#1819)
* Bump the npm group with 2 updates Bumps the npm group with 2 updates: [eslint](https://github.com/eslint/eslint) and [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import). Updates `eslint` from 8.45.0 to 8.46.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.45.0...v8.46.0) Updates `eslint-plugin-import` from 2.27.5 to 2.28.0 - [Release notes](https://github.com/import-js/eslint-plugin-import/releases) - [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md) - [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.27.5...v2.28.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm - dependency-name: eslint-plugin-import dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm ... Signed-off-by: dependabot[bot] <support@github.com> * Update checked-in dependencies --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
a6b0ced86b
commit
e7e35baaf0
1408 changed files with 27215 additions and 9910 deletions
81
node_modules/es-abstract/CHANGELOG.md
generated
vendored
81
node_modules/es-abstract/CHANGELOG.md
generated
vendored
|
|
@ -1,3 +1,84 @@
|
|||
1.22.1 / 2023-07-15
|
||||
=================
|
||||
* [Deps] add missing `safe-array-concat` dep
|
||||
|
||||
1.22.0 / 2023-07-15
|
||||
=================
|
||||
* [New] add `ES2023`
|
||||
* [New] `ES2021+`: add `SetTypedArrayFromArrayLike`, `SetTypedArrayFromTypedArray`
|
||||
* [New] `ES2021`+: add `CloneArrayBuffer`
|
||||
* [New] `ES2020`+: add `IsValidIntegerIndex`
|
||||
* [New] `ES2015`+: add `GetValueFromBuffer`, `SetValueInBuffer`
|
||||
* [New] `ES2016`+: add `TypedArrayCreate`, `TypedArraySpeciesCreate`
|
||||
* [New] `ES2015`+: add `IsWordChar`
|
||||
* [New] `ES2017`+ add `WordCharacters`
|
||||
* [New] `ES2015`+: add `Canonicalize`
|
||||
* [New] `ES2015`+: add `NewPromiseCapability`
|
||||
* [Fix] `ES2017+`: `NumberToRawBytes`, `NumericToRawBytes`: reimplement Float64, fix integer scenarios
|
||||
* [Refactor] add `helpers/isLineTerminator`
|
||||
* [Refactor] add `isInteger` helper, and use it
|
||||
* [Refactor] extract `isStringOrHole` to a helper
|
||||
* [Refactor] `ES2017`+: `RawBytesToNumber`, `RawBytesToNumeric`: extract common code to helpers
|
||||
* [Refactor] make a MAX_VALUE helper
|
||||
* [Tests] fix RawBytesToNumeric tests in node v10.4-10.8
|
||||
* [Tests] fix buffer test cases in node v10.4-v10.8
|
||||
|
||||
1.21.3 / 2023-07-12
|
||||
=================
|
||||
* [Fix] `ES2017+`: `RawBytesToNumber`, `RawBytesToNumeric`: properly handle some scenarios
|
||||
* [Fix] `ES2015`+: `GetV`: the receiver is `V`, not `O`
|
||||
* [Fix] `ES2017`+: `RawBytesToNumber`, `RawBytesToNumeric`: fix exponent calculation for Float64, improve tests
|
||||
* [Fix] `ES2017`+: `RawBytesToNumber`, `RawBytesToNumeric`: fix logic, improve tests
|
||||
* [Fix] `ES2019`+: `thisTimeValue`: fix spackling
|
||||
* [Robustness] `ES2017`+: `NumberToRawBytes`, `NumericToRawBytes`: use `SameValue` instead of `Object.is`
|
||||
* [Refactor] `ES2021`+: `ValidateAtomicAccess`: use `typed-array-byte-offset`
|
||||
* [Refactor] `ES2019`+: `AddEntriesFromIterable`: use `ThrowCompletion`
|
||||
* [patch] `ES2015`+: `ObjectDefineProperties`: satisfy TODO
|
||||
* [patch] `ES2015`+: `GetV`: improve error message
|
||||
* [patch] fix spec URLs
|
||||
* [Deps] update `get-intrinsic`, `regexp.prototype.flags`, `which-typed-array`
|
||||
* [actions] fix permissions
|
||||
* [Tests] add buffer test case fixtures + tests
|
||||
* [Tests] skip test that modifies the env in SES
|
||||
* [Tests] fix regex flags tests for node 20
|
||||
* [Dev Deps] update `@ljharb/eslint-config`, `aud`, `available-regexp-flags`, `is-core-module`, `tape`
|
||||
|
||||
1.21.2 / 2023-03-12
|
||||
=================
|
||||
* [Fix] `ES2015`+: `CreateDataProperty`: use `OrdinaryDefineOwnProperty`
|
||||
* [Fix] `ES2015`+: `CreateDataProperty`: use `OrdinaryDefineOwnProperty`
|
||||
* [Fix] `ES2015`+: `GetPrototypeFromConstructor`: add missing assertion that `intrinsicDefaultProto` is an object
|
||||
* [Fix] `ES2015`+: `IsDetachedBuffer`: ensure a nullish error does not crash
|
||||
* [Fix] `ES2015`+: `ToDateString`: properly handle time values that aren’t "now"
|
||||
* [Fix] `ES2015`+: `ToUint8Clamp`: avoid an extra observable ToNumber
|
||||
* [Fix] `ES2015`+`: `GetMethod`: when `func` is not callable and `P` is a symbol, avoid the wrong TypeError
|
||||
* [Fix] `ES2020`+: `ToBigInt`: properly throw on anything besides string, bigint, boolean
|
||||
* [Fix] `ES2021`+: `SplitMatch`: instead of `false`, return `'not-matched'`
|
||||
* [Fix] `helpers/assertRecord`: handle nullish input
|
||||
* [Fix] `helpers/isFullyPopulatedPropertyDescriptor`: handle primitive inputs
|
||||
* [Robustness] `ES5`: `ToNumber`: avoid relying on runtime `.test` and `.replace`
|
||||
* [Refactor] `ES2015`: mark `IsDataDescriptor` and `IsAccessorDescriptor` as spackled
|
||||
* [Refactor] `ES2015`+: `IsDetachedBuffer`: use `array-buffer-byte-length` package
|
||||
* [Refactor] `ES2015`+: `OrdinaryHasInstance`: rely on falsiness
|
||||
* [Refactor] `ES2016`+: `CreateListFromArrayLike`: hoist default element types to module level
|
||||
* [Refactor] `ES2022`+: `StringToNumber`, `ToNumber`: use `string.prototype.trim`
|
||||
* [patch] `ES2022`+: `IsLessThan`: fix a comment
|
||||
* [patch] `ES2022`+: `TypedArrayElementSize`, `TypedArrayElementType`: throw a SyntaxError with an unknown TA type
|
||||
* [patch] `ES2022`+: `IsLessThan`: fix a comment
|
||||
* [patch] `ES2020`+: `thisBigIntValue`: throw a SyntaxError, not TypeError, for unsupported features
|
||||
* [patch] `helpers/getIteratorMethod`: `String` is always available
|
||||
* [patch] fix commented spec URLs
|
||||
* [patch] omit `%` for `callBound`
|
||||
* [meta] fix spec URLs
|
||||
* [meta] fix spackle metadata, comments
|
||||
* [Deps] update `get-intrinsic`, `internal-slot`, `is-array-buffer`, `object-inspect`
|
||||
* [Deps] move `function-bind` to dev deps
|
||||
* [Tests] String.fromCharCode takes numbers, not strings
|
||||
* [Tests] use `makeIteratorRecord` helper
|
||||
* [Tests] increase coverage
|
||||
* [Tests] fix tests that throw a sentinel
|
||||
* [Dev Deps] update `array.from`, `available-regexp-flags`, `tape`
|
||||
|
||||
1.21.1 / 2023-01-10
|
||||
=================
|
||||
* [Fix] move `available-typed-arrays` to runtime deps
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue