Skip to content

chore(deps): Update Node.js to v20.19.1 #1496

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 13, 2025

This PR contains the following updates:

Package Update Change
node (source) minor 20 -> 20.19.1

Release Notes

nodejs/node (node)

v20.19.1

Compare Source

v20.19.0: 2025-03-13, Version 20.19.0 'Iron' (LTS), @​marco-ippolito

Compare Source

Notable Changes
require(esm) is now enabled by default

Support for loading native ES modules using require() had been available on v20.x under the command line flag --experimental-require-module, and available by default on v22.x and v23.x. In this release, it is now no longer behind a flag on v20.x.

This feature has been tested on v23.x and v22.x, and we are looking for user feedback from v20.x to make more final tweaks before fully stabilizing it. When the Node.js instance encounters a native ES module in require() somewhere outside node_modules for the first time, it will emit an experimental warning unless require() comes from a path that contains node_modules. If there happens to be any regressions caused by this feature, users can report it to the Node.js issue tracker. Meanwhile this feature can also be disabled using --no-experimental-require-module as a workaround.

With this feature enabled, Node.js will no longer throw ERR_REQUIRE_ESM if require() is used to load a ES module. It can, however, throw ERR_REQUIRE_ASYNC_MODULE if the ES module being loaded or its dependencies contain top-level await. When the ES module is loaded successfully by require(), the returned object will either be a ES module namespace object similar to what's returned by import(), or what gets exported as "module.exports" in the ES module.

Users can check process.features.require_module to see whether require(esm) is enabled in the current Node.js instance. For packages, the "module-sync" exports condition can be used as a way to detect require(esm) support in the current Node.js instance and allow both require() and import to load the same native ES module. See the documentation for more details about this feature.

Contributed by Joyee Cheung in #​55085

Module syntax detection is now enabled by default

Module syntax detection (the --experimental-detect-module flag) is now
enabled by default. Use --no-experimental-detect-module to disable it if
needed.

Syntax detection attempts to run ambiguous files as CommonJS, and if the module
fails to parse as CommonJS due to ES module syntax, Node.js tries again and runs
the file as an ES module.
Ambiguous files are those with a .js or no extension, where the nearest parent
package.json has no "type" field (either "type": "module" or
"type": "commonjs").
Syntax detection should have no performance impact on CommonJS modules, but it
incurs a slight performance penalty for ES modules; add "type": "module" to
the nearest parent package.json file to eliminate the performance cost.
A use case unlocked by this feature is the ability to use ES module syntax in
extensionless scripts with no nearby package.json.

Thanks to Geoffrey Booth for making this work on #​53619.

Other Notable Changes
  • [285bb4ee14] - crypto: update root certificates to NSS 3.107 (Node.js GitHub Bot) #​56566
  • [73b5c16684] - (SEMVER-MINOR) worker: add postMessageToThread (Paolo Insogna) #​53682
  • [de313b2336] - (SEMVER-MINOR) module: only emit require(esm) warning under --trace-require-module (Joyee Cheung) #​56194
  • [4fba01911d] - (SEMVER-MINOR) process: add process.features.require_module (Joyee Cheung) #​55241
  • [df8a045afe] - (SEMVER-MINOR) module: implement the "module-sync" exports condition (Joyee Cheung) #​54648
  • [f9dc1eaef5] - (SEMVER-MINOR) module: add __esModule to require()'d ESM (Joyee Cheung) #​52166
Commits

v20.18.3: 2025-02-10, Version 20.18.3 'Iron' (LTS), @​marco-ippolito

Compare Source

Notable Changes
Commits

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

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

Copy link

coderabbitai bot commented Mar 13, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

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)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

github-actions bot commented Mar 13, 2025

@github-actions github-actions bot temporarily deployed to pull request March 13, 2025 08:25 Inactive
Copy link

github-actions bot commented Mar 13, 2025

📐🤏 Size check result (aa263d6...f743b43):

See full diff

Load all bricks together

Name Prev Now Diff
All bricks 4,424.57 KB 4,424.14 KB ↓ -0.43 KB

Critical changes: None.

See full changes
Name Prev Now Diff
<core> 316.87 KB 316.83 KB
<react> 8.22 KB 8.22 KB 🟰
advanced 521.13 KB 521.28 KB 🔼 +0.15 KB
ai 288.23 KB 288.19 KB
api-market 10.59 KB 10.59 KB 🟰
basic 156.29 KB 156.29 KB 🟰
containers 95.6 KB 95.6 KB 🟰
data-view 642.92 KB 642.93 KB
diagram 180.26 KB 180.23 KB
form 325 KB 325.03 KB
form-platform 12.7 KB 12.7 KB 🟰
icons 66.17 KB 66.17 KB 🟰
illustrations 17.45 KB 17.45 KB 🟰
inject 56.26 KB 56.26 KB 🟰
markdown 249.38 KB 249.33 KB
mini-chart 7.83 KB 7.83 KB 🟰
nav 121.66 KB 121.66 KB 🟰
presentational 135.7 KB 135.69 KB
recent-history 33.18 KB 33.18 KB 🟰
shoelace 196.07 KB 196.07 KB 🟰
visual-builder 450.75 KB 450.73 KB
vs 849.18 KB 848.71 KB ↓ -0.47 KB

Load bricks by each package

Critical changes: None.

