Skip to content

Commit 177abe2

Browse files
renovate[bot]jbudz
authored andcommitted
Update dependency core-js to ^3.27.2 (main) (elastic#149560)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [core-js](https://togithub.com/zloirock/core-js) | [`^3.27.1` -> `^3.27.2`](https://renovatebot.com/diffs/npm/core-js/3.27.1/3.27.2) | [![age](https://badges.renovateapi.com/packages/npm/core-js/3.27.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/core-js/3.27.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/core-js/3.27.2/compatibility-slim/3.27.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/core-js/3.27.2/confidence-slim/3.27.1)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>zloirock/core-js</summary> ### [`v3.27.2`](https://togithub.com/zloirock/core-js/blob/HEAD/CHANGELOG.md#&#8203;3272---20230119-httpsgithubcomzloirockcore-jsreleasestagv3272) [Compare Source](https://togithub.com/zloirock/core-js/compare/v3.27.1...v3.27.2) - [`Set` methods proposal](https://togithub.com/tc39/proposal-set-methods) updates: - Closing of iterators of `Set`-like objects on early exit, [proposal-set-methods/85](https://togithub.com/tc39/proposal-set-methods/pull/85) - Some other minor internal changes - Added one more workaround of a `webpack` dev server bug on IE global methods, [#&elastic#8203;1161](https://togithub.com/zloirock/core-js/issues/1161) - Fixed possible `String.{ raw, cooked }` error with empty template array - Used non-standard V8 `Error.captureStackTrace` instead of stack parsing in new error classes / wrappers where it's possible - Added detection correctness of iteration to `Promise.{ allSettled, any }` feature detection, Hermes issue - Compat data improvements: - [Change `Array` by copy proposal](https://togithub.com/tc39/proposal-change-array-by-copy) marked as supported from V8 ~ Chrome 110 - Added Samsung Internet 20 compat data mapping - Added Quest Browser 25 compat data mapping - Added React Native 0.71 Hermes compat data - Added Electron 23 and 24 compat data mapping - `self` marked as fixed in Deno 1.29.3, [deno/17362](https://togithub.com/denoland/deno/pull/17362) - Minor tweaks of minification settings for `core-js-bundle` - Refactoring, some minor fixes, improvements, optimizations </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/elastic/kibana). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xMTEuMSIsInVwZGF0ZWRJblZlciI6IjM0LjExMS4xIn0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jonathan Budzenski <[email protected]>
1 parent 2f05ab5 commit 177abe2

File tree

4 files changed

+11
-85
lines changed

4 files changed

+11
-85
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@
454454
"compare-versions": "3.5.1",
455455
"constate": "^3.3.2",
456456
"copy-to-clipboard": "^3.0.8",
457-
"core-js": "^3.27.1",
457+
"core-js": "^3.27.2",
458458
"cronstrue": "^1.51.0",
459459
"cuid": "^2.1.8",
460460
"cytoscape": "^3.10.0",

packages/kbn-babel-preset/node_preset.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module.exports = (_, options = {}) => {
3131
// Because of that we should use for that value the same version we install
3232
// in the package.json in order to have the same polyfills between the environment
3333
// and the tests
34-
corejs: '3.27.1',
34+
corejs: '3.27.2',
3535
bugfixes: true,
3636

3737
...(options['@babel/preset-env'] || {}),

packages/kbn-babel-preset/webpack_preset.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module.exports = (api, options = {}) => {
1919
modules: false,
2020
// Please read the explanation for this
2121
// in node_preset.js
22-
corejs: '3.27.1',
22+
corejs: '3.27.2',
2323
bugfixes: true,
2424
browserslistEnv: api.env('production') ? 'production' : 'dev',
2525
},

yarn.lock

Lines changed: 8 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -11339,10 +11339,10 @@ core-js@^2.4.0, core-js@^2.5.0, core-js@^2.6.9:
1133911339
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.9.tgz#6b4b214620c834152e179323727fc19741b084f2"
1134011340
integrity sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A==
1134111341

11342-
core-js@^3.0.4, core-js@^3.27.1, core-js@^3.6.5, core-js@^3.8.2, core-js@^3.8.3:
11343-
version "3.27.1"
11344-
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.27.1.tgz#23cc909b315a6bb4e418bf40a52758af2103ba46"
11345-
integrity sha512-GutwJLBChfGCpwwhbYoqfv03LAfmiz7e7D/BNxzeMxwQf10GRSzqiOjx7AmtEk+heiD/JWmBuyBPgFtx0Sg1ww==
11342+
core-js@^3.0.4, core-js@^3.27.2, core-js@^3.6.5, core-js@^3.8.2, core-js@^3.8.3:
11343+
version "3.27.2"
11344+
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.27.2.tgz#85b35453a424abdcacb97474797815f4d62ebbf7"
11345+
integrity sha512-9ashVQskuh5AZEZ1JdQWp1GqSoC1e1G87MzRqg2gIfVAQ7Qn9K+uFj8EcniUFA4P2NLZfV+TOlX1SzoKfo+s7w==
1134611346

1134711347
[email protected], core-util-is@^1.0.2, core-util-is@~1.0.0:
1134811348
version "1.0.2"
@@ -13061,22 +13061,7 @@ ejs@^3.1.8:
1306113061
dependencies:
1306213062
jake "^10.8.5"
1306313063

13064-
[email protected], elastic-apm-http-client@^11.0.1:
13065-
version "11.0.4"
13066-
resolved "https://registry.yarnpkg.com/elastic-apm-http-client/-/elastic-apm-http-client-11.0.4.tgz#3e44e56fa42235b1b16a33c6a7656cfde595f9ff"
13067-
integrity sha512-449Qj/STi9hgnIk2KQ7719E7lpM3/i4Afs7NUhSOX8wV3sxn/+ItIHx9kKJthzhDDezxIfQcH83v83AF67GspQ==
13068-
dependencies:
13069-
agentkeepalive "^4.2.1"
13070-
breadth-filter "^2.0.0"
13071-
end-of-stream "^1.4.4"
13072-
fast-safe-stringify "^2.0.7"
13073-
fast-stream-to-buffer "^1.0.0"
13074-
object-filter-sequence "^1.0.0"
13075-
readable-stream "^3.4.0"
13076-
semver "^6.3.0"
13077-
stream-chopper "^3.0.1"
13078-
13079-
13064+
[email protected], elastic-apm-http-client@^11.0.1:
1308013065
version "11.2.0"
1308113066
resolved "https://registry.yarnpkg.com/elastic-apm-http-client/-/elastic-apm-http-client-11.2.0.tgz#4da8b975ca326c1e5beb59746ab1124c4feddad3"
1308213067
integrity sha512-XHXK+gQmd34eRN/ffrml7AN4h1VwujB79WEO2C/J59ufvEk+mT1OGBhl6pntHPUWn4Um52C5m84O6jIXzaQwfw==
@@ -13091,45 +13076,7 @@ [email protected]:
1309113076
semver "^6.3.0"
1309213077
stream-chopper "^3.0.1"
1309313078

13094-
elastic-apm-node@^3.38.0:
13095-
version "3.41.1"
13096-
resolved "https://registry.yarnpkg.com/elastic-apm-node/-/elastic-apm-node-3.41.1.tgz#e0829d69d5e8a6062ef567d0a8db0ec0e3736ea8"
13097-
integrity sha512-bLCVIyAgQC+ZfY5fd/UaAId+8dh3vusaxZF2A0YtHBAwx1YGpIA3dqOt5zc1UuYmbjCdsEAiUjaUEAHOWdjTzA==
13098-
dependencies:
13099-
"@elastic/ecs-pino-format" "^1.2.0"
13100-
"@opentelemetry/api" "^1.1.0"
13101-
after-all-results "^2.0.0"
13102-
async-cache "^1.1.0"
13103-
async-value-promise "^1.1.1"
13104-
basic-auth "^2.0.1"
13105-
cookie "^0.5.0"
13106-
core-util-is "^1.0.2"
13107-
elastic-apm-http-client "11.0.4"
13108-
end-of-stream "^1.4.4"
13109-
error-callsites "^2.0.4"
13110-
error-stack-parser "^2.0.6"
13111-
escape-string-regexp "^4.0.0"
13112-
fast-safe-stringify "^2.0.7"
13113-
http-headers "^3.0.2"
13114-
is-native "^1.0.1"
13115-
lru-cache "^6.0.0"
13116-
measured-reporting "^1.51.1"
13117-
monitor-event-loop-delay "^1.0.0"
13118-
object-filter-sequence "^1.0.0"
13119-
object-identity-map "^1.0.2"
13120-
original-url "^1.2.3"
13121-
pino "^6.11.2"
13122-
relative-microtime "^2.0.0"
13123-
require-in-the-middle "^5.2.0"
13124-
semver "^6.3.0"
13125-
set-cookie-serde "^1.0.0"
13126-
shallow-clone-shim "^2.0.0"
13127-
source-map "^0.8.0-beta.0"
13128-
sql-summary "^1.0.1"
13129-
traverse "^0.6.6"
13130-
unicode-byte-truncate "^1.0.0"
13131-
13132-
elastic-apm-node@^3.42.0:
13079+
elastic-apm-node@^3.38.0, elastic-apm-node@^3.42.0:
1313313080
version "3.42.0"
1313413081
resolved "https://registry.yarnpkg.com/elastic-apm-node/-/elastic-apm-node-3.42.0.tgz#22c11e98708a0df7a7de8c8fb195929b4fc90c00"
1313513082
integrity sha512-Q9sugfpaw6jQ8xDeP09LlyF0MwE5k0hphQmUiap+qQKE2jrLvY00zk4WierDQ2GF/AguE6BtRZmXpUELDbHFyA==
@@ -24060,15 +24007,6 @@ require-from-string@^2.0.2:
2406024007
resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
2406124008
integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==
2406224009

24063-
require-in-the-middle@^5.2.0:
24064-
version "5.2.0"
24065-
resolved "https://registry.yarnpkg.com/require-in-the-middle/-/require-in-the-middle-5.2.0.tgz#4b71e3cc7f59977100af9beb76bf2d056a5a6de2"
24066-
integrity sha512-efCx3b+0Z69/LGJmm9Yvi4cqEdxnoGnxYxGxBghkkTTFeXRtTCmmhO0AnAfHz59k957uTSuy8WaHqOs8wbYUWg==
24067-
dependencies:
24068-
debug "^4.1.1"
24069-
module-details-from-path "^1.0.3"
24070-
resolve "^1.22.1"
24071-
2407224010
require-in-the-middle@^6.0.0:
2407324011
version "6.0.0"
2407424012
resolved "https://registry.yarnpkg.com/require-in-the-middle/-/require-in-the-middle-6.0.0.tgz#01cc6416286fb5e672d0fe031d996f8bc202509d"
@@ -26660,12 +26598,7 @@ tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3:
2666026598
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043"
2666126599
integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==
2666226600

26663-
tslib@^2.0.0, tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.2.0, tslib@^2.3.1, tslib@~2.4.0:
26664-
version "2.4.0"
26665-
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3"
26666-
integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==
26667-
26668-
tslib@^2.4.0:
26601+
tslib@^2.0.0, tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.2.0, tslib@^2.3.1, tslib@^2.4.0, tslib@~2.4.0:
2666926602
version "2.4.1"
2667026603
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e"
2667126604
integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==
@@ -26840,14 +26773,7 @@ unc-path-regex@^0.1.2:
2684026773
resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa"
2684126774
integrity sha1-5z3T17DXxe2G+6xrCufYxqadUPo=
2684226775

26843-
undici@^5.11.0:
26844-
version "5.11.0"
26845-
resolved "https://registry.yarnpkg.com/undici/-/undici-5.11.0.tgz#1db25f285821828fc09d3804b9e2e934ae86fc13"
26846-
integrity sha512-oWjWJHzFet0Ow4YZBkyiJwiK5vWqEYoH7BINzJAJOLedZ++JpAlCbUktW2GQ2DS2FpKmxD/JMtWUUWl1BtghGw==
26847-
dependencies:
26848-
busboy "^1.6.0"
26849-
26850-
undici@^5.5.1:
26776+
undici@^5.11.0, undici@^5.5.1:
2685126777
version "5.14.0"
2685226778
resolved "https://registry.yarnpkg.com/undici/-/undici-5.14.0.tgz#1169d0cdee06a4ffdd30810f6228d57998884d00"
2685326779
integrity sha512-yJlHYw6yXPPsuOH0x2Ib1Km61vu4hLiRRQoafs+WUgX1vO64vgnxiCEN9dpIrhZyHFsai3F0AEj4P9zy19enEQ==

0 commit comments

Comments
 (0)