Skip to content

pkg: Update build packages#3798

Merged
ntucker merged 1 commit intomasterfrom
renovate/build
Mar 20, 2026
Merged

pkg: Update build packages#3798
ntucker merged 1 commit intomasterfrom
renovate/build

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Mar 20, 2026

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@anansi/babel-preset 6.2.246.2.25 age adoption passing confidence
@anansi/babel-preset 6.2.236.2.25 age adoption passing confidence
@anansi/webpack-config 21.1.1521.1.16 age adoption passing confidence
@anansi/webpack-config 21.1.1421.1.16 age adoption passing confidence
@babel/runtime-corejs3 (source) 7.29.07.29.2 age adoption passing confidence
core-js (source) 3.48.03.49.0 age adoption passing confidence
webpack 5.105.35.105.4 age adoption passing confidence

Release Notes

babel/babel (@​babel/runtime-corejs3)

v7.29.2

Compare Source

v7.29.2 (2026-03-16)
👓 Spec Compliance
🐛 Bug Fix
  • babel-helpers, babel-plugin-transform-async-generator-functions, babel-preset-env, babel-runtime-corejs3
  • babel-preset-env
🏠 Internal
Committers: 2
zloirock/core-js (core-js)

v3.49.0

Compare Source

  • Changes v3.48.0...v3.49.0 (373 commits)
  • Iterator.range updated following the actual spec version
    • Throw a RangeError on NaN start / end / step
    • Allow null as optionOrStep
  • Improved accuracy of Math.{ asinh, atanh } polyfills with big and small values
  • Improved accuracy of Number.prototype.toExponential polyfills with big and small values
  • Improved performance of atob, btoa, Uint8Array.fromHex, Uint8Array.prototype.setFromHex, and Uint8Array.prototype.toHex, #​1503, #​1464, #​1510, thanks @​johnzhou721
  • Minor performance optimization polyfills of methods from Map upsert proposal
  • Polyfills of methods from Map upsert proposal from the pure version made generic to make it work with polyfilled and native collections
  • Wrap Symbol.for in Symbol.prototype.description polyfill for correct handling of empty string descriptions
  • Fixed a modern Safari bug in Array.prototype.includes with sparse arrays and fromIndex
  • Fixed one more case (Iterator.prototype.take) of a V8 ~ Chromium < 126 bug
  • Forced replacement of Iterator.{ concat, zip, zipKeyed } in the pure version for ensuring proper wrapped Iterator instances as the result
  • Fixed proxying .return() on exhausted iterator from some methods of iterator helpers polyfill to the underlying iterator
  • Fixed double .return() calling in case of throwing error in this method in the internal iterate helper that affected some polyfills
  • Fixed closing iterator on IteratorValue errors in the internal iterate helper that affected some polyfills
  • Fixed iterator closing in Array.from polyfill on failure to create array property
  • Fixed order of arguments validation in Array.fromAsync polyfill
  • Fixed a lack of counter validation on MAX_SAFE_INTEGER in Array.fromAsync polyfill
  • Fixed order of arguments validation in Array.prototype.flat polyfill
  • Fixed handling strings as iterables in Iterator.{ zip, zipKeyed } polyfills
  • Fixed some cases of iterators closing in Iterator.{ zip, zipKeyed } polyfills
  • Fixed validation of iterators .next() results an objects in Iterator.{ zip, zipKeyed } polyfills
  • Fixed a lack of early error in Iterator.concat polyfill on primitive as an iterator
  • Fixed buffer mutation exposure in Iterator.prototype.windows polyfill
  • Fixed iterator closing in Set.prototype.{ isDisjointFrom, isSupersetOf } polyfill
  • Fixed (updated following the final spec) one more case Set.prototype.difference polyfill with updating this
  • Fixed DataView.prototype.setFloat16 polyfill in (0, 1) range
  • Fixed order of arguments validation in String.prototype.{ padStart, padEnd } polyfills
  • Fixed order of arguments validation in String.prototype.{ startsWith, endsWith } polyfills
  • Fixed some cases of Infinity handling in String.prototype.substr polyfill
  • Fixed String.prototype.repeat polyfill with a counter exceeding 2 ** 32
  • Fixed some cases of chars case in escape polyfill
  • Fixed named backreferences in RegExp NCG polyfill
  • Fixed some cases of RegExp NCG polyfill in combination with other types of groups
  • Fixed some cases of RegExp NCG polyfill in combination with dotAll
  • Fixed String.prototype.replace with sticky polyfill, #​810, #​1514
  • Fixed RegExp sticky polyfill with alternation
  • Fixed handling of some line terminators in case of multiline + sticky mode in RegExp polyfill
  • Fixed .input slicing on result object with RegExp sticky mode polyfill
  • Fixed handling of empty groups with global and unicode modes in polyfills
  • Fixed URLSearchParam.prototype.delete polyfill with duplicate key-value pairs
  • Fixed possible removal of unnecessary entries in URLSearchParam.prototype.delete polyfill with second argument
  • Fixed an error in some cases of non-special URLs without a path in the URL polyfill
  • Fixed some percent encode cases / character sets in the URL polyfill
  • Fixed parsing of non-IPv4 hosts ends in a number in the URL polyfill
  • Fixed some cases of '' and null host handling in the URL polyfill
  • Fixed host parsing with hostname = host:port in the URL polyfill
  • Fixed host inheritance in some cases of file scheme in the URL polyfill
  • Fixed block of protocol change for file with empty host in the URL polyfill
  • Fixed invalid code points handling in UTF-8 decode in the URLSearchParams polyfill
  • Fixed some cases of serialization in URL polyfill (/. prefix for non-special URLs with null host and path starting with empty segment)
  • Fixed URL polyfill .origin getter with blob scheme
  • Fixed a lack of error in URLSearchParams.prototype.set polyfill on calling only with 1 argument
  • Fixed handling invalid UTF-8 continuation bytes in URLSearchParams polyfill
  • Fixed incomplete sequences with out-of-range continuation bytes handling in URLSearchParams polyfill
  • Fixed allowing unexpected symbols in scheme in the URL polyfill
  • Fixed repeated ToPropertyKey calling in Reflect.{ get, set, deleteProperty } polyfills
  • Fixed Reflect.set polyfill with some descriptors cases
  • Fixed Reflect.set polyfill with some non-extensible receiver cases
  • Fixed the order of Reflect.construct polyfill arguments validation (observable only in the error message)
  • Fixed a lack of error in Reflect.defineProperty polyfill with malformed descriptor
  • Fixed a lack of error in JSON.parse polyfill on unterminated object and array literals
  • Fixed a lack of error in JSON.parse polyfill on numbers with ., but without a fraction part
  • Fixed a lack of error on \u{} in String.dedent polyfill
  • Fixed some cases of hex escaping in the end of string in String.dedent polyfill
  • Fixed %AsyncFromSyncIteratorPrototype% to make it a little stricter
  • Fixed counter in some cases of some AsyncIterator methods
  • Fixed order of async iterators closing
  • Fixed iterator closing in AsyncIterator.prototype.flatMap polyfill
  • Fixed iterator closing in AsyncIterator.prototype.map polyfill on error in underlying iterator .next()
  • Fixed iterator closing in AsyncIterator.prototype.take polyfill with return: null
  • Fixed validation .return() result as object in AsyncIterator.prototype.take polyfill
  • Fixed a lack of error in structuredClone polyfill on attempt to transfer multiple objects, some of which are non-transferable
  • Fixed resizable ArrayBuffer transferring where newByteLength exceeds the original maxByteLength
  • Fixed possible loss of symbol enumerability in Object.defineProperty in Symbol polyfill
  • Fixed return value of Object.defineProperty in Symbol polyfill in Android ~ 2
  • Fixed order of %TypedArray%.from arguments validation
  • Fixed a lack of error on passing an ArrayBuffer and a negative length to the %TypedArray% and DataView constructors polyfills
  • Fixed some cases of @@&#8203;toStringTag on %TypedArray% polyfill
  • Fixed some cases of ToUint8Clamp conversion
  • Fixed NaN handling in Date.prototype.setYear polyfill
  • Fixed false positive on a WeakMap validation in the pure version
  • Fixed some minor { Map, Set }.prototype.forEach moments in the pure version
  • Fixed possible error in Array.isTemplateObject polyfill on frozen array
  • Fixed semantics of Observable.from with multiple subscriptions of the obsolete ECMAScript Observable proposal polyfill
  • Fixed handling of ending zeroes in the fraction part in Number.fromString polyfill
  • Fixed esmodules: intersect option of core-js-compat
  • Fixed a lack of reactnative alias in core-js-compat types
  • Fixed a minor logical bug in the debugging output of core-js-builder
  • Fixed ignorance of the obsolete blacklist option of core-js-builder - it should be removed only in the next major release
  • In case of bugs in String.prototype.{ match, matchAll, replace, split } in modern engines, add s, d and v flag support to polyfills of those methods
  • Just in case, added an extra input string validation to the polyfill of obsolete Number.fromString proposals
  • Simplified iOS detection
  • Many minor stylistic fixes and optimizations
  • Compat data improvements:
