Skip to content

Commit 9376c6f

Browse files
committed
3.31.1
1 parent 80b2e80 commit 9376c6f

File tree

13 files changed

+322
-135
lines changed

13 files changed

+322
-135
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Changelog
22
##### Unreleased
3+
- Nothing
4+
5+
##### [3.31.1 - 2023.07.06](https://github.com/zloirock/core-js/releases/tag/v3.31.1)
36
- Fixed a `structuredClone` bug with cloning views of transferred buffers, [#1265](https://github.com/zloirock/core-js/issues/1265)
47
- Fixed the order of arguments validation in `DataView` methods
58
- Allowed cloning of [`Float16Array`](https://github.com/tc39/proposal-float16array) in `structuredClone`

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -209,11 +209,11 @@ structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
209209
### Installation:[](#index)
210210
```sh
211211
// global version
212-
npm install --save core-js@3.31.0
212+
npm install --save core-js@3.31.1
213213
// version without global namespace pollution
214-
npm install --save core-js-pure@3.31.0
214+
npm install --save core-js-pure@3.31.1
215215
// bundled global version
216-
npm install --save core-js-bundle@3.31.0
216+
npm install --save core-js-bundle@3.31.1
217217
```
218218

219219
Or you can use `core-js` [from CDN](https://www.jsdelivr.com/package/npm/core-js-bundle).

deno/corejs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
*Example*:
3131
```js
32-
import 'https://deno.land/x/corejs@v3.31.0/index.js'; // <- at the top of your entry point
32+
import 'https://deno.land/x/corejs@v3.31.1/index.js'; // <- at the top of your entry point
3333

3434
Object.hasOwn({ foo: 42 }, 'foo'); // => true
3535

0 commit comments

Comments
 (0)