arraybuffer.prototype.slice
Advanced tools
Comparing version 1.0.3 to 1.0.4
@@ -8,2 +8,15 @@ # Changelog | ||
## [v1.0.4](https://github.com/es-shims/ArrayBuffer.prototype.slice/compare/v1.0.3...v1.0.4) - 2024-12-15 | ||
### Commits | ||
- [actions] split out node 10-20, and 20+ [`5e59635`](https://github.com/es-shims/ArrayBuffer.prototype.slice/commit/5e59635c948994b613c544b4e94fe93536d6b213) | ||
- [Deps] update `call-bind`, `es-abstract`, `get-intrinsic` [`0afbb59`](https://github.com/es-shims/ArrayBuffer.prototype.slice/commit/0afbb5942574055a8a3afdf0f69f60313e3f1af2) | ||
- [Dev Deps] update `@es-shims/api`, `auto-changelog`, `es-value-fixtures`, `object-inspect`, `tape` [`d76caf4`](https://github.com/es-shims/ArrayBuffer.prototype.slice/commit/d76caf4880ef358cf5384a6eb29d0f2f67e4d3a8) | ||
- [Deps] update `call-bind`, `es-abstract`, `es-errors`, `get-intrinsic` [`2b374a2`](https://github.com/es-shims/ArrayBuffer.prototype.slice/commit/2b374a2d4078d9122ac30bdecd8a8fae740aa74c) | ||
- [Dev Deps] update `@es-shims/api`, `@ljharb/eslint-config`, `object-inspect`, `tape` [`a24fd39`](https://github.com/es-shims/ArrayBuffer.prototype.slice/commit/a24fd39370d891ea3439f9d7a1c42183c0aa1bf7) | ||
- [Tests] replace `aud` with `npm audit` [`c704fb0`](https://github.com/es-shims/ArrayBuffer.prototype.slice/commit/c704fb0b1651ceb56b609a5b4646a993fc868219) | ||
- [Deps] remove unused dependency [`0274b32`](https://github.com/es-shims/ArrayBuffer.prototype.slice/commit/0274b32ab1d345fbf70745a79dd7a44f844179bb) | ||
- [Dev Deps] add missing peer dep [`673f754`](https://github.com/es-shims/ArrayBuffer.prototype.slice/commit/673f754797dd0c40801cca2f32ff08b372448c6b) | ||
## [v1.0.3](https://github.com/es-shims/ArrayBuffer.prototype.slice/compare/v1.0.2...v1.0.3) - 2024-02-04 | ||
@@ -10,0 +23,0 @@ |
@@ -8,8 +8,8 @@ 'use strict'; | ||
var IsDetachedBuffer = require('es-abstract/2023/IsDetachedBuffer'); | ||
var IsSharedArrayBuffer = require('es-abstract/2023/IsSharedArrayBuffer'); | ||
var max = require('es-abstract/2023/max'); | ||
var min = require('es-abstract/2023/min'); | ||
var SpeciesConstructor = require('es-abstract/2023/SpeciesConstructor'); | ||
var ToIntegerOrInfinity = require('es-abstract/2023/ToIntegerOrInfinity'); | ||
var IsDetachedBuffer = require('es-abstract/2024/IsDetachedBuffer'); | ||
var IsSharedArrayBuffer = require('es-abstract/2024/IsSharedArrayBuffer'); | ||
var max = require('es-abstract/2024/max'); | ||
var min = require('es-abstract/2024/min'); | ||
var SpeciesConstructor = require('es-abstract/2024/SpeciesConstructor'); | ||
var ToIntegerOrInfinity = require('es-abstract/2024/ToIntegerOrInfinity'); | ||
@@ -16,0 +16,0 @@ var arrayBufferByteLength = require('array-buffer-byte-length'); |
{ | ||
"name": "arraybuffer.prototype.slice", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "ES spec-compliant shim for ArrayBuffer.prototype.slice", | ||
@@ -25,3 +25,3 @@ "author": "Jordan Harband <ljharb@gmail.com>", | ||
"test": "npm run tests-only", | ||
"posttest": "aud --production", | ||
"posttest": "npx npm@'>=10.2' audit --production", | ||
"tests-only": "nyc tape 'test/**/*.js'", | ||
@@ -58,18 +58,16 @@ "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')", | ||
"array-buffer-byte-length": "^1.0.1", | ||
"call-bind": "^1.0.5", | ||
"call-bind": "^1.0.8", | ||
"define-properties": "^1.2.1", | ||
"es-abstract": "^1.22.3", | ||
"es-errors": "^1.2.1", | ||
"get-intrinsic": "^1.2.3", | ||
"is-array-buffer": "^3.0.4", | ||
"is-shared-array-buffer": "^1.0.2" | ||
"es-abstract": "^1.23.5", | ||
"es-errors": "^1.3.0", | ||
"get-intrinsic": "^1.2.6", | ||
"is-array-buffer": "^3.0.4" | ||
}, | ||
"devDependencies": { | ||
"@es-shims/api": "^2.4.2", | ||
"@ljharb/eslint-config": "^21.1.0", | ||
"aud": "^2.0.4", | ||
"auto-changelog": "^2.4.0", | ||
"covert": "^1.1.1", | ||
"@es-shims/api": "^2.5.1", | ||
"@ljharb/eslint-config": "^21.1.1", | ||
"auto-changelog": "^2.5.0", | ||
"eclint": "^2.8.1", | ||
"es-value-fixtures": "^1.4.2", | ||
"encoding": "^0.1.13", | ||
"es-value-fixtures": "^1.5.0", | ||
"eslint": "=8.8.0", | ||
@@ -83,5 +81,5 @@ "evalmd": "^0.0.19", | ||
"nyc": "^10.3.2", | ||
"object-inspect": "^1.13.1", | ||
"object-inspect": "^1.13.3", | ||
"safe-publish-latest": "^2.0.0", | ||
"tape": "^5.7.4" | ||
"tape": "^5.9.0" | ||
}, | ||
@@ -88,0 +86,0 @@ "testling": { |
'use strict'; | ||
var inspect = require('object-inspect'); | ||
var IsDetachedBuffer = require('es-abstract/2023/IsDetachedBuffer'); | ||
var IsDetachedBuffer = require('es-abstract/2024/IsDetachedBuffer'); | ||
@@ -6,0 +6,0 @@ var forEach = require('for-each'); |
21673
7
17
+ Addedcall-bound@1.0.3(transitive)
- Removedis-shared-array-buffer@^1.0.2
- Removedarraybuffer.prototype.slice@1.0.4(transitive)
- Removedcall-bound@1.0.4(transitive)
Updatedcall-bind@^1.0.8
Updatedes-abstract@^1.23.5
Updatedes-errors@^1.3.0
Updatedget-intrinsic@^1.2.6