webpack/webpack (webpack)

v5.105.4

Compare Source

Patch Changes

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 is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@vercel
Copy link
Copy Markdown

vercel bot commented Mar 20, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
docs-site Ready Ready Preview, Comment Mar 20, 2026 2:36am

@changeset-bot
Copy link
Copy Markdown

changeset-bot bot commented Mar 20, 2026

⚠️ No Changeset found

Latest commit: 0e0f7bd

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@github-actions
Copy link
Copy Markdown
Contributor

Size Change: 0 B

Total Size: 80.5 kB

ℹ️ View Unchanged
Filename Size
examples/test-bundlesize/dist/App.js 3.18 kB
examples/test-bundlesize/dist/polyfill.js 307 B
examples/test-bundlesize/dist/rdcClient.js 10.2 kB
examples/test-bundlesize/dist/rdcEndpoint.js 6.35 kB
examples/test-bundlesize/dist/react.js 59.7 kB
examples/test-bundlesize/dist/webpack-runtime.js 726 B

compressed-size-action

Copy link
Copy Markdown
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark React

Details
Benchmark suite Current: 0e0f7bd Previous: 9db7433 Ratio
data-client: getlist-100 21.7 ms (± 0.52) 22.2 ms (± 0.79) 0.98
data-client: getlist-500 30.8 ms (± 0.2) 35.8 ms (± 6.65) 0.86
data-client: update-single-entity 4.7 ms (± 0.59) 5.6 ms (± 0.26) 0.84
data-client: ref-stability-issue-changed 5 count (± 0) 5 count (± 0) 1
data-client: ref-stability-user-changed 5 count (± 0) 5 count (± 0) 1
data-client: update-shared-user-500-mounted 6.6 ms (± 0.88) 6.6 ms (± 0.00) 1
data-client: sorted-view-mount-500 25.6 ms (± 1.47) 28.6 ms (± 1.86) 0.90
data-client: sorted-view-update-entity 5.5 ms (± 0.39) 6.2 ms (± 0.98) 0.89
data-client: list-detail-switch 85.8 ms (± 2.65) 89 ms (± 0.20) 0.96
data-client: update-shared-user-10000-mounted 25.5 ms (± 2.65) 30.6 ms (± 4.80) 0.83
data-client: invalidate-and-resolve 12.1 ms (± 0.35) 12.1 ms (± 0.40) 1
data-client: unshift-item 7.2 ms (± 0.11) 7.5 ms (± 0.11) 0.96
data-client: delete-item 7.4 ms (± 0.46) 7.7 ms (± 0.11) 0.96
data-client: move-item 5.4 ms (± 0.26) 6.5 ms (± 0.81) 0.83

