Skip to content

Commit 4a8b1f7

Browse files
committed
3.25.5
1 parent 1ad3e1a commit 4a8b1f7

11 files changed

Lines changed: 1543 additions & 1529 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Changelog
22
##### Unreleased
3+
- Nothing
4+
5+
##### [3.25.5 - 2022.10.04](https://github.com/zloirock/core-js/releases/tag/v3.25.5)
36
- Fixed regression with an error on reuse of some built-in methods from another realm, [#1133](https://github.com/zloirock/core-js/issues/1133)
47

58
##### [3.25.4 - 2022.10.03](https://github.com/zloirock/core-js/releases/tag/v3.25.4)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,11 @@ queueMicrotask(() => console.log('called as microtask'));
176176
### Installation:[](#index)
177177
```
178178
// global version
179-
npm install --save core-js@3.25.4
179+
npm install --save core-js@3.25.5
180180
// version without global namespace pollution
181-
npm install --save core-js-pure@3.25.4
181+
npm install --save core-js-pure@3.25.5
182182
// bundled global version
183-
npm install --save core-js-bundle@3.25.4
183+
npm install --save core-js-bundle@3.25.5
184184
```
185185

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

deno/corejs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
*Example*:
2626
```js
27-
import 'https://deno.land/x/corejs@v3.25.4/index.js'; // <- at the top of your entry point
27+
import 'https://deno.land/x/corejs@v3.25.5/index.js'; // <- at the top of your entry point
2828

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

0 commit comments

Comments
 (0)