-
Notifications
You must be signed in to change notification settings - Fork 5
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 #478
base: develop
Are you sure you want to change the base?
Conversation
⚠ Artifact update problemRenovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
The artifact failure details are included below: File name: drupal/composer.lock
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the WalkthroughThe recent changes primarily involve upgrading dependencies across various components of the project. Significant updates include transitioning the PHP base images to version 8.3, enhancements to GitHub Actions, and numerous version increments for dependencies in both Drupal and Nuxt.js projects. These upgrades aim to improve performance, security, and stability while maintaining existing functionalities. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant Application
participant Database
User->>Application: Request action
Application->>Database: Fetch data
Database-->>Application: Return data
Application-->>User: Respond with results
Poem
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
97a5238
to
bade793
Compare
bade793
to
79d6e46
Compare
873374d
to
1b14185
Compare
03f493c
to
113663b
Compare
113663b
to
246539b
Compare
246539b
to
ee6e8bc
Compare
af30694
to
d574bc8
Compare
f8b2a34
to
eae7b16
Compare
c0c1bcb
to
f0c60f7
Compare
f0c60f7
to
ff3e52f
Compare
c68ff1f
to
0d1272a
Compare
bc9aa1b
to
c4703d1
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)
nuxt/package.json (1)
40-40
: Update Bootstrap CDN Link innuxt.config.js
The
nuxt.config.js
file still references Bootstrap 4.6.0 via a CDN link. To ensure consistency and compatibility, update this link to Bootstrap 5.3.3. Additionally, thoroughly test the application to identify and address any compatibility issues arising from the version update.
- File:
nuxt/nuxt.config.js
- Line:
href: 'https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css'
Analysis chain
Update
bootstrap
to 5.3.3The
bootstrap
library has been updated from5.3.1
to5.3.3
. This may include bug fixes and new features. Ensure that the application is tested for any breaking changes or new features introduced in this version.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify if the application is compatible with Bootstrap 5.3.3 # Test: Check for Bootstrap version compatibility. Expect: No compatibility issues. grep -r "bootstrap" . | grep "5.3.3"Length of output: 246
Script:
#!/bin/bash # Description: Search for Bootstrap-related classes or functions in the codebase to identify potential issues. # Search for Bootstrap classes in Vue components rg --glob '*.vue' 'class=".*(btn|alert|card|modal|navbar|dropdown|form|input|tooltip|popover|carousel).*"' # Search for Bootstrap functions in JavaScript files rg --glob '*.js' '(bootstrap|modal|tooltip|popover|carousel|dropdown|collapse|tab|alert|button|scrollspy|toast)'Length of output: 622
Script:
#!/bin/bash # Description: Verify if the Bootstrap CDN link in nuxt.config.js has been updated to version 5.3.3 and check for other references to Bootstrap 4.x. # Search for Bootstrap CDN links in nuxt.config.js rg 'bootstrap@4' nuxt/nuxt.config.js # Search for other references to Bootstrap 4.x in the codebase rg 'bootstrap@4'Length of output: 251
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
nuxt/yarn.lock
is excluded by!**/yarn.lock
,!**/*.lock
Files selected for processing (5)
- .docker/Dockerfile.cli (1 hunks)
- .docker/Dockerfile.php (1 hunks)
- .github/workflows/test-preview.yml (1 hunks)
- drupal/composer.json (1 hunks)
- nuxt/package.json (1 hunks)
Files skipped from review due to trivial changes (2)
- .docker/Dockerfile.cli
- .github/workflows/test-preview.yml
Additional comments not posted (22)
.docker/Dockerfile.php (1)
4-4
: Upgrade PHP base image to 8.3The base image has been updated from
amazeeio/php:8.2-fpm
toamazeeio/php:8.3-fpm
. Ensure that the application is compatible with PHP 8.3 and that any potential breaking changes are addressed.nuxt/package.json (11)
54-55
: Update@commitlint/cli
and@commitlint/config-conventional
to 17.8.1The
@commitlint/cli
and@commitlint/config-conventional
packages have been updated to17.8.1
. This may include critical fixes and updates. Ensure that the application is tested for any breaking changes or new features introduced in this version.
76-76
: Updatepostcss-html
to 1.7.0The
postcss-html
package has been updated from1.5.0
to1.7.0
. This may include enhancements or fixes. Ensure that the application is tested for any breaking changes or new features introduced in this version.
42-42
: Updatecore-js
to 3.38.0The
core-js
library has been updated from3.32.1
to3.38.0
. This likely enhances compatibility and performance. Ensure that the application is tested for any breaking changes or new features introduced in this version.
53-53
: Update@babel/eslint-parser
to 7.25.1The
@babel/eslint-parser
package has been updated from7.22.15
to7.25.1
. This may include critical fixes and updates. Ensure that the application is tested for any breaking changes or new features introduced in this version.
46-46
: Updatejsonapi-serializer
to 3.6.9The
jsonapi-serializer
package has been updated from3.6.7
to3.6.9
. This may introduce enhancements or address issues. Ensure that the application is tested for any breaking changes or new features introduced in this version.Verification successful
No compatibility issues found with
jsonapi-serializer
version 3.6.9The package
jsonapi-serializer
has been updated to version 3.6.9, and no instances of its usage were found in the codebase. Therefore, the update should not introduce any breaking changes or issues.
jsonapi-serializer
version 3.6.9 confirmed inpackage.json
andyarn.lock
- No direct imports, requires, or usage patterns found in the codebase
Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify if the application is compatible with jsonapi-serializer 3.6.9 # Test: Check for jsonapi-serializer version compatibility. Expect: No compatibility issues. grep -r "jsonapi-serializer" . | grep "3.6.9"Length of output: 291
Script:
#!/bin/bash # Find all occurrences of `jsonapi-serializer` usage in the codebase to check for compatibility issues. rg 'jsonapi-serializer' -A 5Length of output: 756
Script:
#!/bin/bash # Search for import or require statements for jsonapi-serializer in the codebase to identify its usage. rg 'import .* from .jsonapi-serializer.' -A 5 rg 'require(.jsonapi-serializer.)' -A 5Length of output: 89
Script:
#!/bin/bash # Search for common usage patterns or function calls related to jsonapi-serializer in the codebase. rg 'Serializer' -A 5 rg 'serialize' -A 5 rg 'deserialize' -A 5Length of output: 11145
83-83
: Updatewebpack-dev-server
to 4.15.2The
webpack-dev-server
package has been updated from4.15.1
to4.15.2
. This may address bugs or improve performance. Ensure that the application is tested for any breaking changes or new features introduced in this version.Verification successful
Update
webpack-dev-server
to 4.15.2The
webpack-dev-server
package has been updated from4.15.1
to4.15.2
. Based on the verification, there are no compatibility issues or deprecated usages found in the codebase. Ensure that the application is tested for any breaking changes or new features introduced in this version.
nuxt/package.json
: Updated to"webpack-dev-server": "4.15.2"
nuxt/yarn.lock
: Resolved towebpack-dev-server@4.15.2
Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify if the application is compatible with webpack-dev-server 4.15.2 # Test: Check for webpack-dev-server version compatibility. Expect: No compatibility issues. grep -r "webpack-dev-server" . | grep "4.15.2"Length of output: 294
Script:
#!/bin/bash # Search for usage of webpack-dev-server in the codebase to identify potential compatibility issues rg "webpack-dev-server" # Check for any deprecated or breaking changes related to webpack-dev-server in the codebase rg "deprecated" | grep -i "webpack-dev-server"Length of output: 917
Script:
#!/bin/bash # Display the usage of webpack-dev-server in nuxt/cypress/plugins/index.js for compatibility verification rg "webpack-dev-server" -A 10 nuxt/cypress/plugins/index.jsLength of output: 440
67-67
: Updateeslint
to 8.57.0The
eslint
package has been updated from8.48.0
to8.57.0
. This may include critical fixes and updates. Ensure that the application is tested for any breaking changes or new features introduced in this version.
48-48
: Updatevue-json-pretty
to 1.9.5The
vue-json-pretty
package has been updated from1.9.4
to1.9.5
. This likely provides minor improvements. Ensure that the application is tested for any breaking changes or new features introduced in this version.
71-71
: Updateeslint-plugin-vue
to 9.27.0The
eslint-plugin-vue
package has been updated from9.17.0
to9.27.0
. This may enhance linting capabilities for Vue components. Ensure that the application is tested for any breaking changes or new features introduced in this version.
72-72
: Updatehtml-webpack-plugin
to 5.6.0The
html-webpack-plugin
package has been updated from5.5.3
to5.6.0
. This may improve functionality or compatibility. Ensure that the application is tested for any breaking changes or new features introduced in this version.
45-45
: Updatedruxt-site
to 0.14.3The
druxt-site
package has been updated from0.14.2
to0.14.3
. This minor version increment may include improvements or fixes. Ensure that the application is tested for any breaking changes or new features introduced in this version.drupal/composer.json (10)
31-31
: Updatedrupal/simple_oauth
to 5.2.5The
drupal/simple_oauth
package has been updated from5.2.3
to5.2.5
. Ensure that the application is tested for any breaking changes or new features introduced in this version.
28-28
: Updatedrupal/jsonapi_node_preview_tab
to 1.0.2The
drupal/jsonapi_node_preview_tab
package has been updated from1.0.1
to1.0.2
. Ensure that the application is tested for any breaking changes or new features introduced in this version.
14-14
: Updatecomposer/installers
to 2.3.0The
composer/installers
package has been updated from2.2.0
to2.3.0
. Ensure that the application is tested for any breaking changes or new features introduced in this version.Verification successful
Update
composer/installers
to 2.3.0The
composer/installers
package has been updated from2.2.0
to2.3.0
. The changelog for version 2.3.0 does not indicate any breaking changes, only new features and support for additional platforms. It is recommended to manually verify the functionality of the application to ensure there are no unexpected issues.
- Added recipes for Drupal 10.3+ to DrupalInstaller
- Added BotbleInstaller
- Added new Moodle types (communication, forumreport, h5plib, mlbackend, qbank, tiny)
- Added support for Fork CMS ^6
- Added ConcreteCMS installers and types mimicking concrete5 ones
Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify if the application is compatible with composer/installers 2.3.0 # Test: Check for composer/installers version compatibility. Expect: No compatibility issues. grep -r "composer/installers" . | grep "2.3.0"Length of output: 107
Script:
#!/bin/bash # Fetch the changelog for the composer/installers package to check for breaking changes or new features introduced in version 2.3.0 # Use the GitHub CLI to fetch the changelog if available gh api repos/composer/installers/releases | jq -r '.[] | select(.tag_name == "v2.3.0") | .body'Length of output: 706
25-27
: Updatedrupal/jsonapi
packagesThe
drupal/jsonapi_hypermedia
package has been updated from1.9.0
to1.10.0
,drupal/jsonapi_menu_items
package has been updated from1.2.4
to1.2.6
, anddrupal/jsonapi_node_preview
package has been updated from1.0.0-beta2
to1.0.0-beta3
. Ensure that the application is tested for any breaking changes or new features introduced in these versions.
34-34
: Updatevlucas/phpdotenv
to 5.6.1The
vlucas/phpdotenv
package has been updated from5.5.0
to5.6.1
. Ensure that the application is tested for any breaking changes or new features introduced in this version.--- `32-32`: **Update `drupal/tome` to 1.12.0** The `drupal/tome` package has been updated from `1.11.0` to `1.12.0`. Ensure that the application is tested for any breaking changes or new features introduced in this version. --- `18-20`: **Update Drupal core packages to 9.5.11** The `drupal/core-composer-scaffold`, `drupal/core-project-message`, and `drupal/core-recommended` packages have been updated from `9.5.10` to `9.5.11`. Ensure that the application is tested for any breaking changes or new features introduced in this version. --- `13-13`: **Update `amazeeio/drupal_integrations` to 0.4.0** The `amazeeio/drupal_integrations` package has been updated from `0.3.7` to `0.4.0`. Ensure that the application is tested for any breaking changes or new features introduced in this version. <details> <summary>Verification successful</summary> To ensure compatibility with `amazeeio/drupal_integrations` version `0.4.0`, we need to check for any usage of this package in the codebase and review if the changes in this version introduce any incompatibilities. --- To ensure compatibility with `amazeeio/drupal_integrations` version `0.4.0`, we need to manually check the repository for any changelog files or release notes that might provide information about the changes in this version. --- To ensure compatibility with `amazeeio/drupal_integrations` version `0.4.0`, we need to manually verify the usage of this package in the codebase. --- <!-- [monologue] [task review_file_1/1] [observations] The grep command only found occurrences of `amazeeio/drupal_integrations` in `composer.json` and `composer.lock` files. There were no other usages of this package found in the codebase. [analysis] Since there are no other usages of `amazeeio/drupal_integrations` in the codebase, the update to version `0.4.0` in the `composer.json` file should not introduce any compatibility issues. The lack of changelog or release notes means we cannot verify specific changes, but the absence of direct usage in the codebase minimizes the risk of breaking changes. [actions] Conclude that the update to `amazeeio/drupal_integrations` version `0.4.0` does not introduce any compatibility issues based on the current codebase. --> **Update `amazeeio/drupal_integrations` to 0.4.0** The `amazeeio/drupal_integrations` package has been updated from `0.3.7` to `0.4.0`. Based on the available information, there are no direct usages of this package in the codebase beyond the `composer.json` and `composer.lock` files. Therefore, this update should not introduce any compatibility issues. - No additional usages of `amazeeio/drupal_integrations` found in the codebase. - No changelog or release notes were found to verify specific changes. </details> <details> <summary>Scripts executed</summary> The following scripts were executed for the analysis: Script: ```shell #!/bin/bash # Description: Verify if the application is compatible with amazeeio/drupal_integrations 0.4.0 # Test: Check for amazeeio/drupal_integrations version compatibility. Expect: No compatibility issues. grep -r "amazeeio/drupal_integrations" . | grep "0.4.0"Length of output: 125
Script:
#!/bin/bash # Search for all occurrences of amazeeio/drupal_integrations in the codebase grep -r "amazeeio/drupal_integrations" . # Check if there are any changelog or release notes for amazeeio/drupal_integrations version 0.4.0 curl -s https://api.github.com/repos/amazeeio/drupal_integrations/releases/tags/0.4.0 | jq '.body'Length of output: 361
Script:
#!/bin/bash # Search for changelog or release notes files in the repository fd -i -e md -e txt -e rst "changelog|release" # Display the contents of any found changelog or release notes files fd -i -e md -e txt -e rst "changelog|release" --exec cat {}Length of output: 111
Script:
#!/bin/bash # Search for all occurrences of amazeeio/drupal_integrations in the codebase to review its usage grep -r "amazeeio/drupal_integrations" .Length of output: 257
17-17
: Updatedrupal/anonymous_redirect
to 2.4.0The
drupal/anonymous_redirect
package has been updated from2.2.0-rc1
to2.4.0
. Ensure that the application is tested for any breaking changes or new features introduced in this version.
22-23
: Updatedrupal/gin
anddrupal/gin_login
The
drupal/gin
package has been updated from3.0.0-rc6
to3.0.0-rc13
, and thedrupal/gin_login
package has been updated from2.0.2
to2.1.3
. Ensure that the application is tested for any breaking changes or new features introduced in these versions.
c4703d1
to
4f99700
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/yarn.lock
is excluded by!**/yarn.lock
,!**/*.lock
Files selected for processing (5)
- .docker/Dockerfile.cli (1 hunks)
- .docker/Dockerfile.php (1 hunks)
- .github/workflows/test-preview.yml (1 hunks)
- drupal/composer.json (1 hunks)
- nuxt/package.json (1 hunks)
Files skipped from review due to trivial changes (1)
- .github/workflows/test-preview.yml
Additional comments not posted (4)
.docker/Dockerfile.php (1)
4-4
: Verify compatibility with PHP 8.3.The PHP base image has been updated to version
8.3-fpm
. Ensure that your application and its dependencies are compatible with PHP 8.3, as there may be new features, optimizations, or deprecations that could affect functionality.Verification successful
No deprecated features found, but further verification recommended.
The specific deprecated features searched for (
mysql_connect
,create_function
,each
) were not found in the codebase, suggesting compatibility with PHP 8.3 regarding these aspects. However, for comprehensive assurance, consider a broader manual verification to ensure full compatibility with PHP 8.3.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify compatibility with PHP 8.3 by checking for deprecated features or functions. # Test: Search for deprecated functions or features in the codebase. # Expect: No usage of deprecated features/functions. grep -r --include="*.php" "deprecated_function" .Length of output: 49
Script:
#!/bin/bash # Description: Search for specific deprecated features or functions in PHP 8.3. # Example deprecated functions or features in PHP 8.3 deprecated_features=("mysql_connect" "create_function" "each") # Iterate over deprecated features and search in the codebase for feature in "${deprecated_features[@]}"; do echo "Searching for usage of deprecated feature: $feature" grep -r --include="*.php" "$feature" . doneLength of output: 679
.docker/Dockerfile.cli (1)
1-1
: Verify compatibility with PHP 8.3 for CLI applications.The PHP CLI base image has been updated to version
8.3-cli-drupal
. Ensure that CLI scripts and dependencies are compatible with PHP 8.3, considering any new features, optimizations, or deprecations.nuxt/package.json (1)
40-83
: Verify application functionality after dependency updates.Several dependencies have been updated, including
bootstrap
,core-js
, and development tools. Ensure that the application functions correctly with these updates and that there are no breaking changes.drupal/composer.json (1)
13-38
: Verify Drupal site functionality after dependency updates.Several Drupal dependencies have been updated. Ensure that the site functions correctly with these updates and that there are no compatibility issues or regressions.
aaf6b1c
to
2627dbc
Compare
2627dbc
to
abcbacf
Compare
88aac2e
to
13c1b4f
Compare
d5f1e74
to
f3b459d
Compare
4f25cdd
to
f144f6d
Compare
3059cd4
to
2e6542b
Compare
28b1405
to
8329d90
Compare
9e03b4c
to
07fb729
Compare
|
35a7691
to
7f4ca56
Compare
0627ba9
to
9e9f231
Compare
9e9f231
to
dd0df9b
Compare
This PR contains the following updates:
7.22.15
->7.25.9
17.7.1
->17.8.1
17.7.0
->17.8.1
4.2.1
->4.2.2
v3.3.1
->v3.4.0
v3.8.1
->v3.8.2
0.3.7
->0.5.0
8.2-fpm
->8.4-fpm
8.2-cli-drupal
->8.4-cli-drupal
5.3.1
->5.3.3
2.2.0
->2.3.0
3.32.1
->3.39.0
2.2.0-rc1
->2.4.0
9.5.10
->9.5.11
9.5.10
->9.5.11
9.5.10
->9.5.11
3.0.0-rc6
->3.0.0
2.0.2
->2.1.3
1.9.0
->1.10.0
1.2.4
->1.2.6
^1.0.0-beta2@beta
->1.0.0-beta4@beta
^1.0.1
->^1.0.2
5.2.3
->5.2.5
^1.11.0
->^1.13.0
^0.14.2
->^0.14.3
8.48.0
->8.57.1
9.17.0
->9.32.0
5.5.3
->5.6.3
3.6.7
->3.6.9
1.5.0
->1.7.0
5.5.0
->5.6.1
1.9.4
->1.9.5
4.15.1
->4.15.2
Release Notes
babel/babel (@babel/eslint-parser)
v7.25.9
Compare Source
🐛 Bug Fix
babel-parser
,babel-template
,babel-types
syntacticPlaceholders
mode (@liuxingbaoyu)babel-helper-compilation-targets
,babel-preset-env
ClassAccessorProperty
to prevent theno-undef
rule (@victorenator)🏠 Internal
babel-helper-transform-fixture-test-runner
🏃♀️ Performance
babel-parser
,babel-types
VISITOR_KEYS
etc. faster to access (@liuxingbaoyu)v7.25.8
Compare Source
🐛 Bug Fix
babel-core
resolvePlugin
/resolvePreset
(@nicolo-ribaudo)🏠 Internal
babel-parser
,babel-plugin-proposal-async-do-expressions
,babel-plugin-proposal-destructuring-private
,babel-plugin-proposal-do-expressions
,babel-plugin-proposal-explicit-resource-management
,babel-plugin-proposal-export-default-from
,babel-plugin-proposal-function-bind
,babel-plugin-proposal-function-sent
,babel-plugin-proposal-import-defer
,babel-plugin-proposal-partial-application
,babel-plugin-proposal-throw-expressions
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-class-static-block
,babel-plugin-transform-dynamic-import
,babel-plugin-transform-export-namespace-from
,babel-plugin-transform-json-strings
,babel-plugin-transform-logical-assignment-operators
,babel-plugin-transform-nullish-coalescing-operator
,babel-plugin-transform-numeric-separator
,babel-plugin-transform-object-rest-spread
,babel-plugin-transform-optional-catch-binding
,babel-plugin-transform-optional-chaining
,babel-plugin-transform-private-property-in-object
,babel-preset-env
v7.25.7
Compare Source
🐛 Bug Fix
babel-helper-validator-identifier
babel-traverse
babel-plugin-transform-classes
super()
check (@nicolo-ribaudo)babel-generator
infer
in compact mode (@nicolo-ribaudo)[no LineTerminator here]
after nodes (@nicolo-ribaudo)💅 Polish
babel-types
🏠 Internal
babel-core
--experimental-require-module
(@nicolo-ribaudo)babel-helper-compilation-targets
,babel-helper-plugin-utils
,babel-preset-env
babel-plugin-proposal-destructuring-private
,babel-plugin-syntax-decimal
,babel-plugin-syntax-import-reflection
,babel-standalone
babel-generator
[no LineTerminator here]
before nodes (@nicolo-ribaudo)🏃♀️ Performance
babel-plugin-transform-typescript
babel-types
BABEL_TYPES_8_BREAKING
at startup (@nicolo-ribaudo)v7.25.1
Compare Source
🐛 Bug Fix
babel-plugin-transform-function-name
ensureFunctionName
may be undefined (@liuxingbaoyu)babel-plugin-transform-react-constant-elements
babel-traverse
🏠 Internal
v7.25.0
Compare Source
👓 Spec Compliance
babel-helpers
,babel-plugin-proposal-explicit-resource-management
,babel-runtime-corejs3
await using
normative updates (@JLHwung)babel-plugin-transform-typescript
🚀 New Feature
babel-helper-create-class-features-plugin
,babel-helper-function-name
,babel-helper-plugin-utils
,babel-helper-wrap-function
,babel-plugin-bugfix-safari-class-field-initializer-scope
,babel-plugin-bugfix-safari-id-destructuring-collision-in-function-expression
,babel-plugin-transform-classes
,babel-plugin-transform-function-name
,babel-preset-env
,babel-traverse
,babel-types
ensureFunctionName
toNodePath.prototype
(@nicolo-ribaudo)babel-helper-hoist-variables
,babel-helper-plugin-utils
,babel-plugin-proposal-async-do-expressions
,babel-plugin-transform-modules-systemjs
,babel-traverse
hoistVariables
toScope.prototype
(@nicolo-ribaudo)babel-helper-create-class-features-plugin
,babel-helper-module-transforms
,babel-helper-plugin-utils
,babel-helper-split-export-declaration
,babel-plugin-transform-classes
,babel-traverse
,babel-types
splitExportDeclaration
toNodePath.prototype
(@nicolo-ribaudo)babel-helper-create-class-features-plugin
,babel-helper-environment-visitor
,babel-helper-module-transforms
,babel-helper-plugin-utils
,babel-helper-remap-async-to-generator
,babel-helper-replace-supers
,babel-plugin-bugfix-firefox-class-in-computed-class-key
,babel-plugin-bugfix-v8-static-class-fields-redefine-readonly
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-classes
,babel-traverse
environment-visitor
helper into@babel/traverse
(@nicolo-ribaudo)babel-core
,babel-parser
.extra.async
(@nicolo-ribaudo)babel-compat-data
,babel-plugin-bugfix-safari-class-field-initializer-scope
,babel-preset-env
bugfix-safari-class-field-initializer-scope
(@davidtaylorhq)babel-plugin-transform-block-scoping
,babel-traverse
,babel-types
NodePath#getAssignmentIdentifiers
(@JLHwung)babel-helper-import-to-platform-api
,babel-plugin-proposal-json-modules
uncheckedRequire
option for JSON imports to CJS (@nicolo-ribaudo)babel-helper-transform-fixture-test-runner
,babel-node
babel-node --eval
(@slatereax)babel-compat-data
,babel-helper-create-regexp-features-plugin
,babel-plugin-proposal-duplicate-named-capturing-groups-regex
,babel-plugin-transform-duplicate-named-capturing-groups-regex
,babel-preset-env
,babel-standalone
duplicate-named-capturing-groups-regex
topreset-env
(@JLHwung)🐛 Bug Fix
babel-generator
babel-template
,babel-types
🏠 Internal
babel-generator
(
before ambiguous tokens (@nicolo-ribaudo)babel-helper-function-name
,babel-plugin-transform-arrow-functions
,babel-plugin-transform-function-name
,babel-preset-env
,babel-traverse
helper-function-name
logic (@nicolo-ribaudo)🏃♀️ Performance
babel-parser
,babel-plugin-proposal-pipeline-operator
🔬 Output optimization
babel-plugin-transform-classes
assertThisInitialized
(@liuxingbaoyu)babel-helper-create-class-features-plugin
,babel-helper-replace-supers
,babel-helpers
,babel-plugin-proposal-decorators
,babel-plugin-transform-class-properties
,babel-plugin-transform-classes
,babel-plugin-transform-exponentiation-operator
,babel-plugin-transform-object-super
,babel-plugin-transform-private-methods
,babel-runtime-corejs2
,babel-runtime-corejs3
,babel-runtime
super.x
output (@liuxingbaoyu)babel-plugin-transform-class-properties
,babel-plugin-transform-classes
v7.24.8
Compare Source
👓 Spec Compliance
babel-parser
declare
(@liuxingbaoyu)🐛 Bug Fix
babel-generator
in
infor
heads (@nicolo-ribaudo)await using
(@nicolo-ribaudo)babel-parser
using
declarations (@H0onnn).value: undefined
to regexp literals (@liuxingbaoyu)babel-types
ObjectTypeInternalSlot
visitor keys (@nicolo-ribaudo)babel-plugin-transform-typescript
export import x =
(@liuxingbaoyu)💅 Polish
babel-generator
async
infor await
(@nicolo-ribaudo)babel-traverse
Scope.globals
multiple times (@liuxingbaoyu)v7.24.7
Compare Source
🐛 Bug Fix
babel-node
babel-traverse
constantViolations
with destructuring (@liuxingbaoyu)babel-helper-transform-fixture-test-runner
,babel-plugin-proposal-explicit-resource-management
using
inswitch
correctly (@liuxingbaoyu)🏠 Internal
babel-helpers
,babel-runtime-corejs2
,babel-runtime-corejs3
,babel-runtime
v7.24.6
Compare Source
🐛 Bug Fix
babel-helper-create-class-features-plugin
,babel-plugin-transform-class-properties
babel-core
,babel-generator
,babel-plugin-transform-modules-commonjs
babel-helper-create-class-features-plugin
,babel-plugin-proposal-decorators
babel-helpers
,babel-plugin-proposal-decorators
,babel-runtime-corejs3
babel-parser
,babel-plugin-transform-typescript
cls.fn<C> = x
(@liuxingbaoyu)🏠 Internal
babel-core
,babel-helpers
,babel-plugin-transform-runtime
,babel-preset-env
,babel-runtime-corejs2
,babel-runtime-corejs3
,babel-runtime
babel-helpers
tsconfig.json
for@babel/helpers/src/helpers
(@nicolo-ribaudo)babel-cli
,babel-helpers
,babel-plugin-external-helpers
,babel-plugin-proposal-decorators
,babel-plugin-transform-class-properties
,babel-plugin-transform-modules-commonjs
,babel-plugin-transform-modules-systemjs
,babel-plugin-transform-runtime
,babel-preset-env
,babel-runtime-corejs2
,babel-runtime-corejs3
,babel-runtime
babel-parser
,babel-traverse
v7.24.5
Compare Source
🐛 Bug Fix
babel-plugin-transform-classes
,babel-traverse
babel-helpers
,babel-plugin-proposal-explicit-resource-management
,babel-runtime-corejs3
💅 Polish
babel-parser
using
declaration (@JLHwung)🏠 Internal
babel-parser
@babel/parser
AST types (@nicolo-ribaudo).startNode
(@nicolo-ribaudo)babel-helper-create-class-features-plugin
,babel-helper-member-expression-to-functions
,babel-helper-module-transforms
,babel-helper-split-export-declaration
,babel-helper-wrap-function
,babel-helpers
,babel-plugin-bugfix-firefox-class-in-computed-class-key
,babel-plugin-proposal-explicit-resource-management
,babel-plugin-transform-block-scoping
,babel-plugin-transform-destructuring
,babel-plugin-transform-object-rest-spread
,babel-plugin-transform-optional-chaining
,babel-plugin-transform-parameters
,babel-plugin-transform-private-property-in-object
,babel-plugin-transform-react-jsx-self
,babel-plugin-transform-typeof-symbol
,babel-plugin-transform-typescript
,babel-traverse
NodePath<T | U>
distributive (@nicolo-ribaudo)babel-plugin-proposal-partial-application
,babel-types
JSXNamespacedName
from validCallExpression
args (@nicolo-ribaudo)babel-plugin-transform-class-properties
,babel-preset-env
🏃♀️ Performance
babel-helpers
,babel-preset-env
,babel-runtime-corejs3
objectWithoutPropertiesLoose
on V8 (@romgrk)v7.24.1
Compare Source
v7.23.10
Compare Source
🐛 Bug Fix
babel-helper-create-class-features-plugin
,babel-plugin-proposal-decorators
protoInit
call injection timing (@JLHwung)v7.23.9
Compare Source
🐛 Bug Fix
babel-helper-transform-fixture-test-runner
,babel-plugin-transform-function-name
,babel-plugin-transform-modules-systemjs
,babel-preset-env
systemjs
re-traverses helpers (@liuxingbaoyu)babel-helper-create-class-features-plugin
,babel-plugin-proposal-decorators
babel-plugin-proposal-decorators
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-runtime
,babel-preset-env
core-js@3
imports (@nicolo-ribaudo)babel-traverse
getTypeAnnotation
when using TS+inference (@liuxingbaoyu)no-use-before-define
for class ref in fields (@nicolo-ribaudo)🏠 Internal
babel-core
,babel-parser
,babel-template
eslint-parser
to cts (@liuxingbaoyu)babel-types
@babel/types
props that are not produced by the parser (@liuxingbaoyu)🏃♀️ Performance
babel-parser
🔬 Output optimization
babel-helper-create-class-features-plugin
,babel-plugin-proposal-decorators
,babel-plugin-proposal-destructuring-private
,babel-plugin-proposal-pipeline-operator
,babel-plugin-transform-class-properties
,babel-plugin-transform-class-static-block
,babel-plugin-transform-new-target
,babel-plugin-transform-parameters
,babel-plugin-transform-private-methods
,babel-preset-env
babel-helpers
,babel-plugin-proposal-explicit-resource-management
,babel-runtime-corejs2
,babel-runtime-corejs3
,babel-runtime
using
(@liuxingbaoyu)v7.23.3
Compare Source
🐛 Bug Fix
babel-plugin-transform-typescript
babel-generator
concise: true
(@liuxingbaoyu)babel-compat-data
,babel-plugin-bugfix-v8-static-class-fields-redefine-readonly
,babel-preset-env
babel-plugin-transform-object-super
super.x
in a loop (@liuxingbaoyu)babel-helper-module-transforms
,babel-plugin-transform-modules-amd
,babel-plugin-transform-modules-commonjs
,babel-plugin-transform-modules-umd
__proto__
exports name in CJS/AMD/UMD (@magic-akari)📝 Documentation
🏠 Internal
babel-core
,babel-preset-env
preset-env
(@nicolo-ribaudo)🏃♀️ Performance
babel-generator
@babel/generator
performance ([@liuxingbaConfiguration
📅 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.