chore(deps): update all non-major dependencies#98
chore(deps): update all non-major dependencies#98renovate[bot] wants to merge 1 commit intodevelopfrom
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #98 +/- ##
=======================================
Coverage 0.00% 0.00%
=======================================
Files 4 4
Lines 6 6
=======================================
Misses 6 6 ☔ View full report in Codecov by Sentry. |
7992d61 to
d57c1f6
Compare
d57c1f6 to
3040c23
Compare
3040c23 to
d06d308
Compare
d06d308 to
373503e
Compare
373503e to
807408e
Compare
807408e to
8e452c0
Compare
8e452c0 to
0fcf933
Compare
0fcf933 to
3c97e79
Compare
3c97e79 to
0ba9af7
Compare
0ba9af7 to
8a2b351
Compare
8a2b351 to
e4abd37
Compare
e4abd37 to
2f1f7a6
Compare
2f1f7a6 to
fac041e
Compare
a35b1c4 to
bb3c1e8
Compare
5bf4a20 to
e3d3362
Compare
d6b0408 to
1d5004d
Compare
c95cd6f to
d6fa45f
Compare
d6fa45f to
9c31d3a
Compare
7f42b03 to
890cd54
Compare
6606c38 to
f17f28e
Compare
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the Use the checkbox below for a quick retry:
📝 WalkthroughWalkthroughThis update involves upgrading various dependencies across multiple configuration files and package management systems. Key changes include updating the PHP Docker image and Node.js versions to newer releases. Additionally, several GitHub Actions workflows have been enhanced by upgrading action versions, while the Drupal project's Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant CI
participant Docker
participant Node
participant Drupal
User->>CI: Push changes
CI->>Docker: Use updated php:8.4 image
CI->>Node: Setup node@16.20.2
CI->>Drupal: Update composer dependencies
CI->>Node: Update package.json dependencies
CI->>User: Build complete
✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
⚠ 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 |
There was a problem hiding this comment.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (1)
nuxt/package-lock.jsonis excluded by!**/package-lock.json
Files selected for processing (8)
- .circleci/config.yml (1 hunks)
- .github/workflows/test-preview.yml (2 hunks)
- .github/workflows/theme-bootstrap-vue.yml (2 hunks)
- .github/workflows/theme-tailwindcss.yml (2 hunks)
- .nvmrc (1 hunks)
- drupal/composer.json (1 hunks)
- nuxt/.nvmrc (1 hunks)
- nuxt/package.json (1 hunks)
Files skipped from review due to trivial changes (6)
- .github/workflows/test-preview.yml
- .github/workflows/theme-bootstrap-vue.yml
- .github/workflows/theme-tailwindcss.yml
- .nvmrc
- nuxt/.nvmrc
- nuxt/package.json
Additional comments not posted (2)
drupal/composer.json (1)
18-29: Dependency updates approved.The updates to the dependencies in
composer.jsonare approved. Ensure that these updates do not introduce any compatibility issues with other parts of the project..circleci/config.yml (1)
11-11: PHP version update approved.The update to the PHP Docker image from
php:8.1tophp:8.3is approved. Verify that the application is compatible with PHP 8.3 to avoid runtime issues.
|
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (2)
drupal/composer.json (1)
18-26: Dependency Versions Updated Correctly.
The updates to dependency versions (e.g."composer/installers": "2.3.0","cweagans/composer-patches": "^1.7.3","drupal/core-composer-scaffold": "9.5.11","drupal/core-project-message": "9.5.11","drupal/druxt": "1.2.0","drupal/simple_oauth": "^5.2.5","drush/drush": "11.6.0", and"vlucas/phpdotenv": "^5.6.1") all reflect non-major updates that fit the PR objectives. Please verify that leaving"drupal/core-recommended": "9.4.8"unchanged is intentional.nuxt/package.json (1)
31-37: Dependency Version Updates in Application Dependencies.
The updates for packages like"core-js": "3.41.0","dotenv": "^16.4.7","druxt-auth": "^0.4.0","druxt-site": "^0.14.3", and"vue-server-renderer": "^2.7.16"are consistent with the PR’s objective to update non-major dependencies. Please double-check that the slight version difference between"vue-server-renderer"and"vue-template-compiler"(the latter remaining at"^2.7.14") does not lead to compatibility warnings in Vue applications.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
nuxt/package-lock.jsonis excluded by!**/package-lock.json
📒 Files selected for processing (8)
.circleci/config.yml(1 hunks).github/workflows/test-preview.yml(2 hunks).github/workflows/theme-bootstrap-vue.yml(2 hunks).github/workflows/theme-tailwindcss.yml(2 hunks).nvmrc(1 hunks)drupal/composer.json(1 hunks)nuxt/.nvmrc(1 hunks)nuxt/package.json(1 hunks)
✅ Files skipped from review due to trivial changes (4)
- nuxt/.nvmrc
- .github/workflows/test-preview.yml
- .nvmrc
- .github/workflows/theme-bootstrap-vue.yml
🔇 Additional comments (8)
drupal/composer.json (1)
29-29: Dev Dependency Update Confirmed.
The update of"drupal/core-dev"to"9.5.11"is consistent with the core dependency enhancements..circleci/config.yml (2)
11-11: Updated PHP Docker Image.
Changing the Docker image tophp:8.4is in line with using a more recent PHP runtime, which should help with performance and security. Ensure that any PHP-specific tooling or extensions remain compatible with the updated version.
12-61: CI Configuration Consistency.
The remainder of the configuration—including dependency installation, Composer commands, and workspace persistence—appears to be retained unaltered. Verify that the environment changes introduced by PHP 8.4 do not adversely affect any build or test steps..github/workflows/theme-tailwindcss.yml (2)
17-17: GitHub Action Setup-Node Update.
Upgradingactions/setup-nodetov3.8.2is a good non-major update that should help leverage improvements and fixes.
27-27: GitHub Action Cache Update.
The update toactions/cache@v3.4.3improves performance and stability compared to the previous version.nuxt/package.json (3)
40-45: Dev Dependency Updates for Testing and Linting.
The updates for"@babel/eslint-parser","@vue/test-utils", and"babel-jest"(among others in the testing toolchain) are properly applied. Confirm that these updates integrate seamlessly with your current linting and unit testing configurations.
47-55: ESLint and Related Tooling Upgrades.
The new versions for"eslint","eslint-config-prettier","eslint-plugin-vue", and"husky"ensure you benefit from the latest fixes and enhancements. Running the lint suite after these updates is advised to catch any unforeseen changes.
56-60: Stylelint and Server Test Updates.
Upgrades to"start-server-and-test","stylelint","stylelint-config-prettier", and"stylelint-config-recommended-vue"are all in line with non-major improvements that can help with performance and developer experience.
This PR contains the following updates:
^7.19.1→^7.28.6^1.3.3→^1.3.6v3.0.11→v3.5.0v3.5.1→v3.9.1^29.3.1→^29.7.02.2.0→2.3.03.26.1→3.48.0^1.7.2→^1.7.3^16.0.3→^16.6.19.4.8→9.5.119.4.8→9.5.119.4.8→9.5.111.1.1→1.2.1^5.2.2→^5.2.511.3.2→11.6.0^0.2.0→^0.4.0^0.14.0→^0.14.3^8.27.0→^8.57.1^8.5.0→^8.10.2^4.2.1→^4.2.5^9.7.0→^9.33.0^8.0.2→^8.0.3^29.3.1→^29.7.0^29.3.1→^29.7.0^13.0.3→^13.3.016.18.1→16.20.216→16.20.28.1→8.5^1.14.0→^1.15.4^14.15.0→^14.16.1^9.0.4→^9.0.5^1.4.0→^1.6.1^5.5.0→^5.6.3^2.7.14→^2.7.16^2.7.14→^2.7.16Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
babel/babel (@babel/eslint-parser)
v7.28.6Compare Source
v7.28.6 (2026-01-12)
Thanks @kadhirash and @kolvian for your first PRs!
🐛 Bug Fix
babel-cli,babel-code-frame,babel-core,babel-helper-check-duplicate-nodes,babel-helper-fixtures,babel-helper-plugin-utils,babel-node,babel-plugin-transform-flow-comments,babel-plugin-transform-modules-commonjs,babel-plugin-transform-property-mutators,babel-preset-env,babel-traverse,babel-typesbabel-plugin-transform-regeneratortransform-regeneratorcorrectly handles scope (@liuxingbaoyu)babel-plugin-transform-react-jsx💅 Polish
babel-core,babel-standalone🏠 Internal
babel-plugin-bugfix-v8-static-class-fields-redefine-readonly,babel-plugin-proposal-decorators,babel-plugin-proposal-import-attributes-to-assertions,babel-plugin-proposal-import-wasm-source,babel-plugin-syntax-async-do-expressions,babel-plugin-syntax-decorators,babel-plugin-syntax-destructuring-private,babel-plugin-syntax-do-expressions,babel-plugin-syntax-explicit-resource-management,babel-plugin-syntax-export-default-from,babel-plugin-syntax-flow,babel-plugin-syntax-function-bind,babel-plugin-syntax-function-sent,babel-plugin-syntax-import-assertions,babel-plugin-syntax-import-attributes,babel-plugin-syntax-import-defer,babel-plugin-syntax-import-source,babel-plugin-syntax-jsx,babel-plugin-syntax-module-blocks,babel-plugin-syntax-optional-chaining-assign,babel-plugin-syntax-partial-application,babel-plugin-syntax-pipeline-operator,babel-plugin-syntax-throw-expressions,babel-plugin-syntax-typescript,babel-plugin-transform-async-generator-functions,babel-plugin-transform-async-to-generator,babel-plugin-transform-class-properties,babel-plugin-transform-class-static-block,babel-plugin-transform-dotall-regex,babel-plugin-transform-duplicate-named-capturing-groups-regex,babel-plugin-transform-explicit-resource-management,babel-plugin-transform-exponentiation-operator,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-methods,babel-plugin-transform-private-property-in-object,babel-plugin-transform-regexp-modifiers,babel-plugin-transform-unicode-property-regex,babel-plugin-transform-unicode-sets-regex🏃♀️ Performance
babel-plugin-transform-react-jsx__source,__self(@liuxingbaoyu)Committers: 7
v7.28.5Compare Source
👓 Spec Compliance
babel-parserRuntime Errors for Function Call Assignment Targets(@liuxingbaoyu)babel-helper-validator-identifier🐛 Bug Fix
babel-plugin-proposal-destructuring-privatebabel-parser@babel/parsererror typing (@JLHwung)babel-plugin-proposal-discard-binding,babel-plugin-transform-destructuringrestcorrectly returns plain array (@liuxingbaoyu)babel-helper-create-class-features-plugin,babel-helper-member-expression-to-functions,babel-plugin-transform-block-scoping,babel-plugin-transform-optional-chaining,babel-traverse,babel-typesJSXIdentifierhandling inisReferencedIdentifier(@JLHwung)babel-traverse🏠 Internal
babel-types🏃♀️ Performance
babel-corebuildCodeFrameError(@liuxingbaoyu)v7.28.4Compare Source
🏠 Internal
babel-core,babel-helper-check-duplicate-nodes,babel-traverse,babel-typesbabel-plugin-transform-regeneratortransform-regenerator(@liuxingbaoyu)babel-corev7.28.0Compare Source
🚀 New Feature
babel-nodebabel-typesbabel-compat-data,babel-preset-envbabel-core,babel-parsersourceType: "commonjs"(@JLHwung)babel-generator,babel-parserexplicitResourceManagementparser plugin (@JLHwung)babel-plugin-proposal-destructuring-private,babel-plugin-proposal-do-expressions,babel-plugin-transform-object-rest-spread,babel-traverse,babel-typesbabel-parser,babel-traverse,babel-typest.bigIntLiteralfactory (@JLHwung)babel-generator,babel-plugin-proposal-destructuring-private,babel-plugin-proposal-discard-binding,babel-plugin-transform-destructuring,babel-plugin-transform-explicit-resource-management,babel-plugin-transform-react-display-name,babel-typesbabel-generator,babel-parser,babel-plugin-proposal-destructuring-private,babel-plugin-transform-block-scoping,babel-plugin-transform-object-rest-spread,babel-plugin-transform-typescript,babel-traverse,babel-types🐛 Bug Fix
babel-helper-globals,babel-plugin-transform-classes,babel-traversebabel-types🏠 Internal
babel-compat-data,babel-plugin-proposal-decorators,babel-plugin-transform-async-generator-functions,babel-plugin-transform-json-modules,babel-plugin-transform-regenerator,babel-plugin-transform-runtime,babel-preset-env,babel-runtime-corejs3babel-polyfillpackages (@nicolo-ribaudo)v7.27.5Compare Source
🐛 Bug Fix
babel-plugin-transform-regeneratorregeneratorfortry(@liuxingbaoyu)sourceType: commonjsto script (@JLHwung)💅 Polish
babel-parserv7.27.1Compare Source
👓 Spec Compliance
babel-parserusing ofas lexical declaration within for (@JLHwung)babel-parser,babel-types🐛 Bug Fix
babel-plugin-proposal-destructuring-private,babel-plugin-proposal-do-expressions,babel-traversebabel-helper-wrap-function,babel-plugin-transform-async-to-generatorbabel-helper-remap-async-to-generator,babel-plugin-transform-async-to-generatorbabel-helper-fixtures,babel-parserbabel-generator,babel-parserbabel-parserbabel-compat-data,babel-preset-envbabel-traversebabel-generator💅 Polish
babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining,babel-plugin-proposal-decorators,babel-plugin-transform-arrow-functions,babel-plugin-transform-class-properties,babel-plugin-transform-destructuring,babel-plugin-transform-object-rest-spread,babel-plugin-transform-optional-chaining,babel-plugin-transform-parameters,babel-traverse🏠 Internal
babel-runtime-corejs2,babel-runtime-corejs3,babel-runtimeregenerator-runtimedep in@babel/runtime(@nicolo-ribaudo)babel-compat-data,babel-preset-envbabel-compat-data,babel-standalonebabel-register@babel/registerto cts (@liuxingbaoyu)babel-cli,babel-compat-data,babel-core,babel-generator,babel-helper-compilation-targets,babel-helper-fixtures,babel-helper-module-imports,babel-helper-module-transforms,babel-helper-plugin-test-runner,babel-helper-transform-fixture-test-runner,babel-helpers,babel-node,babel-parser,babel-plugin-transform-modules-amd,babel-plugin-transform-modules-commonjs,babel-plugin-transform-modules-systemjs,babel-plugin-transform-modules-umd,babel-plugin-transform-react-display-name,babel-plugin-transform-regenerator,babel-plugin-transform-runtime,babel-plugin-transform-typeof-symbol,babel-plugin-transform-typescript,babel-preset-env,babel-register,babel-standalone,babel-typesbabel-plugin-transform-regeneratorbabel-helpers,babel-plugin-transform-async-generator-functions,babel-plugin-transform-regenerator,babel-preset-env,babel-runtime-corejs3babel-helpers,babel-plugin-transform-regeneratorbabel-helpers🔬 Output optimization
babel-helpers,babel-plugin-transform-modules-commonjs,babel-runtime-corejs3interopRequireWildcardsize (@liuxingbaoyu)babel-helpers,babel-plugin-transform-async-generator-functions,babel-plugin-transform-regenerator,babel-preset-env,babel-runtime-corejs3regeneratorRuntimesize (@liuxingbaoyu)v7.27.0Compare Source
👓 Spec Compliance
babel-generator,babel-parserimportAttributesKeywordtowith(@JLHwung)🚀 New Feature
babel-helper-create-class-features-plugin,babel-traverse,babel-typestraverseFastto exit early (@liuxingbaoyu)babel-parser,babel-typesImportAttributestoStandardizedand move its parser test fixtures (@JLHwung)babel-generatorbabel-parser,babel-templateallowYieldOutsideFunctionto parser (@liuxingbaoyu)babel-plugin-transform-typescript,babel-traverseupToScopeparameter tohasBinding(@liuxingbaoyu)babel-parserbabel-types🐛 Bug Fix
babel-helper-create-class-features-plugin,babel-plugin-transform-class-propertiesbabel-traversescope.crawl()(@liuxingbaoyu)babel-helpers,babel-preset-typescript,babel-runtime-corejs2,babel-runtime-corejs3,babel-runtimerewriteRelativeImportExtensions(@JLHwung)babel-cli@babel/cligenerates duplicate inline source maps (@liuxingbaoyu)babel-plugin-transform-named-capturing-groups-regex,babel-types🏃♀️ Performance
babel-types@babel/types(@liuxingbaoyu)babel-helper-create-regexp-features-pluginv7.26.10Compare Source
👓 Spec Compliance
babel-parser🐛 Bug Fix
babel-parser,babel-templatebabel-corebabel-parser,babel-plugin-transform-typescriptbabel-traversebabel-generatorabstract override(@liuxingbaoyu)babel-parserbabel-helpers,babel-runtime,babel-runtime-corejs2,babel-runtime-corejs3💅 Polish
babel-standalone🏠 Internal
babel-parserv7.26.8Compare Source
v7.26.8 (2025-02-08)
🏠 Internal
babel-preset-envv7.26.5Compare Source
👓 Spec Compliance
babel-parserimport.defer()form ofimport defer(@babel-bot)🐛 Bug Fix
babel-plugin-transform-block-scoped-functionsisInStrictModein Babel 7 (@liuxingbaoyu)babel-plugin-transform-typescriptbabel-parser@(a.b)()(@liuxingbaoyu)babel-generator,babel-parser,babel-plugin-transform-flow-strip-types,babel-typesbabel-compat-data,babel-preset-envtransform-typeof-symbolcompat data (@liuxingbaoyu)babel-generator,babel-parser,babel-types🔬 Output optimization
babel-plugin-transform-nullish-coalescing-operatorv7.25.9Compare Source
🐛 Bug Fix
babel-parser,babel-template,babel-typessyntacticPlaceholdersmode (@liuxingbaoyu)babel-helper-compilation-targets,babel-preset-envClassAccessorPropertyto prevent theno-undefrule (@victorenator)🏠 Internal
babel-helper-transform-fixture-test-runner🏃♀️ Performance
babel-parser,babel-typesVISITOR_KEYSetc. faster to access (@liuxingbaoyu)v7.25.8Compare Source
🐛 Bug Fix
babel-coreresolvePlugin/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-envv7.25.7Compare Source
🐛 Bug Fix
babel-helper-validator-identifierbabel-traversebabel-plugin-transform-classessuper()check (@nicolo-ribaudo)babel-generatorinferin 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-envbabel-plugin-proposal-destructuring-private,babel-plugin-syntax-decimal,babel-plugin-syntax-import-reflection,babel-standalonebabel-generator[no LineTerminator here]before nodes (@nicolo-ribaudo)🏃♀️ Performance
babel-plugin-transform-typescriptbabel-typesBABEL_TYPES_8_BREAKINGat startup (@nicolo-ribaudo)v7.25.1Compare Source
🐛 Bug Fix
babel-plugin-transform-function-nameensureFunctionNamemay be undefined (@liuxingbaoyu)babel-plugin-transform-react-constant-elementsbabel-traverse🏠 Internal
v7.25.0Compare Source
👓 Spec Compliance
babel-helpers,babel-plugin-proposal-explicit-resource-management,babel-runtime-corejs3await usingnormative 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-typesensureFunctionNametoNodePath.prototype(@nicolo-ribaudo)babel-helper-hoist-variables,babel-helper-plugin-utils,babel-plugin-proposal-async-do-expressions,babel-plugin-transform-modules-systemjs,babel-traversehoistVariablestoScope.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-typessplitExportDeclarationtoNodePath.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-traverseenvironment-visitorhelper 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-envbugfix-safari-class-field-initializer-scope(@davidtaylorhq)babel-plugin-transform-block-scoping,babel-traverse,babel-typesNodePath#getAssignmentIdentifiers(@JLHwung)babel-helper-import-to-platform-api,babel-plugin-proposal-json-modulesuncheckedRequireoption for JSON imports to CJS (@nicolo-ribaudo)babel-helper-transform-fixture-test-runner,babel-nodebabel-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-standaloneduplicate-named-capturing-groups-regextopreset-env(@JLHwung)🐛 Bug Fix
babel-generatorbabel-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-traversehelper-function-namelogic (@nicolo-ribaudo)🏃♀️ Performance
babel-parser,babel-plugin-proposal-pipeline-operatorConfiguration
📅 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.