See full changes
Name Prev Now Diff
advanced 842.55 KB 842.66 KB 🔼 +0.11 KB
ai 598.08 KB 598.15 KB
api-market 333.22 KB 333.21 KB
basic 422.62 KB 422.63 KB
containers 252.54 KB 252.53 KB
data-view 800.2 KB 800.21 KB
diagram 263.63 KB 263.63 KB 🟰
form 678.43 KB 678.45 KB
form-platform 367.86 KB 367.86 KB 🟰
icons 123.77 KB 123.77 KB 🟰
illustrations 143.73 KB 143.73 KB 🟰
inject 56.26 KB 56.26 KB 🟰
markdown 446.07 KB 446.11 KB
mini-chart 81.65 KB 81.65 KB 🟰
nav 477.48 KB 477.46 KB
presentational 445.32 KB 445.31 KB
recent-history 312.31 KB 312.3 KB
shoelace 196.07 KB 196.07 KB 🟰
visual-builder 1,647.54 KB 1,647.18 KB ↓ -0.36 KB
vs 1,146.25 KB 1,145.78 KB ↓ -0.47 KB
widget-editors 0 KB 0 KB 🟰

Load by each brick

Critical changes:

Name Prev Now Diff
ai.chat-view 593.29 KB 645.84 KB 🔺 +52.55 KB
eo-date-picker 338.77 KB 284.51 KB 🟢 -54.26 KB
eo-radio 205.26 KB 151.03 KB 🟢 -54.23 KB
eo-search 146.51 KB 200.77 KB 🔺 +54.26 KB
eo-time-range-picker 337.97 KB 283.71 KB 🟢 -54.26 KB
form.general-checkbox 212.36 KB 158.13 KB 🟢 -54.23 KB
form.general-input 142.47 KB 196.73 KB 🔺 +54.26 KB
form.general-search 146.51 KB 200.77 KB 🔺 +54.26 KB
form.general-switch 202.22 KB 147.99 KB 🟢 -54.23 KB
visual-builder.contract-select 170.92 KB 169.23 KB 🟢 -1.69 KB
See full changes
Name Prev Now Diff
advanced.capture-snapshot 52.37 KB 52.37 KB 🟰
advanced.general-cascader 269.68 KB 269.69 KB
advanced.general-table 381.29 KB 381.2 KB
advanced.pdf-viewer 201.01 KB 201 KB
ai.chat-agent 67.7 KB 67.7 KB 🟰
ai.chat-view 593.29 KB 645.84 KB 🔺 +52.55 KB
api-market.apis-directory-tree 333.2 KB 333.21 KB
basic.active-element-blur 8.59 KB 8.58 KB
basic.change-language 8.58 KB 8.57 KB
basic.copy-to-clipboard 8.74 KB 8.74 KB 🟰
basic.dropdown-button 280.75 KB 280.78 KB
basic.general-button 152.88 KB 152.87 KB
basic.general-image 148.43 KB 148.43 KB 🟰
basic.general-link 267.95 KB 267.91 KB
basic.general-menu 78.36 KB 78.35 KB
basic.general-menu-item 144.8 KB 144.79 KB
basic.general-popover 195.24 KB 195.23 KB
basic.general-tag 146.74 KB 146.73 KB
basic.general-tag-list 148.84 KB 148.83 KB
basic.general-text 352.33 KB 352.38 KB
basic.get-language 8.57 KB 8.57 KB 🟰
basic.home-redirect 23.61 KB 23.6 KB
basic.http-proxy-request 8.65 KB 8.65 KB 🟰
basic.http-request 8.57 KB 8.57 KB 🟰
basic.lock-body-scroll 23.3 KB 23.29 KB
basic.set-theme-by-apps 8.59 KB 8.58 KB
basic.set-timeout 8.58 KB 8.58 KB 🟰
basic.show-dialog 340.88 KB 340.87 KB
basic.show-notification 267.91 KB 267.91 KB 🟰
basic.show-watermark 10.32 KB 10.32 KB 🟰
basic.v3-widget-mate 8.56 KB 8.55 KB
containers.easy-view 67.04 KB 67.04 KB 🟰
containers.flex-layout 66.78 KB 66.78 KB 🟰
containers.general-card 164.55 KB 164.54 KB
containers.general-category 67.4 KB 67.4 KB 🟰
containers.general-drawer 158.39 KB 158.36 KB
containers.general-modal 165.2 KB 165.19 KB
containers.grid-layout 67.88 KB 67.87 KB
containers.micro-view 87.96 KB 87.95 KB
containers.search-bar 66.9 KB 66.89 KB
containers.tab-group 72.1 KB 72.1 KB 🟰
containers.tab-item 159.96 KB 159.95 KB
containers.tab-list 159.96 KB 159.95 KB
data-view.app-wall-card-item 70.04 KB 70.05 KB
data-view.app-wall-relation-line 69.71 KB 69.72 KB
data-view.app-wall-system-card 136.32 KB 136.33 KB
data-view.basic-index-group 69.32 KB 69.34 KB
data-view.battery-chart 70.04 KB 70.06 KB
data-view.brick-notification 135.43 KB 135.44 KB
data-view.bubbles-indicator 169.24 KB 169.24 KB 🟰
data-view.cabinet-app-layer 69.71 KB 69.72 KB
data-view.cabinet-button 69.3 KB 69.31 KB
data-view.cabinet-container 79.55 KB 79.56 KB
data-view.cabinet-graph 93.68 KB 93.69 KB
data-view.cabinet-node 70.12 KB 70.13 KB
data-view.cabinet-thumbnail 83.39 KB 83.41 KB
data-view.china-map 147.75 KB 147.68 KB
data-view.china-map-chart 379.04 KB 379.04 KB 🟰
data-view.complex-search 147.92 KB 147.94 KB
data-view.crystal-ball-indicator 163.63 KB 163.64 KB
data-view.data-display-flipper 69.23 KB 69.24 KB
data-view.data-display-flipper-fifth 69.12 KB 69.13 KB
data-view.data-display-flipper-sixth 68.98 KB 68.99 KB
data-view.dropdown-menu 137.53 KB 137.63 KB 🔼 +0.1 KB
data-view.gauge-chart 70.16 KB 70.17 KB
data-view.gear-background 115.41 KB 115.42 KB
data-view.globe-with-gear-indicator 214.64 KB 214.65 KB
data-view.globe-with-halo-indicator 164.64 KB 164.65 KB
data-view.globe-with-orbit-indicator 164.5 KB 164.5 KB 🟰
data-view.graph-layout-grid 86.49 KB 86.5 KB
data-view.graph-node 69.16 KB 69.17 KB
data-view.graph-text 77.65 KB 77.67 KB
data-view.grid-background 104.49 KB 104.5 KB
data-view.hi-tech-button 69.95 KB 69.96 KB
data-view.indicator-card 69.42 KB 69.43 KB
data-view.lights-component-title 68.84 KB 68.86 KB
data-view.loading-panel 73.2 KB 73.21 KB
data-view.modern-style-component-title 69.93 KB 69.94 KB
data-view.modern-style-page-title 69.99 KB 70 KB
data-view.modern-style-treemap 80.45 KB 80.47 KB
data-view.particle-animation 69.84 KB 69.86 KB
data-view.progress-bar-list 71.98 KB 72 KB
data-view.radar-chart 70.9 KB 70.91 KB
data-view.simple-card-item 69.53 KB 69.54 KB
data-view.tabs-drawer 137.37 KB 137.47 KB 🔼 +0.1 KB
data-view.tabs-page-title 72.06 KB 72.07 KB
data-view.tech-mesh-base-view 68.41 KB 68.42 KB
data-view.title-text 69.61 KB 69.63 KB
data-view.top-title-bar 80.77 KB 80.78 KB
diagram.editable-label 67.65 KB 67.66 KB
diagram.experimental-node 67.11 KB 67.11 KB 🟰
eo-actions 277.65 KB 277.67 KB
eo-alert 139.7 KB 139.7 KB 🟰
eo-antd-icon 123.77 KB 123.77 KB 🟰
eo-app-bar-wrapper 68 KB 68 KB 🟰
eo-auto-complete 202.88 KB 202.9 KB
eo-avatar 259.9 KB 259.86 KB
eo-avatar-group 258.78 KB 258.77 KB
eo-banner 95.98 KB 95.97 KB
eo-breadcrumb 270.03 KB 270.02 KB
eo-breadcrumb-item 269.63 KB 269.62 KB
eo-broadcast-channel 78.75 KB 78.74 KB
eo-button 152.88 KB 152.87 KB
eo-card 164.55 KB 164.54 KB
eo-card-item 300.5 KB 300.46 KB
eo-carousel-text 75.33 KB 75.32 KB
eo-cascader 269.68 KB 269.69 KB
eo-category 67.4 KB 67.4 KB 🟰
eo-checkbox 158.11 KB 158.13 KB
eo-code-display 352.69 KB 352.72 KB
eo-color-picker 240.28 KB 240.3 KB
eo-content-layout 66.33 KB 66.33 KB 🟰
eo-context-menu 280.68 KB 280.67 KB
eo-counter-badge 145.48 KB 145.48 KB 🟰
eo-current-time 138.37 KB 138.37 KB 🟰
eo-date-picker 338.77 KB 284.51 KB 🟢 -54.26 KB
eo-descriptions 188.27 KB 188.25 KB
eo-diagram 122.44 KB 122.45 KB
eo-directory 281.74 KB 281.7 KB
eo-directory-tree 169.13 KB 169.15 KB
eo-directory-tree-internal-node 134.94 KB 134.94 KB 🟰
eo-directory-tree-leaf 134.24 KB 134.25 KB
eo-display-canvas 219.05 KB 219.05 KB 🟰
eo-divider 73.14 KB 73.13 KB
eo-draw-canvas 239.18 KB 239.21 KB
eo-drawer 158.39 KB 158.36 KB
eo-dropdown-actions 279.22 KB 279.22 KB 🟰
eo-dropdown-button 280.78 KB 280.74 KB
eo-dropdown-select 274.75 KB 274.74 KB
eo-dynamic-form-item 245.9 KB 245.91 KB
eo-easy-view 67.04 KB 67.04 KB 🟰
eo-easyops-avatar 261.76 KB 261.75 KB
eo-easyops-icon 123.77 KB 123.77 KB 🟰
eo-event-agent 23.2 KB 23.2 KB 🟰
eo-fa-icon 123.77 KB 123.77 KB 🟰
eo-flex-layout 66.78 KB 66.78 KB 🟰
eo-form 69.83 KB 69.85 KB
eo-form-item 76.3 KB 76.32 KB
eo-formatter-number 78.82 KB 78.81 KB
eo-frame-breadcrumb 284.33 KB 284.32 KB
eo-grid-layout 67.88 KB 67.87 KB
eo-humanize-time 284.22 KB 284.2 KB
eo-icon 123.77 KB 123.77 KB 🟰
eo-icon-select 265.91 KB 265.92 KB
eo-iframe 78.8 KB 78.79 KB
eo-illustration-message 139.54 KB 139.54 KB 🟰
eo-image 148.43 KB 148.43 KB 🟰
eo-img-icon 123.77 KB 123.77 KB 🟰
eo-info-card-item 286.92 KB 286.89 KB
eo-input 142.47 KB 142.48 KB
eo-launchpad-button 306.02 KB 306.05 KB
eo-launchpad-button-v2 315.94 KB 315.95 KB
eo-launchpad-quick-access 303.89 KB 303.87 KB
eo-launchpad-recent-visits 302.68 KB 302.72 KB
eo-link 267.91 KB 267.91 KB 🟰
eo-loading-container 144.97 KB 144.96 KB
eo-loading-step 165.63 KB 165.62 KB
eo-main-view 95.98 KB 95.97 KB
eo-markdown-display 140.58 KB 140.58 KB 🟰
eo-markdown-editor 408.24 KB 408.21 KB
eo-menu 78.36 KB 78.35 KB
eo-menu-group 78.29 KB 78.29 KB 🟰
eo-menu-item 144.8 KB 144.79 KB
eo-menu-item-sub-menu 145.25 KB 145.24 KB
eo-message-listener 78.52 KB 78.51 KB
eo-micro-view 87.96 KB 87.95 KB
eo-mini-actions 279.72 KB 279.72 KB 🟰
eo-mini-line-chart 81.65 KB 81.65 KB 🟰
eo-modal 165.2 KB 165.19 KB
eo-narrow-view 75.11 KB 75.1 KB
eo-nav-menu 328.56 KB 328.54 KB
eo-next-table 524.18 KB 524.2 KB
eo-page-title 78.5 KB 78.5 KB 🟰
eo-page-view 75.11 KB 75.1 KB
eo-pagination 305.78 KB 305.8 KB
eo-popover 195.24 KB 195.26 KB
eo-popup 148.04 KB 148.06 KB
eo-radio 205.26 KB 151.03 KB 🟢 -54.23 KB
eo-resizable-box 68.75 KB 68.75 KB 🟰
eo-search 146.51 KB 200.77 KB 🔺 +54.26 KB
eo-search-bar 66.9 KB 66.89 KB
eo-search-launchpad 306.54 KB 306.54 KB 🟰
eo-select 345.83 KB 345.85 KB
eo-sidebar 312.59 KB 312.59 KB 🟰
eo-sidebar-menu 293.63 KB 293.64 KB
eo-sidebar-menu-group 293.64 KB 293.61 KB
eo-sidebar-menu-item 278.46 KB 278.46 KB 🟰
eo-sidebar-menu-submenu 293.6 KB 293.63 KB
eo-sidebar-sub-menu 284.45 KB 284.45 KB 🟰
eo-spin 67.22 KB 67.22 KB 🟰
eo-statistics-card 139.56 KB 139.56 KB 🟰
eo-submit-buttons 230.38 KB 230.38 KB 🟰
eo-svg-icon 123.77 KB 123.77 KB 🟰
eo-switch 202.22 KB 202.24 KB
eo-tab-group 72.1 KB 72.1 KB 🟰
eo-tab-item 159.96 KB 159.95 KB
eo-tab-list 159.96 KB 159.95 KB
eo-table 381.2 KB 381.24 KB
eo-tag 146.74 KB 146.73 KB
eo-tag-list 148.84 KB 148.83 KB
eo-text 352.33 KB 352.34 KB
eo-text-tooltip 139.31 KB 139.31 KB 🟰
eo-textarea 85.51 KB 85.52 KB
eo-time-picker 214.49 KB 214.48 KB
eo-time-range-picker 337.97 KB 283.71 KB 🟢 -54.26 KB
eo-tooltip 267.95 KB 267.91 KB
eo-tree 138.42 KB 138.42 KB 🟰
eo-tree-select 282.48 KB 282.5 KB
eo-upload-file 357.44 KB 357.45 KB
eo-upload-image 247.07 KB 247.08 KB
eo-user-or-user-group-select 367.85 KB 367.86 KB
eo-workbench-layout 352.51 KB 352.52 KB
eo-workbench-layout-v2 354.01 KB 354.17 KB 🔼 +0.16 KB
form.dynamic-form-item 245.9 KB 245.91 KB
form.general-checkbox 212.36 KB 158.13 KB 🟢 -54.23 KB
form.general-form 69.83 KB 69.85 KB
form.general-form-item 76.3 KB 76.32 KB
form.general-input 142.47 KB 196.73 KB 🔺 +54.26 KB
form.general-radio 205.26 KB 205.28 KB
form.general-search 146.51 KB 200.77 KB 🔺 +54.26 KB
form.general-select 345.81 KB 345.82 KB
form.general-switch 202.22 KB 147.99 KB 🟢 -54.23 KB
form.general-textarea 85.51 KB 85.52 KB
form.icon-select 265.91 KB 265.92 KB
form.submit-buttons 230.38 KB 230.38 KB 🟰
form.upload-image 247.07 KB 247.08 KB
icons.antd-icon 123.77 KB 123.77 KB 🟰
icons.easyops-icon 123.77 KB 123.77 KB 🟰
icons.fa-icon 123.77 KB 123.77 KB 🟰
icons.general-icon 123.77 KB 123.77 KB 🟰
icons.get-antd-icons 123.77 KB 123.77 KB 🟰
icons.get-easyops-icons 123.77 KB 123.77 KB 🟰
icons.get-fa-icons 123.77 KB 123.77 KB 🟰
icons.get-libs 123.77 KB 123.77 KB 🟰
icons.search-icons 123.77 KB 123.77 KB 🟰
illustrations.error-message 139.54 KB 139.54 KB 🟰
illustrations.get-illustration 9.24 KB 9.24 KB 🟰
illustrations.get-illustrations-by-category 6.03 KB 6.03 KB 🟰
illustrations.loading-transition 66.55 KB 66.55 KB 🟰
illustrations.translate-illustration-config 9.24 KB 9.24 KB 🟰
inject.visual-builder-preview-agent 56.26 KB 56.26 KB 🟰
markdown.markdown-editor 408.21 KB 408.21 KB 🟰
nav.app-bar-wrapper 68 KB 68 KB 🟰
nav.easyops-navbar-alerts 280.94 KB 280.92 KB
nav.get-menu-config-options 7.85 KB 7.85 KB 🟰
nav.get-menu-config-tree 8.35 KB 8.35 KB 🟰
nav.launchpad-config 312.61 KB 312.66 KB
nav.nav-logo 277.48 KB 277.48 KB 🟰
nav.poll-announce 288.07 KB 288.04 KB
presentational.code-display 352.69 KB 352.7 KB
presentational.general-alert 139.7 KB 139.7 KB 🟰
presentational.general-descriptions 188.27 KB 188.25 KB
presentational.humanize-time 284.22 KB 284.21 KB
recent-history.clear-history 28.99 KB 28.99 KB 🟰
recent-history.get-all-history 28.99 KB 28.99 KB 🟰
recent-history.push-history 28.99 KB 28.99 KB 🟰
recent-history.recent-visit 311.22 KB 311.21 KB
sl-alert 115.03 KB 115.03 KB 🟰
sl-animated-image 114.05 KB 114.05 KB 🟰
sl-animation 117.4 KB 117.4 KB 🟰
sl-avatar 114.04 KB 114.04 KB 🟰
sl-badge 114.04 KB 114.04 KB 🟰
sl-breadcrumb 114.83 KB 114.83 KB 🟰
sl-breadcrumb-item 114.83 KB 114.83 KB 🟰
sl-button 114.82 KB 114.82 KB 🟰
sl-button-group 114.05 KB 114.05 KB 🟰
sl-card 114.04 KB 114.04 KB 🟰
sl-carousel 114.83 KB 114.83 KB 🟰
sl-carousel-item 114.83 KB 114.83 KB 🟰
sl-checkbox 114.04 KB 114.04 KB 🟰
sl-color-picker 120.09 KB 120.09 KB 🟰
sl-details 114.82 KB 114.82 KB 🟰
sl-dialog 115.03 KB 115.03 KB 🟰
sl-divider 114.04 KB 114.04 KB 🟰
sl-drawer 114.83 KB 114.83 KB 🟰
sl-dropdown 115.03 KB 115.03 KB 🟰
sl-format-bytes 114.83 KB 114.83 KB 🟰
sl-format-date 114.82 KB 114.82 KB 🟰
sl-format-number 114.82 KB 114.82 KB 🟰
sl-icon 114.04 KB 114.04 KB 🟰
sl-icon-button 114.05 KB 114.05 KB 🟰
sl-image-comparer 114.83 KB 114.83 KB 🟰
sl-input 114.82 KB 114.82 KB 🟰
sl-menu 115.05 KB 115.03 KB
sl-menu-item 115.03 KB 115.03 KB 🟰
sl-menu-label 114.05 KB 114.05 KB 🟰
sl-mutation-observer 114.05 KB 114.05 KB 🟰
sl-option 114.83 KB 114.83 KB 🟰
sl-popup 115.03 KB 115.03 KB 🟰
sl-progress-bar 114.83 KB 114.83 KB 🟰
sl-progress-ring 114.83 KB 114.83 KB 🟰
sl-qr-code 118.72 KB 118.72 KB 🟰
sl-radio 114.04 KB 114.04 KB 🟰
sl-radio-button 114.05 KB 114.05 KB 🟰
sl-radio-group 114.05 KB 114.07 KB
sl-range 114.83 KB 114.83 KB 🟰
sl-rating 114.83 KB 114.83 KB 🟰
sl-relative-time 114.83 KB 114.83 KB 🟰
sl-resize-observer 114.05 KB 114.05 KB 🟰
sl-select 115.03 KB 115.03 KB 🟰
sl-skeleton 114.05 KB 114.05 KB 🟰
sl-spinner 114.83 KB 114.83 KB 🟰
sl-split-panel 114.83 KB 114.83 KB 🟰
sl-switch 114.04 KB 114.04 KB 🟰
sl-tab 114.83 KB 114.83 KB 🟰
sl-tab-group 114.83 KB 114.83 KB 🟰
sl-tab-panel 114.83 KB 114.83 KB 🟰
sl-tag 114.82 KB 114.82 KB 🟰
sl-textarea 114.04 KB 114.07 KB
sl-tooltip 115.03 KB 115.03 KB 🟰
sl-tree 114.83 KB 114.83 KB 🟰
sl-tree-item 114.83 KB 114.83 KB 🟰
sl-visually-hidden 114.05 KB 114.05 KB 🟰
visual-builder.batch-update-raw-data-generated-view 7.6 KB 7.61 KB
visual-builder.chat-conversation 337.59 KB 337.6 KB
visual-builder.chat-preview 69.56 KB 69.57 KB
visual-builder.check-editor-by-name 7.2 KB 7.22 KB
visual-builder.contract-select 170.92 KB 169.23 KB 🟢 -1.69 KB
visual-builder.generate-snippets-context-menu 290.42 KB 290.43 KB
visual-builder.get-config-by-data-for-ai 8.97 KB 8.98 KB
visual-builder.get-data-deps 7.21 KB 7.23 KB
visual-builder.get-dependency-tree 7.58 KB 7.6 KB
visual-builder.get-raw-data-system-prompts 11.81 KB 11.83 KB
visual-builder.inject-chat-preview-agent 8.16 KB 8.17 KB
visual-builder.page-arch-node 280.78 KB 280.78 KB 🟰
visual-builder.parse-path 8.84 KB 8.85 KB
visual-builder.pre-generated-config 79.94 KB 79.96 KB
visual-builder.pre-generated-config-preview 75.29 KB 75.31 KB
visual-builder.pre-generated-container 69.49 KB 69.5 KB
visual-builder.pre-generated-preview 69.54 KB 69.55 KB
visual-builder.pre-generated-table-view 67.13 KB 67.15 KB
visual-builder.property-editor 1,438.37 KB 1,437.89 KB ↓ -0.48 KB
visual-builder.raw-data-preview 78.62 KB 78.63 KB
visual-builder.raw-metric-preview 71.43 KB 71.45 KB
visual-builder.workbench-action 279.58 KB 279.55 KB
visual-builder.workbench-action-list 284.95 KB 284.96 KB
visual-builder.workbench-history-action 300.3 KB 300.28 KB
visual-builder.workbench-pane 135.35 KB 135.36 KB
visual-builder.workbench-sidebar 68.02 KB 68.03 KB
visual-builder.workbench-tree 285.03 KB 285.02 KB
vs.code-editor 1,146.33 KB 1,145.92 KB ↓ -0.41 KB
Critical details for brick ai.chat-view
Name Prev Now Diff
ai/dist/chunks/1599.59abead2.js 253.92 KB 253.9 KB
ai/dist/chunks/3497.74a2d283.js 21.58 KB Del
ai/dist/chunks/3497.7afa0866.js 21.58 KB New
ai/dist/chunks/4837.fbea0c91.js 2.5 KB Del
ai/dist/index.b563beeb.js 5.33 KB New
ai/dist/index.d6964381.js 5.33 KB Del
basic/dist/index.13ea8664.js 8.01 KB New
basic/dist/index.f65e1ed9.js 8.01 KB Del
containers/dist/index.2da162fa.js 5.83 KB New
containers/dist/index.bc11d43b.js 5.83 KB Del
form/dist/chunks/149.9f425d9e.js 8.67 KB New
form/dist/chunks/149.e093051b.js 8.66 KB Del
form/dist/chunks/react.b86c57e9.js 55.06 KB New
form/dist/index.2ae50082.js 6.12 KB New
form/dist/index.c233b30f.js 6.1 KB Del
icons/dist/chunks/423.8d5459a0.js 60.52 KB Del
icons/dist/chunks/423.9f463dbc.js 60.52 KB New
icons/dist/index.21eda5cd.js 5.19 KB New
icons/dist/index.ad968fab.js 5.19 KB Del
shoelace/dist/index.3ee752bd.js 3.69 KB New
shoelace/dist/index.e1166114.js 3.69 KB Del
Critical details for brick eo-date-picker
Name Prev Now Diff
form/dist/chunks/1045.7ad43dc1.js 2.52 KB New
form/dist/chunks/149.9f425d9e.js 8.67 KB New
form/dist/chunks/149.e093051b.js 8.66 KB Del
form/dist/chunks/845.f6378665.js 83 KB 82.97 KB
form/dist/chunks/8548.3d64fb28.js 0.83 KB New
form/dist/chunks/eo-date-picker.55751b79.js 7.23 KB Del
form/dist/chunks/eo-date-picker.e89ab216.js 7.23 KB New
form/dist/chunks/react.88ebe7b7.js 55.05 KB Del
form/dist/chunks/react.b86c57e9.js 55.06 KB New
form/dist/index.2ae50082.js 6.12 KB New
form/dist/index.c233b30f.js 6.1 KB Del
icons/dist/chunks/114.6546c4b7.js 1.59 KB Del
icons/dist/chunks/144.ed687799.js 49.96 KB Del
icons/dist/chunks/41.48c2e71e.js 3.53 KB Del
icons/dist/chunks/423.8d5459a0.js 60.52 KB Del
icons/dist/chunks/423.9f463dbc.js 60.52 KB New
icons/dist/chunks/45.e9943c86.js 2.52 KB Del
icons/dist/index.21eda5cd.js 5.19 KB New
icons/dist/index.ad968fab.js 5.19 KB Del
Critical details for brick eo-radio
Name Prev Now Diff
form/dist/chunks/1045.7ad43dc1.js 2.52 KB New
form/dist/chunks/149.9f425d9e.js 8.67 KB New
form/dist/chunks/149.e093051b.js 8.66 KB Del
form/dist/chunks/8548.3d64fb28.js 0.83 KB New
form/dist/chunks/eo-radio.73b27079.js 8.55 KB New
form/dist/chunks/eo-radio.98ded542.js 8.55 KB Del
form/dist/chunks/react.88ebe7b7.js 55.05 KB Del
form/dist/chunks/react.b86c57e9.js 55.06 KB New
form/dist/index.2ae50082.js 6.12 KB New
form/dist/index.c233b30f.js 6.1 KB Del
icons/dist/chunks/114.6546c4b7.js 1.59 KB Del
icons/dist/chunks/144.ed687799.js 49.96 KB Del
icons/dist/chunks/41.48c2e71e.js 3.53 KB Del
icons/dist/chunks/423.8d5459a0.js 60.52 KB Del
icons/dist/chunks/423.9f463dbc.js 60.52 KB New
icons/dist/chunks/45.e9943c86.js 2.52 KB Del
icons/dist/index.21eda5cd.js 5.19 KB New
icons/dist/index.ad968fab.js 5.19 KB Del
Critical details for brick eo-search
Name Prev Now Diff
form/dist/chunks/1045.7ad43dc1.js 2.52 KB Del
form/dist/chunks/149.9f425d9e.js 8.67 KB New
form/dist/chunks/149.e093051b.js 8.66 KB Del
form/dist/chunks/8548.3d64fb28.js 0.83 KB Del
form/dist/chunks/react.88ebe7b7.js 55.05 KB Del
form/dist/chunks/react.b86c57e9.js 55.06 KB New
form/dist/index.2ae50082.js 6.12 KB New
form/dist/index.c233b30f.js 6.1 KB Del
icons/dist/chunks/114.6546c4b7.js 1.59 KB New
icons/dist/chunks/144.ed687799.js 49.96 KB New
icons/dist/chunks/41.48c2e71e.js 3.53 KB New
icons/dist/chunks/423.8d5459a0.js 60.52 KB Del
icons/dist/chunks/423.9f463dbc.js 60.52 KB New
icons/dist/chunks/45.e9943c86.js 2.52 KB New
icons/dist/index.21eda5cd.js 5.19 KB New
icons/dist/index.ad968fab.js 5.19 KB Del
Critical details for brick eo-time-range-picker
Name Prev Now Diff
form/dist/chunks/1045.7ad43dc1.js 2.52 KB New
form/dist/chunks/149.9f425d9e.js 8.67 KB New
form/dist/chunks/149.e093051b.js 8.66 KB Del
form/dist/chunks/845.f6378665.js 83 KB 82.97 KB
form/dist/chunks/8548.3d64fb28.js 0.83 KB New
form/dist/chunks/eo-time-range-picker.586762ea.js 6.43 KB New
form/dist/chunks/eo-time-range-picker.65c893f3.js 6.43 KB Del
form/dist/chunks/react.88ebe7b7.js 55.05 KB Del
form/dist/chunks/react.b86c57e9.js 55.06 KB New
form/dist/index.2ae50082.js 6.12 KB New
form/dist/index.c233b30f.js 6.1 KB Del
icons/dist/chunks/114.6546c4b7.js 1.59 KB Del
icons/dist/chunks/144.ed687799.js 49.96 KB Del
icons/dist/chunks/41.48c2e71e.js 3.53 KB Del
icons/dist/chunks/423.8d5459a0.js 60.52 KB Del
icons/dist/chunks/423.9f463dbc.js 60.52 KB New
icons/dist/chunks/45.e9943c86.js 2.52 KB Del
icons/dist/index.21eda5cd.js 5.19 KB New
icons/dist/index.ad968fab.js 5.19 KB Del
Critical details for brick form.general-checkbox
Name Prev Now Diff
form/dist/chunks/1045.7ad43dc1.js 2.52 KB New
form/dist/chunks/149.9f425d9e.js 8.67 KB New
form/dist/chunks/149.e093051b.js 8.66 KB Del
form/dist/chunks/8548.3d64fb28.js 0.83 KB New
form/dist/chunks/react.88ebe7b7.js 55.05 KB Del
form/dist/chunks/react.b86c57e9.js 55.06 KB New
form/dist/index.2ae50082.js 6.12 KB New
form/dist/index.c233b30f.js 6.1 KB Del
icons/dist/chunks/114.6546c4b7.js 1.59 KB Del
icons/dist/chunks/144.ed687799.js 49.96 KB Del
icons/dist/chunks/41.48c2e71e.js 3.53 KB Del
icons/dist/chunks/423.8d5459a0.js 60.52 KB Del
icons/dist/chunks/423.9f463dbc.js 60.52 KB New
icons/dist/chunks/45.e9943c86.js 2.52 KB Del
icons/dist/index.21eda5cd.js 5.19 KB New
icons/dist/index.ad968fab.js 5.19 KB Del
Critical details for brick form.general-input
Name Prev Now Diff
form/dist/chunks/1045.7ad43dc1.js 2.52 KB Del
form/dist/chunks/149.9f425d9e.js 8.67 KB New
form/dist/chunks/149.e093051b.js 8.66 KB Del
form/dist/chunks/8548.3d64fb28.js 0.83 KB Del
form/dist/chunks/react.88ebe7b7.js 55.05 KB Del
form/dist/chunks/react.b86c57e9.js 55.06 KB New
form/dist/index.2ae50082.js 6.12 KB New
form/dist/index.c233b30f.js 6.1 KB Del
icons/dist/chunks/114.6546c4b7.js 1.59 KB New
icons/dist/chunks/144.ed687799.js 49.96 KB New
icons/dist/chunks/41.48c2e71e.js 3.53 KB New
icons/dist/chunks/423.8d5459a0.js 60.52 KB Del
icons/dist/chunks/423.9f463dbc.js 60.52 KB New
icons/dist/chunks/45.e9943c86.js 2.52 KB New
icons/dist/index.21eda5cd.js 5.19 KB New
icons/dist/index.ad968fab.js 5.19 KB Del
Critical details for brick form.general-search
Name Prev Now Diff
form/dist/chunks/1045.7ad43dc1.js 2.52 KB Del
form/dist/chunks/149.9f425d9e.js 8.67 KB New
form/dist/chunks/149.e093051b.js 8.66 KB Del
form/dist/chunks/8548.3d64fb28.js 0.83 KB Del
form/dist/chunks/react.88ebe7b7.js 55.05 KB Del
form/dist/chunks/react.b86c57e9.js 55.06 KB New
form/dist/index.2ae50082.js 6.12 KB New
form/dist/index.c233b30f.js 6.1 KB Del
icons/dist/chunks/114.6546c4b7.js 1.59 KB New
icons/dist/chunks/144.ed687799.js 49.96 KB New
icons/dist/chunks/41.48c2e71e.js 3.53 KB New
icons/dist/chunks/423.8d5459a0.js 60.52 KB Del
icons/dist/chunks/423.9f463dbc.js 60.52 KB New
icons/dist/chunks/45.e9943c86.js 2.52 KB New
icons/dist/index.21eda5cd.js 5.19 KB New
icons/dist/index.ad968fab.js 5.19 KB Del
Critical details for brick form.general-switch
Name Prev Now Diff
form/dist/chunks/1045.7ad43dc1.js 2.52 KB New
form/dist/chunks/149.9f425d9e.js 8.67 KB New
form/dist/chunks/149.e093051b.js 8.66 KB Del
form/dist/chunks/8548.3d64fb28.js 0.83 KB New
form/dist/chunks/react.88ebe7b7.js 55.05 KB Del
form/dist/chunks/react.b86c57e9.js 55.06 KB New
form/dist/index.2ae50082.js 6.12 KB New
form/dist/index.c233b30f.js 6.1 KB Del
icons/dist/chunks/114.6546c4b7.js 1.59 KB Del
icons/dist/chunks/144.ed687799.js 49.96 KB Del
icons/dist/chunks/41.48c2e71e.js 3.53 KB Del
icons/dist/chunks/423.8d5459a0.js 60.52 KB Del
icons/dist/chunks/423.9f463dbc.js 60.52 KB New
icons/dist/chunks/45.e9943c86.js 2.52 KB Del
icons/dist/index.21eda5cd.js 5.19 KB New
icons/dist/index.ad968fab.js 5.19 KB Del
Critical details for brick visual-builder.contract-select
Name Prev Now Diff
form/dist/chunks/1045.7ad43dc1.js 2.52 KB New
form/dist/chunks/149.9f425d9e.js 8.67 KB New
form/dist/chunks/149.e093051b.js 8.66 KB Del
form/dist/chunks/8548.3d64fb28.js 0.83 KB New
form/dist/chunks/react.b86c57e9.js 55.06 KB New
form/dist/index.2ae50082.js 6.12 KB New
form/dist/index.c233b30f.js 6.1 KB Del
icons/dist/chunks/423.8d5459a0.js 60.52 KB Del
icons/dist/chunks/423.9f463dbc.js 60.52 KB New
icons/dist/index.21eda5cd.js 5.19 KB New
icons/dist/index.ad968fab.js 5.19 KB Del
visual-builder/dist/chunks/1045.da75cb56.js 2.53 KB Del
visual-builder/dist/chunks/114.d6772a35.js 1.6 KB Del
visual-builder/dist/chunks/3144.1e4265cb.js 49.97 KB Del
visual-builder/dist/chunks/4041.a9289b9a.js 3.54 KB Del
visual-builder/dist/chunks/4837.ecf66345.js 2.5 KB Del
visual-builder/dist/chunks/contract-select.1478831f.js 5.92 KB Del
visual-builder/dist/chunks/contract-select.e3332bbc.js 5.92 KB New
visual-builder/dist/index.3fdb56b6.js 6.58 KB Del
visual-builder/dist/index.ce3debce.js 6.6 KB New

@renovate renovate bot force-pushed the renovate/node-20.x branch from 7023e90 to 066c94b Compare March 13, 2025 15:10
@renovate renovate bot changed the title chore(deps): Update Node.js to v20.18.3 chore(deps): Update Node.js to v20.19.0 Mar 13, 2025
@github-actions github-actions bot temporarily deployed to pull request March 13, 2025 15:13 Inactive
@renovate renovate bot force-pushed the renovate/node-20.x branch from 066c94b to f25ccde Compare April 22, 2025 11:05
@renovate renovate bot changed the title chore(deps): Update Node.js to v20.19.0 chore(deps): Update Node.js to v20.19.1 Apr 22, 2025
@github-actions github-actions bot temporarily deployed to pull request April 22, 2025 11:10 Inactive
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.

0 participants