This comment was automatically generated by workflow using github-action-benchmark.

Copy link
Copy Markdown
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Details
Benchmark suite Current: 0e0f7bd Previous: 9db7433 Ratio
normalizeLong 459 ops/sec (±1.25%) 452 ops/sec (±0.73%) 0.98
normalizeLong Values 422 ops/sec (±0.39%) 411 ops/sec (±0.23%) 0.97
denormalizeLong 285 ops/sec (±3.15%) 286 ops/sec (±2.35%) 1.00
denormalizeLong Values 271 ops/sec (±2.49%) 259 ops/sec (±2.22%) 0.96
denormalizeLong donotcache 1083 ops/sec (±0.51%) 1048 ops/sec (±0.23%) 0.97
denormalizeLong Values donotcache 804 ops/sec (±0.42%) 767 ops/sec (±0.15%) 0.95
denormalizeShort donotcache 500x 1521 ops/sec (±0.46%) 1375 ops/sec (±0.34%) 0.90
denormalizeShort 500x 888 ops/sec (±1.93%) 776 ops/sec (±2.32%) 0.87
denormalizeShort 500x withCache 6477 ops/sec (±0.37%) 4912 ops/sec (±0.63%) 0.76
queryShort 500x withCache 2801 ops/sec (±0.43%) 2688 ops/sec (±0.39%) 0.96
buildQueryKey All 54289 ops/sec (±0.31%) 58335 ops/sec (±0.57%) 1.07
query All withCache 6672 ops/sec (±0.43%) 5900 ops/sec (±0.30%) 0.88
denormalizeLong with mixin Entity 284 ops/sec (±2.18%) 275 ops/sec (±2.56%) 0.97
denormalizeLong withCache 6738 ops/sec (±0.49%) 7092 ops/sec (±0.15%) 1.05
denormalizeLong Values withCache 5292 ops/sec (±0.43%) 4647 ops/sec (±0.10%) 0.88
denormalizeLong All withCache 6401 ops/sec (±0.43%) 5200 ops/sec (±0.09%) 0.81
denormalizeLong Query-sorted withCache 6691 ops/sec (±0.51%) 5962 ops/sec (±0.19%) 0.89
denormalizeLongAndShort withEntityCacheOnly 1749 ops/sec (±0.32%) 1539 ops/sec (±0.23%) 0.88
getResponse 4817 ops/sec (±0.83%) 3836 ops/sec (±0.68%) 0.80
getResponse (null) 10667616 ops/sec (±1.41%) 9788067 ops/sec (±0.70%) 0.92
getResponse (clear cache) 279 ops/sec (±1.94%) 263 ops/sec (±2.44%) 0.94
getSmallResponse 3522 ops/sec (±0.33%) 3251 ops/sec (±0.53%) 0.92
getSmallInferredResponse 2573 ops/sec (±0.28%) 2424 ops/sec (±0.22%) 0.94
getResponse Collection 4716 ops/sec (±0.54%) 3830 ops/sec (±0.15%) 0.81
get Collection 4597 ops/sec (±0.25%) 3588 ops/sec (±0.18%) 0.78
get Query-sorted 5421 ops/sec (±0.29%) 4988 ops/sec (±0.18%) 0.92
setLong 466 ops/sec (±0.30%) 460 ops/sec (±0.14%) 0.99
setLongWithMerge 265 ops/sec (±0.47%) 259 ops/sec (±0.21%) 0.98
setLongWithSimpleMerge 283 ops/sec (±0.40%) 275 ops/sec (±0.14%) 0.97
setSmallResponse 500x 980 ops/sec (±0.39%) 906 ops/sec (±0.68%) 0.92

This comment was automatically generated by workflow using github-action-benchmark.

@ntucker ntucker merged commit eeda4b5 into master Mar 20, 2026
23 checks passed
@ntucker ntucker deleted the renovate/build branch March 20, 2026 02:48
@codecov
Copy link
Copy Markdown

codecov bot commented Mar 20, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 98.06%. Comparing base (6564c84) to head (0e0f7bd).
⚠️ Report is 1 commits behind head on master.

Additional details and impacted files
@@           Coverage Diff           @@
##           master    #3798   +/-   ##
=======================================
  Coverage   98.06%   98.06%           
=======================================
  Files         151      151           
  Lines        2843     2843           
  Branches      556      556           
=======================================
  Hits         2788     2788           
  Misses         11       11           
  Partials       44       44           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant