-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(deps): update all non-major dependencies #12
base: develop
Are you sure you want to change the base?
Conversation
132ca96
to
752c0ce
Compare
d7ec995
to
6b18cc0
Compare
d7bddd7
to
cc60f8f
Compare
cc60f8f
to
8247329
Compare
3abb9e0
to
c410c23
Compare
c410c23
to
e627c35
Compare
ca2851b
to
0de9005
Compare
bbb5fc0
to
14b3411
Compare
99d07f5
to
623ad7c
Compare
623ad7c
to
8418717
Compare
8418717
to
b58762d
Compare
9eb2384
to
39f0c6c
Compare
94b5342
to
220d767
Compare
55401dd
to
a395353
Compare
15da7f3
to
f3eabdb
Compare
f3eabdb
to
8d351ba
Compare
8d351ba
to
58c7353
Compare
58c7353
to
930a55a
Compare
95f2273
to
737bf2f
Compare
737bf2f
to
49dd27d
Compare
650eada
to
1dd4a0e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Outside diff range, codebase verification and nitpick comments (1)
drupal/composer.json (1)
20-20
: Updatecomposer.lock
to matchcomposer.json
fordrupal/core-composer-scaffold
.The
composer.json
specifiesdrupal/core-composer-scaffold
version9.5.11
, but thecomposer.lock
still references version9.4.5
. Ensure that thecomposer.lock
file is updated to reflect the correct version.
drupal/composer.lock
: Update thedrupal/core-composer-scaffold
version to9.5.11
.Analysis chain
Verify compatibility with
drupal/core-composer-scaffold
9.5.11.Ensure that the updated version of
drupal/core-composer-scaffold
does not introduce breaking changes and is compatible with the existing codebase.
Verify the presence and version of
drupal/core-composer-scaffold
incomposer.json
andcomposer.lock
.Check if there are any references to
drupal/core-composer-scaffold
in documentation or scripts to ensure compatibility with the updated version.
Locate
composer.json
andcomposer.lock
files and verify the presence and version ofdrupal/core-composer-scaffold
.Use
fd
to find thecomposer.json
andcomposer.lock
files and then search for thedrupal/core-composer-scaffold
package within them.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify compatibility of `drupal/core-composer-scaffold` 9.5.11 with the existing codebase. # Test: Search for `drupal/core-composer-scaffold` usage. Expect: No breaking changes. rg --type php -A 5 'core-composer-scaffold'Length of output: 43
Script:
#!/bin/bash # Check for `drupal/core-composer-scaffold` in composer.json and composer.lock rg 'drupal/core-composer-scaffold' composer.json composer.lock # Search for references to `drupal/core-composer-scaffold` in documentation and scripts rg 'core-composer-scaffold' --type md --type shLength of output: 218
Script:
#!/bin/bash # Locate composer.json and composer.lock files fd composer.json fd composer.lock # Once located, search for `drupal/core-composer-scaffold` in these files fd composer.json --exec rg 'drupal/core-composer-scaffold' {} fd composer.lock --exec rg 'drupal/core-composer-scaffold' {}Length of output: 718
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
nuxt/package-lock.json
is excluded by!**/package-lock.json
Files selected for processing (2)
- drupal/composer.json (1 hunks)
- nuxt/package.json (1 hunks)
Additional comments not posted (12)
nuxt/package.json (5)
13-13
: Verify compatibility withdruxt-site
^0.14.3.Ensure that the updated version of
druxt-site
does not introduce breaking changes and is compatible with the existing codebase.
17-17
: Verify compatibility with@nuxt/image
^0.7.2.Ensure that the updated version of
@nuxt/image
does not introduce breaking changes and is compatible with the existing codebase.Verification successful
Verify compatibility with
@nuxt/image
^0.7.2.The changelog for
@nuxt/image
^0.7.2 does not indicate any breaking changes. The update includes minor enhancements and bug fixes. The usage innuxt/nuxt.config.js
should remain compatible.
nuxt/nuxt.config.js
Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify compatibility of `@nuxt/image` ^0.7.2 with the existing codebase. # Test: Search for `@nuxt/image` usage. Expect: No breaking changes. rg --type js --type ts -A 5 '@nuxt/image'Length of output: 296
Script:
#!/bin/bash # Fetch the changelog or release notes for `@nuxt/image` ^0.7.2 to verify compatibility. # Fetch the changelog URL from the package repository PACKAGE_NAME="@nuxt/image" PACKAGE_VERSION="0.7.2" PACKAGE_URL=$(npm view $PACKAGE_NAME@$PACKAGE_VERSION repository.url) # Extract the changelog content curl -s "${PACKAGE_URL%.*}/blob/master/CHANGELOG.md"Length of output: 217
Script:
#!/bin/bash # Directly fetch the changelog for `@nuxt/image` from the GitHub repository to verify compatibility. # Define the GitHub repository URL for `@nuxt/image` REPO_URL="https://raw.githubusercontent.com/nuxt/image/main/CHANGELOG.md" # Fetch the changelog content curl -s $REPO_URLLength of output: 57694
14-14
: Verify compatibility withnuxt
2.18.1.Ensure that the updated version of
nuxt
does not introduce breaking changes and is compatible with the existing codebase.
20-20
: Verify compatibility withpostcss
8.4.41.Ensure that the updated version of
postcss
does not introduce breaking changes and is compatible with the existing codebase.
12-12
: Verify compatibility withcore-js
3.38.0.Ensure that the updated version of
core-js
does not introduce breaking changes and is compatible with the existing codebase.drupal/composer.json (7)
21-21
: Verify compatibility withdrupal/core-project-message
9.5.11.Ensure that the updated version of
drupal/core-project-message
does not introduce breaking changes and is compatible with the existing codebase.Verification successful
The update to
drupal/core-project-message
9.5.11 does not introduce breaking changes.The references to
core-project-message
are confined tocomposer.json
andcomposer.lock
files, indicating that it is used for project setup messages rather than runtime behavior. The update is safe and compatible with the existing codebase.
drupal/composer.json
drupal/composer.lock
Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify compatibility of `drupal/core-project-message` 9.5.11 with the existing codebase. # Test: Search for `drupal/core-project-message` usage. Expect: No breaking changes. rg --type php -A 5 'core-project-message'Length of output: 41
Script:
#!/bin/bash # Description: Verify compatibility of `drupal/core-project-message` 9.5.11 with the existing codebase by searching for its references in various file types. # Test: Search for `core-project-message` usage in PHP, YAML, and JSON files. Expect: No breaking changes. rg 'core-project-message' -tphp -tyaml -tjson -A 5Length of output: 2803
22-22
: Verify compatibility withdrupal/core-recommended
9.5.11.Ensure that the updated version of
drupal/core-recommended
does not introduce breaking changes and is compatible with the existing codebase.
24-24
: Verify compatibility withdrupal/tome
^1.12.0.Ensure that the updated version of
drupal/tome
does not introduce breaking changes and is compatible with the existing codebase.
23-23
: Verify compatibility withdrupal/druxt
1.2.0.Ensure that the updated version of
drupal/druxt
does not introduce breaking changes and is compatible with the existing codebase.
18-18
: Verify compatibility withcomposer/installers
2.3.0.Ensure that the updated version of
composer/installers
does not introduce breaking changes and is compatible with the existing codebase.
28-28
: Verify compatibility withdrupal/core-dev
9.5.11.Ensure that the updated version of
drupal/core-dev
does not introduce breaking changes and is compatible with the existing codebase.
25-25
: Verify compatibility withdrush/drush
^11.6.0.Ensure that the updated version of
drush/drush
does not introduce breaking changes and is compatible with the existing codebase.Verification successful
Verify compatibility with
drush/drush
^11.6.0.The update to
drush/drush
^11.6.0 does not introduce breaking changes for the standard Drush commands used in thetome_drush
namespace. The commandssite-install
,pm:enable
,tome:import
,cache:rebuild
, andtome:export
should function correctly with the new version.
drupal/drush/Commands/contrib/tome_drush/InstallCommands.php
: Verified usage of standard Drush commands.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify compatibility of `drush/drush` ^11.6.0 with the existing codebase. # Test: Search for `drush/drush` usage. Expect: No breaking changes. rg --type php -A 5 'drush/drush'Length of output: 32
Script:
#!/bin/bash # Description: Verify compatibility of `drush/drush` ^11.6.0 with the existing codebase. # Test 1: Search for `drush/drush` usage in PHP files. rg --type php 'drush/drush' # Test 2: Search for `drush/drush` usage in YAML files (common for Drupal configurations). rg --type yaml 'drush/drush' # Test 3: Search for `drush/drush` usage in JSON files. rg --type json 'drush/drush' # Test 4: Search for `drush/drush` usage in Markdown files (documentation). rg --type md 'drush/drush'Length of output: 469
Script:
#!/bin/bash # Description: Verify compatibility of `drush/drush` ^11.6.0 with the existing codebase. # Test 1: Search for `tome_drush` commands in PHP files. rg --type php 'tome_drush' # Test 2: Search for `tome_drush` configurations in YAML files. rg --type yaml 'tome_drush' # Test 3: Search for `tome_drush` references in JSON files. rg --type json 'tome_drush' # Test 4: Search for `tome_drush` references in Markdown files (documentation). rg --type md 'tome_drush'Length of output: 1000
Script:
#!/bin/bash # Description: Verify compatibility of `drush/drush` ^11.6.0 with the existing codebase. # Test 1: Search for command definitions in `InstallCommands.php`. rg --type php 'function ' drupal/drush/Commands/contrib/tome_drush/InstallCommands.php # Test 2: Search for usage of `tome_drush` commands in PHP files. rg --type php 'tome_drush' # Test 3: Search for `drush` command definitions in the `tome_drush` namespace. rg --type php 'drush' drupal/drush/Commands/contrib/tome_drush/Length of output: 1853
1dd4a0e
to
acb137a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
nuxt/package-lock.json
is excluded by!**/package-lock.json
Files selected for processing (2)
- drupal/composer.json (1 hunks)
- nuxt/package.json (1 hunks)
Additional comments not posted (11)
nuxt/package.json (5)
17-17
: Update to@nuxt/image
version ^0.7.2.The
@nuxt/image
package has been updated from ^0.7.1 to ^0.7.2. This minor update might include optimizations or small features.
14-14
: Update tonuxt
version 2.18.1.The
nuxt
framework has been updated from 2.15.8 to 2.18.1. Check for any deprecated features or enhancements that might affect your application.
20-20
: Update topostcss
version 8.4.41.The
postcss
package has been updated from 8.4.16 to 8.4.41. Ensure that any plugins or configurations used with PostCSS are compatible with this version.
12-12
: Update tocore-js
version 3.38.1.This update moves
core-js
from version 3.25.1 to 3.38.1. Ensure compatibility with any polyfills or features used in your project.
13-13
: Update todruxt-site
version ^0.14.3.The
druxt-site
package has been updated from ^0.13.0 to ^0.14.3. Verify that any new features or changes are compatible with your current setup.drupal/composer.json (6)
18-18
: Update tocomposer/installers
version 2.3.0.The
composer/installers
package has been updated from 2.2.0 to 2.3.0. Ensure that any custom installation paths or configurations are still valid.
20-22
: Update to Drupal core components.The following Drupal core components have been updated:
drupal/core-composer-scaffold
from 9.4.5 to 9.5.11drupal/core-project-message
from 9.4.5 to 9.5.11drupal/core-recommended
from 9.4.5 to 9.5.11These updates might include important security fixes and improvements. Ensure compatibility with your existing Drupal setup.
28-28
: Update todrupal/core-dev
version 9.5.11.The
drupal/core-dev
package has been updated from 9.4.5 to 9.5.11. This update might include development tools or testing improvements.
25-25
: Update todrush/drush
version ^11.6.0.The
drush/drush
package has been updated from ^11.1 to ^11.6.0. Verify that any Drush commands or scripts are compatible with this version.
23-23
: Update todrupal/druxt
version 1.2.0.The
drupal/druxt
package has been updated from 1.1.1 to 1.2.0. Review any changes in the API or behavior that might affect your project.
24-24
: Update todrupal/tome
version ^1.12.0.The
drupal/tome
package has been updated from ^1.7 to ^1.12.0. Ensure compatibility with your current setup and any new features introduced.
acb137a
to
591aa05
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
nuxt/package-lock.json
is excluded by!**/package-lock.json
Files selected for processing (2)
- drupal/composer.json (1 hunks)
- nuxt/package.json (1 hunks)
Additional comments not posted (13)
nuxt/package.json (5)
12-12
: LGTM! But verify the application functionality.The
core-js
dependency has been updated to a newer minor version, which may introduce new features or polyfills. The change is unlikely to cause any breaking changes, but it's important to verify that the application still works as expected.
13-13
: LGTM! But verify the application functionality.The
druxt-site
dependency has been updated to a newer minor version, which may include enhancements or bug fixes relevant to the Druxt framework. The change is unlikely to cause any breaking changes, but it's important to verify that the application still works as expected.
14-14
: LGTM! But verify the application functionality.The
nuxt
dependency has been updated to a newer minor version, which likely brings improvements and new features to the Nuxt.js framework. The change is unlikely to cause any breaking changes, but it's important to verify that the application still works as expected.
17-17
: LGTM! But verify the application functionality.The
@nuxt/image
dependency has been updated to a newer patch version, which may include minor updates or fixes. The change is unlikely to cause any issues, but it's still good to verify that the application still works as expected.
20-20
: LGTM! But verify the application functionality.The
postcss
dependency has been updated to a newer patch version, which could affect the CSS processing capabilities of the project. The change is unlikely to cause any issues, but it's still good to verify that the application still works as expected.drupal/composer.json (8)
18-18
: LGTM! But verify the application functionality.The
composer/installers
dependency has been updated to a newer minor version, which may include new features or improvements. The change is unlikely to cause any issues, but it's still good to verify that the application still works as expected.
20-20
: LGTM! But verify the application functionality.The
drupal/core-composer-scaffold
dependency has been updated to a newer minor version, which may include new features, improvements, and security patches. The change is unlikely to cause any breaking changes, but it's important to verify that the application still works as expected.
21-21
: LGTM! But verify the application functionality.The
drupal/core-project-message
dependency has been updated to a newer minor version, which may include new features, improvements, and security patches. The change is unlikely to cause any breaking changes, but it's important to verify that the application still works as expected.
22-22
: LGTM! But verify the application functionality.The
drupal/core-recommended
dependency has been updated to a newer minor version, which may include new features, improvements, and security patches. The change is unlikely to cause any breaking changes, but it's important to verify that the application still works as expected.
23-23
: LGTM! But verify the application functionality.The
drupal/druxt
dependency has been updated to a newer minor version, which may include new features, improvements, and bug fixes. The change is unlikely to cause any breaking changes, but it's important to verify that the application still works as expected.
24-24
: LGTM! But verify the application functionality.The
drupal/tome
dependency has been updated to a newer minor version, which may include new features, improvements, and bug fixes. The change is unlikely to cause any breaking changes, but it's important to verify that the application still works as expected.
25-25
: LGTM! But verify the application functionality.The
drush/drush
dependency has been updated to a newer minor version, which may include new features, improvements, and bug fixes. The change is unlikely to cause any breaking changes, but it's important to verify that the application still works as expected.
28-28
: LGTM! But verify the application functionality.The
drupal/core-dev
dependency has been updated to a newer minor version, which may include new features, improvements, and security patches. The change is unlikely to cause any breaking changes, but it's important to verify that the application still works as expected.
591aa05
to
afa7bd6
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
nuxt/package-lock.json
is excluded by!**/package-lock.json
Files selected for processing (2)
- drupal/composer.json (1 hunks)
- nuxt/package.json (1 hunks)
Files skipped from review as they are similar to previous changes (2)
- drupal/composer.json
- nuxt/package.json
1b41bf1
to
8bd2eb6
Compare
8bd2eb6
to
2f724ae
Compare
2f724ae
to
e2b2c9e
Compare
e2b2c9e
to
2672be5
Compare
2672be5
to
6c6089f
Compare
This PR contains the following updates:
^0.7.1
->^0.7.2
2.2.0
->2.3.0
3.25.1
->3.39.0
9.4.5
->9.5.11
9.4.5
->9.5.11
9.4.5
->9.5.11
9.4.5
->9.5.11
1.1.1
->1.2.0
^1.7
->^1.12.0
^11.1
->^11.6.0
^0.13.0
->^0.14.3
2.15.8
->2.18.1
8.4.16
->8.4.49
Release Notes
nuxt/image (@nuxt/image)
v0.7.2
Compare Source
composer/installers (composer/installers)
v2.3.0
Compare Source
What's Changed
Full Changelog: composer/installers@v2.2.0...v2.3.0
zloirock/core-js (core-js)
v3.39.0
Compare Source
Iterator
helpers proposal:Iterator
Iterator.from
Iterator.prototype.drop
Iterator.prototype.every
Iterator.prototype.filter
Iterator.prototype.find
Iterator.prototype.flatMap
Iterator.prototype.forEach
Iterator.prototype.map
Iterator.prototype.reduce
Iterator.prototype.some
Iterator.prototype.take
Iterator.prototype.toArray
Iterator.prototype[@​@​toStringTag]
es.
namespace modules,/es/
and/stable/
namespaces entriesPromise.try
:Promise.try
es.
namespace module,/es/
and/stable/
namespaces entries/actual|full/promise/try
entries for the callback arguments supportMath.sumPrecise
proposal:Math.sumPrecise
/actual/
namespace entries, unconditional forced replacement changed to feature detectionIterator
sequencing stage 2.7 proposal:Iterator.concat
Map
upsert stage 2 proposal:Map.prototype.getOrInsert
Map.prototype.getOrInsertComputed
WeakMap.prototype.getOrInsert
WeakMap.prototype.getOrInsertComputed
@@​species
pattern removed from%TypedArray%
andArrayBuffer
methods, tc39/ecma262/3450:%TypedArray%.prototype.filter
%TypedArray%.prototype.filterReject
%TypedArray%.prototype.map
%TypedArray%.prototype.slice
%TypedArray%.prototype.subarray
ArrayBuffer.prototype.slice
Uint8Array
to / from base64 and hex proposal methods marked as shipped from FF133self
descriptor is fixed in Deno 1.46.0Iterator
helpers proposal methods marked as shipped from Bun 1.1.31v3.38.1
Compare Source
URLSearchParams
percent decoding, #1357, #1361, thanks @slowcheetahIterator
helpers proposal methods marked as shipped from FF131Math.f16round
andDataView.prototype.{ getFloat16, setFloat16 }
marked as shipped from Bun 1.1.23RegExp.escape
marked as shipped from Bun 1.1.22Promise.try
marked as shipped from Bun 1.1.22Uint8Array
to / from base64 and hex proposal methods marked as shipped from Bun 1.1.22v3.38.0
Compare Source
RegExp.escape
proposal:RegExp.escape
/actual/
namespace entries, unconditional forced replacement changed to feature detectionPromise.try
proposal:Promise.try
/actual/
namespace entries, unconditional forced replacement changed to feature detectionUint8Array
to / from base64 and hex stage 3 proposal:Uint8Array.fromBase64
Uint8Array.fromHex
Uint8Array.prototype.setFromBase64
Uint8Array.prototype.setFromHex
Uint8Array.prototype.toBase64
Uint8Array.prototype.toHex
Uint8Array.prototype.{ setFromBase64, setFromHex }
methodsUint8Array.fromBase64
andUint8Array.prototype.setFromBase64
lastChunkHandling
option, proposal-arraybuffer-base64/33Uint8Array.prototype.toBase64
omitPadding
option, proposal-arraybuffer-base64/60TypeError
on arrays backed by detached buffersRegExp
named capture groups polyfill in combination with non-capturing groups, #1352, thanks @Ulopprocess.getBuiltinModule
for getting built-in NodeJS modules where it's availablehttps
instead ofhttp
inURL
constructor feature detection to avoid extra notifications from some overly vigilant security scanners, #1345browserslist
incore-js-compat
dependencies that fixes an upstream issue with incorrect interpretation of somebrowserslist
queries, #1344, browserslist/829, browserslist/836Object.groupBy
andMap.groupBy
to work for non-objectsRangeError
ifSet
methods are called on an object with negative size propertySet.prototype.symmetricDifference
to callthis.has
in each iterationArray.fromAsync
to not call theArray
constructor twiceURL.parse
Math.f16round
andDataView.prototype.{ getFloat16, setFloat16 }
marked as shipped from FF129Symbol.asyncDispose
added and marked as supported from V8 ~ Chromium 127Promise.try
added and marked as supported from V8 ~ Chromium 128self
descriptor is broken in Deno 1.45.3 (again)v3.37.1
Compare Source
URL.parse
feature detection for some specific casesSet
methods proposal added and marked as supported from FF 127Symbol.dispose
added and marked as supported from V8 ~ Chromium 125Math.f16round
andDataView.prototype.{ getFloat16, setFloat16 }
added and marked as supported from Deno 1.43URL.parse
added and marked as supported from Chromium 126URL.parse
added and marked as supported from NodeJS 22.0URL.parse
added and marked as supported from Deno 1.43v3.37.0
Compare Source
Set
methods proposal:Set.prototype.intersection
Set.prototype.union
Set.prototype.difference
Set.prototype.symmetricDifference
Set.prototype.isSubsetOf
Set.prototype.isSupersetOf
Set.prototype.isDisjointFrom
es.
namespace modules,/es/
and/stable/
namespaces entriesMath.sumPrecise
stage 2.7 proposal:Math.sumPrecise
Promise.try
proposal:Promise.try
RegExp.escape
stage 2 proposal:Symbol.customMatcher
Symbol.customMatcher
Symbol.customMatcher
well-known symbol from the pattern matching proposal is also used in the exactors proposal, added an entry also for this proposalURL.parse
, url/825{ Object, Map }.groupBy
bug that does not support iterable primitivesArray.fromAsync
URL.parse
added and marked as supported from FF 126URL.parse
added and marked as supported from Bun 1.1.4URL.canParse
fixed and marked as supported from Bun 1.1.0Set
methods fixed in JavaScriptCore and marked as supported from Bun 1.1.1v3.36.1
Compare Source
Object.setPrototypeOf
, #1329, thanks @minseok-choeArray.from
, #1331, thanks @minseok-choequeueMicrotask
arityURL.canParse
aritySuppressedError
extra arguments support and arityvalue
argument ofURLSearchParams.prototype.{ has, delete }
marked as supported from Bun 1.0.31Array.prototype.{ toSpliced, toReversed, with }
andatob
marked as supportedv3.36.0
Compare Source
ArrayBuffer.prototype.transfer
and friends proposal:ArrayBuffer.prototype.detached
ArrayBuffer.prototype.transfer
ArrayBuffer.prototype.transferToFixedLength
es.
namespace modules,/es/
and/stable/
namespaces entriesUint8Array
to / from base64 and hex proposal:Uint8Array.fromBase64
Uint8Array.fromHex
Uint8Array.prototype.toBase64
Uint8Array.prototype.toHex
/actual/
namespace entriesPromise.try
proposal has been resurrected and moved to stage 2, Febrary 2024 TC39 meetingcore-js/stage/2.7
- still emptySet.prototype.intersection
feature detectionArray.prototype.{ indexOf, lastIndexOf, includes }
, #1325, thanks @minseok-choeArray.prototype.{ reduce, reduceRight }
, #1327, thanks @minseok-choeArray.from
and some other methods with proxy targets, #1322, thanks @minseok-choeArrayBuffer.prototype.transfer
and friends proposal in some specific cases in IE10-Date.prototype.toJSON
toJSON.stringify
entries dependencies{ Map, Object }.groupBy
,Promise.withResolvers
,ArrayBuffer.prototype.transfer
and friends marked as supported from Safari 17.4Set
methods fixed and marked as supported from V8 ~ Chrome 123Symbol.metadata
marked as supported from Deno 1.40.4v3.35.1
Compare Source
ToLength
operation with bigints, #1318String#split
polyfillIterator
helpers proposal methods marked as supported from V8 ~ Chrome 122Set
methods, but they have a bug similar to Safariself
marked as fixed from Bun 1.0.22SuppressedError
andSymbol.{ dispose , asyncDispose }
marked as supported from Bun 1.0.23v3.35.0
Compare Source
{ Map, Set, WeakMap, WeakSet }.{ from, of }
became non-generic, following this and some other notes. Now they can be invoked withoutthis
, but no longer return subclass instancesSymbol
polyfillqueueMicrotask
polyfillArrayBuffer
Array.fromAsync
marked as supported from V8 ~ Chrome 121Array.prototype.push
bug is fixed in V8 ~ Chrome 122 (Hallelujah!)ArrayBuffer.prototype.transfer
and friends proposal features marked as supported from FF 122 and Bun 1.0.19Object.groupBy
andMap.groupBy
marked as supported from Bun 1.0.19Iterator
helpers proposal methods are still not disabled in Deno, the web compatibility issue why it was disabled in Chromium makes no sense for Deno and fixed in the spec, they marked as supported from Deno 1.37v3.34.0
Compare Source
Array
grouping proposal:Object.groupBy
Map.groupBy
es.
namespace modules,/es/
and/stable/
namespaces entriesPromise.withResolvers
proposal:Promise.withResolvers
es.
namespace module,/es/
and/stable/
namespaces entriesIterator
helpers proposal, proposal-iterator-helpers/287 and some following changes, November 2023 TC39 meetingUint8Array
to / from base64 and hex stage 2 proposal:Uint8Array.fromBase64
Uint8Array.fromHex
Uint8Array.prototype.toBase64
Uint8Array.prototype.toHex
Number.fromString
validation before clarification of proposal-number-fromstring/24@@​toStringTag
property descriptors on DOM collections, #1312Array
iteration methods, #1313atob
/btoa
improvementsPromise.withResolvers
marked as shipped from FF121v3.33.3
Compare Source
[[DedentMap]]
fromString.dedent
proposal betweencore-js
instances before stabilization of the proposalArray.fromAsync
marked as supported from Deno 1.38Symbol.{ dispose, asyncDispose }
marked as supported from Deno 1.38v3.33.2
Compare Source
structuredClone
polyfill, avoided second tree pass in cases of transferringSuppressedError
tostructuredClone
polyfillArrayBuffer
andDataView
dependencies ofstructuredClone
lack of which could cause errors in some entries in IE10-Number.fromString
URL.canParse
marked as supported from Chromium 120v3.33.1
Compare Source
Symbol
polyfill on global object, #1289type: commonjs
inpackage.json
of all packages to avoid potential breakage in future Node versions, see this issueString.prototype.{ isWellFormed, toWellFormed }
marked as supported from FF119v3.33.0
Compare Source
RegExp
escaping stage 2 proposal, September 2023 TC39 meeting:RegExp.escape
method with the new set of symbols for escapingcore-js
, but it was removed after rejecting the old version of this proposalArrayBuffer.prototype.{ transfer, transferToFixedLength }
and support transferring ofArrayBuffer
s viastructuredClone
to engines withMessageChannel
Math.f16round
polyfillMath.f16round
andDataView.prototype.{ getFloat16, setFloat16 }
Observable
proposal because of incompatibility with the new WHATWGObservable
proposalSymbol
polyfill, #1289Iterator
helpers because of some Web compatibility issuesPromise.withResolvers
marked as supported from V8 ~ Chrome 119Array
grouping proposal features marked as supported from FF119value
argument ofURLSearchParams.prototype.{ has, delete }
marked as properly supported from V8 ~ Chrome 118URL.canParse
andURLSearchParams.prototype.size
marked as supported from Bun 1.0.2v3.32.2
Compare Source
structuredClone
feature detection[email protected]
bug, #1288eval
bug, #1287v3.32.1
Compare Source
process
polyfill tocore-js
via some bundlers oresm.sh
, #1277Promise.withResolvers
marked as supported from Bun 0.7.1v3.32.0
Compare Source
Array
grouping proposal, July 2023 TC39 meeting updates:/actual/
namespaces entries, unconditional forced replacement changed to feature detectionPromise.withResolvers
proposal, July 2023 TC39 meeting updates:/actual/
namespaces entries, unconditional forced replacement changed to feature detectionSet
methods stage 3 proposal, July 2023 TC39 meeting updates:Set
sizes, proposal-set-methods/88IsCallable
check inGetKeysIterator
, proposal-set-methods/101String
wrapper objects, July 2023 TC39 meeting update, proposal-iterator-helpers/281Iterator
is not constructible from the active function object (works as an abstract class)/actual/
namespace entries, unconditional forced replacement changed to feature detection[@@​dispose]()
method when hint isasync-dispose
, proposal-explicit-resource-management/180Float16Array
stage 3 proposal:Float16Array
right now, however, make sense to add some methods from this proposal.Math.f16round
DataView.prototype.getFloat16
DataView.prototype.setFloat16
DataView
get / setUint8Clamped
methods stage 1 proposal:DataView.prototype.getUint8Clamped
DataView.prototype.setUint8Clamped
value
argument ofURLSearchParams.prototype.{ has, delete }
Set
methods implementation by the actual specSymbol.{ dispose, asyncDispose }
descriptors from NodeJS 20.4 / transpilers helpers / userland codeAsyncIteratorPrototype
core-js/configurator
option, #1268Iterator
helpers proposal features marked as supported from V8 ~ Chrome 117Array
grouping proposal features marked as supported from V8 ~ Chrome 117Symbol.{ dispose, asyncDispose }
as supported from NodeJS 20.5.0 (as mentioned above, NodeJS 20.4.0 add it, but with incorrect descriptors)v3.31.1
Compare Source
structuredClone
bug with cloning views of transferred buffers, #1265DataView
methodsFloat16Array
instructuredClone
Set
methods proposal marked as supported from Safari 17.0URL
features:URL.canParse
,URLSearchParams.prototype.size
andvalue
argument ofURLSearchParams.prototype.{ has, delete }
marked as supported from Safari 17.0value
argument ofURLSearchParams.prototype.{ has, delete }
marked as supported from Deno 1.35AggregateError
and well-formedJSON.stringify
marked as supported React Native 0.72 Hermesv3.31.0
Compare Source
String.prototype.isWellFormed
methodString.prototype.toWellFormed
methodes.
namespace modules,/es/
and/stable/
namespaces entriesArray
grouping proposal, May 2023 TC39 meeting updates:Object.groupBy
methodMap.groupBy
method (with the actual semantic - with a minor difference it was present in the collections methods stage 1 proposal)Function.prototype[Symbol.metadata]
(=== null
)/actual/
entriesSymbol.iterator
fallback from callable check toundefined
/null
check, May 2023 TC39 meeting, proposal-iterator-helpers/272IsCallable
check onNextMethod
, deferring errors toCall
site, May 2023 TC39 meeting, proposal-iterator-helpers/274Promise.withResolvers
stage 2 proposal:Promise.withResolvers
methodSymbol
predicates stage 2 proposal:Symbol
, May 2023 TC39 meeting:Symbol.isRegistered
->Symbol.isRegisteredSymbol
methodSymbol.isWellKnown
->Symbol.isWellKnownSymbol
methodvalue
argument ofURLSearchParams.prototype.{ has, delete }
, url/735ArrayBuffer.prototype.{ transfer, transferToFixedLength }
polyfillsAsyncDisposableStack.prototype.adopt
callback, #1258URLSearchParams#size
in ES3 engines (IE8-)Object.{ entries, values }
for some IE versions bug with invisible integer keys onnull
-prototype objectscore-js-compat
, #1235, thanks @susnuxSet.prototype.difference
that was missed in Bun because of a bug added inConfiguration
📅 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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.