Skip to content
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 Node.js to v22 #1402

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 12, 2024

This PR contains the following updates:

Package Update Change
node (source) major 20 -> 22.13.1

Release Notes

nodejs/node (node)

v22.13.1

Compare Source

v22.13.0

Compare Source

v22.12.0

Compare Source

v22.11.0

Compare Source

v22.10.0: 2024-10-16, Version 22.10.0 (Current), @​aduh95

Compare Source

Notable Changes
New "module-sync" exports condition

This release introduces a "module-sync" exports condition that's enabled when
require(esm) is enabled, so packages can supply a synchronous ES module to the
Node.js module loader, no matter if it's being required or imported. This is
similar to the "module" condition that bundlers have been using to support
require(esm) in Node.js, and allows dual-package authors to opt into ESM-first
only on newer versions of Node.js that supports require(esm) to avoid the
dual-package hazard.

{
  "type": "module",
  "exports": {
    "node": {
      // On new version of Node.js, both require() and import get
      // the ESM version
      "module-sync": "./index.js",
      // On older version of Node.js, where "module-sync" and require(esm) are
      // not supported, use the CJS version to avoid dual-package hazard.
      // When package authors think it's time to drop support for older versions of
      // Node.js, they can remove the exports conditions and just use "main": "index.js".
      "default": "./dist/index.cjs"
    },
    // On any other environment, use the ESM version.
    "default": "./index.js"
  }
}

Or if the package is only meant to be run on Node.js and wants to fallback to
CJS on older versions that don't have require(esm):

{
  "type": "module",
  "exports": {
    // On new version of Node.js, both require() and import get the ESM version
    "module-sync": "./index.js",
    // On older version of Node.js, where "module-sync" and require(esm) are
    // not supported, use the CJS version to avoid dual-package hazard.
    // When package authors think it's time to drop support for older versions of
    // Node.js, they can remove the exports conditions and just use "main": "index.js".
    "default": "./dist/index.cjs"
  }
}

For package authors: this only serves as a feature-detection mechanism for
packages that wish to support both CJS and ESM users during the period when some
active Node.js LTS versions support require(esm) while some older ones don't.
When all active Node.js LTS lines support require(esm), packages can simplify
their distributions by bumping the major version, dropping their CJS exports,
and removing the module-sync exports condition (with only main or default
targetting the ESM exports). If the package needs to support both bundlers and
being run unbundled on Node.js during the transition period, use both
module-sync and module and point them to the same ESM file. If the package
already doesn't want to support older versions of Node.js that doesn't support
require(esm), don't use this export condition.

For bundlers/tools: they should avoid implementing this stop-gap condition.
Most existing bundlers implement the de-facto bundler standard
module
exports condition, and that should be enough to support users who want to bundle
ESM from CJS consumers. Users who want both bundlers and Node.js to recognize
the ESM exports can use both module/module-sync conditions during the
transition period, and can drop module-sync+module when they no longer need
to support older versions of Node.js. If tools do want to support this
condition, it's recommended to make the resolution rules in the graph pointed by
this condition match the Node.js native ESM rules to avoid divergence.

We ended up implementing a condition with a different name instead of reusing
"module", because existing code in the ecosystem using the "module"
condition sometimes also expect the module resolution for these ESM files to
work in CJS style, which is supported by bundlers, but the native Node.js loader
has intentionally made ESM resolution different from CJS resolution (e.g.
forbidding import './noext' or import './directory'), so it would be
breaking to implement a "module" condition without implementing the forbidden
ESM resolution rules. For now, this just implements a new condition as
semver-minor so it can be backported to older LTS.

Contributed by Joyee Cheung in #​54648.

node --run is now stable

This CLI flag runs a specified command from a package.json's "scripts" object.

For the following package.json:

{
  "scripts": {
    "test": "node --test-reporter junit --test ./test"
  }
}

You can run node --run test and that would start the test suite.

Contributed by Yagiz Nizipli in #​53763.

Other notable changes
  • [f0b441230a] - (SEMVER-MINOR) crypto: add KeyObject.prototype.toCryptoKey (Filip Skokan) #​55262
  • [349d2ed07b] - (SEMVER-MINOR) crypto: add Date fields for validTo and validFrom (Andrew Moon) #​54159
  • [bebc95ed58] - doc: add abmusse to collaborators (Abdirahim Musse) #​55086
  • [914db60159] - (SEMVER-MINOR) http2: expose nghttp2_option_set_stream_reset_rate_limit as an option (Maël Nison) #​54875
  • [f7c3b03759] - (SEMVER-MINOR) lib: propagate aborted state to dependent signals before firing events (jazelly) #​54826
  • [32261fc98a] - (SEMVER-MINOR) module: support loading entrypoint as url (RedYetiDev) #​54933
  • [06957ff355] - (SEMVER-MINOR) module: implement flushCompileCache() (Joyee Cheung) #​54971
  • [2dcf70c347] - (SEMVER-MINOR) module: throw when invalid argument is passed to enableCompileCache() (Joyee Cheung) #​54971
  • [f9b19d7c44] - (SEMVER-MINOR) module: write compile cache to temporary file and then rename it (Joyee Cheung) #​54971
  • [e95163b170] - (SEMVER-MINOR) process: add process.features.require_module (Joyee Cheung) #​55241
  • [4050f68e5d] - (SEMVER-MINOR) process: add process.features.typescript (Aviv Keller) #​54295
  • [86f7cb802d] - (SEMVER-MINOR) test_runner: support custom arguments in run() (Aviv Keller) #​55126
  • [b62f2f8259] - (SEMVER-MINOR) test_runner: add 'test:summary' event (Colin Ihrig) #​54851
  • [d7c708aec5] - (SEMVER-MINOR) test_runner: add support for coverage via run() (Chemi Atlow) #​53937
  • [5fda4a1498] - (SEMVER-MINOR) worker: add markAsUncloneable api (Jason Zhang) #​55234
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 Nov 12, 2024

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.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 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 generate docstrings to generate docstrings for this PR. (Beta)
  • @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

codecov bot commented Nov 12, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 90.47%. Comparing base (e70ef83) to head (48acc2e).

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##           master    #1402   +/-   ##
=======================================
  Coverage   90.47%   90.47%           
=======================================
  Files         124      124           
  Lines        2762     2762           
  Branches      379      379           
=======================================
  Hits         2499     2499           
  Misses        169      169           
  Partials       94       94           

Copy link

github-actions bot commented Nov 12, 2024

@github-actions github-actions bot temporarily deployed to pull request November 12, 2024 03:01 Inactive
Copy link

github-actions bot commented Nov 12, 2024

📐🤏 Size check result (e70ef83...8a743d0):

See full diff

Load all bricks together

Name Prev Now Diff
All bricks 4,526.68 KB 4,526.78 KB 🔼 +0.1 KB

Critical changes: None.

See full changes
Name Prev Now Diff
<core> 311.41 KB 311.36 KB
<react> 53.61 KB 53.61 KB 🟰
advanced 517.84 KB 517.8 KB
ai 287.75 KB 287.8 KB
api-market 10.56 KB 10.56 KB 🟰
basic 183.29 KB 183.29 KB 🟰
containers 95.05 KB 95.05 KB 🟰
data-view 639.68 KB 639.74 KB
diagram 177.32 KB 177.36 KB
form 329.53 KB 329.52 KB
form-platform 12.57 KB 12.57 KB 🟰
icons 15.12 KB 15.12 KB 🟰
illustrations 17.31 KB 17.31 KB 🟰
inject 56.22 KB 56.22 KB 🟰
markdown 248.97 KB 248.97 KB 🟰
mini-chart 10.61 KB 10.61 KB 🟰
nav 121.37 KB 121.37 KB 🟰
presentational 134.37 KB 134.37 KB 🟰
recent-history 32.53 KB 32.53 KB 🟰
shoelace 325.85 KB 325.85 KB 🟰
visual-builder 418.34 KB 418.37 KB
vs 838.78 KB 838.76 KB

Load bricks by each package

Critical changes: None.

See full changes
Name Prev Now Diff
advanced 750.41 KB 750.33 KB
ai 500.16 KB 500.17 KB
api-market 206.79 KB 206.79 KB 🟰
basic 338.88 KB 338.88 KB 🟰
containers 233.47 KB 233.47 KB 🟰
data-view 735.83 KB 735.91 KB
diagram 248 KB 248 KB 🟰
form 499.83 KB 499.83 KB 🟰
form-platform 176.9 KB 176.9 KB 🟰
icons 72.83 KB 72.83 KB 🟰
illustrations 91.48 KB 91.48 KB 🟰
inject 56.22 KB 56.22 KB 🟰
markdown 337.89 KB 337.92 KB
mini-chart 76.29 KB 76.29 KB 🟰
nav 397.23 KB 397.23 KB 🟰
presentational 345.67 KB 345.67 KB 🟰
recent-history 169.5 KB 169.5 KB 🟰
shoelace 325.85 KB 325.85 KB 🟰
visual-builder 1,510.24 KB 1,510.19 KB
vs 1,013.98 KB 1,013.87 KB ↓ -0.11 KB
widget-editors 0 KB 0 KB 🟰

Load by each brick

Critical changes: None.

See full changes
Name Prev Now Diff
advanced.capture-snapshot 52.37 KB 52.37 KB 🟰
advanced.general-cascader 216.18 KB 216.18 KB 🟰
advanced.general-table 331.8 KB 331.8 KB 🟰
advanced.pdf-viewer 199.19 KB 199.18 KB
ai.chat-agent 67.81 KB 67.81 KB 🟰
ai.chat-view 495.38 KB 495.38 KB 🟰
api-market.apis-directory-tree 206.79 KB 206.79 KB 🟰
basic.active-element-blur 8.69 KB 8.69 KB 🟰
basic.change-language 8.68 KB 8.68 KB 🟰
basic.copy-to-clipboard 8.85 KB 8.85 KB 🟰
basic.dropdown-button 154.78 KB 154.78 KB 🟰
basic.general-button 128.46 KB 128.46 KB 🟰
basic.general-image 88.66 KB 88.66 KB 🟰
basic.general-link 123.14 KB 123.14 KB 🟰
basic.general-menu 68.98 KB 68.98 KB 🟰
basic.general-menu-item 83.53 KB 83.53 KB 🟰
basic.general-popover 102.8 KB 102.8 KB 🟰
basic.general-tag 85.6 KB 85.6 KB 🟰
basic.general-tag-list 89.99 KB 89.99 KB 🟰
basic.general-text 161.44 KB 161.44 KB 🟰
basic.get-language 8.67 KB 8.67 KB 🟰
basic.home-redirect 14.18 KB 14.18 KB 🟰
basic.http-proxy-request 8.76 KB 8.76 KB 🟰
basic.http-request 8.68 KB 8.68 KB 🟰
basic.lock-body-scroll 10.42 KB 10.42 KB 🟰
basic.set-theme-by-apps 8.69 KB 8.69 KB 🟰
basic.set-timeout 8.69 KB 8.69 KB 🟰
basic.show-dialog 180.82 KB 180.82 KB 🟰
basic.show-notification 149.15 KB 149.15 KB 🟰
basic.show-watermark 10.43 KB 10.43 KB 🟰
basic.v3-widget-mate 8.66 KB 8.66 KB 🟰
containers.easy-view 67.12 KB 67.12 KB 🟰
containers.flex-layout 66.86 KB 66.86 KB 🟰
containers.general-card 140.08 KB 140.08 KB 🟰
containers.general-category 67.48 KB 67.48 KB 🟰
containers.general-drawer 93.39 KB 93.39 KB 🟰
containers.general-modal 142.1 KB 142.1 KB 🟰
containers.grid-layout 67.95 KB 67.95 KB 🟰
containers.micro-view 78.56 KB 78.56 KB 🟰
containers.search-bar 66.98 KB 66.98 KB 🟰
containers.tab-group 72.14 KB 72.14 KB 🟰
containers.tab-item 98.58 KB 98.58 KB 🟰
containers.tab-list 98.58 KB 98.58 KB 🟰
data-view.app-wall-card-item 70.07 KB 70.07 KB 🟰
data-view.app-wall-relation-line 69.76 KB 69.76 KB 🟰
data-view.app-wall-system-card 84.14 KB 84.18 KB
data-view.basic-index-group 69.35 KB 69.35 KB 🟰
data-view.battery-chart 70.08 KB 70.08 KB 🟰
data-view.brick-notification 83.33 KB 83.33 KB 🟰
data-view.bubbles-indicator 108.09 KB 108.09 KB 🟰
data-view.cabinet-app-layer 69.75 KB 69.75 KB 🟰
data-view.cabinet-button 69.36 KB 69.36 KB 🟰
data-view.cabinet-container 79.63 KB 79.63 KB 🟰
data-view.cabinet-graph 93.8 KB 93.8 KB 🟰
data-view.cabinet-node 70.16 KB 70.16 KB 🟰
data-view.cabinet-thumbnail 83.45 KB 83.45 KB 🟰
data-view.china-map 95.57 KB 95.57 KB 🟰
data-view.china-map-chart 376.37 KB 376.3 KB
data-view.complex-search 95.86 KB 95.86 KB 🟰
data-view.crystal-ball-indicator 102.47 KB 102.47 KB 🟰
data-view.data-display-flipper 69.3 KB 69.3 KB 🟰
data-view.data-display-flipper-fifth 69.17 KB 69.17 KB 🟰
data-view.data-display-flipper-sixth 69.02 KB 69.02 KB 🟰
data-view.dropdown-menu 85.47 KB 85.47 KB 🟰
data-view.gauge-chart 70.22 KB 70.22 KB 🟰
data-view.gear-background 115.33 KB 115.33 KB 🟰
data-view.globe-with-gear-indicator 153.34 KB 153.34 KB 🟰
data-view.globe-with-halo-indicator 103.47 KB 103.47 KB 🟰
data-view.globe-with-orbit-indicator 103.3 KB 103.3 KB 🟰
data-view.graph-layout-grid 86.54 KB 86.54 KB 🟰
data-view.graph-node 69.22 KB 69.22 KB 🟰
data-view.graph-text 77.69 KB 77.69 KB 🟰
data-view.grid-background 104.56 KB 104.56 KB 🟰
data-view.hi-tech-button 69.99 KB 69.99 KB 🟰
data-view.indicator-card 69.46 KB 69.46 KB 🟰
data-view.lights-component-title 68.9 KB 68.9 KB 🟰
data-view.loading-panel 73.27 KB 73.27 KB 🟰
data-view.modern-style-component-title 69.97 KB 69.97 KB 🟰
data-view.modern-style-page-title 70 KB 70 KB 🟰
data-view.modern-style-treemap 80.55 KB 80.55 KB 🟰
data-view.particle-animation 69.89 KB 69.89 KB 🟰
data-view.progress-bar-list 72.06 KB 72.06 KB 🟰
data-view.radar-chart 70.93 KB 70.93 KB 🟰
data-view.simple-card-item 69.57 KB 69.57 KB 🟰
data-view.tabs-drawer 85.32 KB 85.32 KB 🟰
data-view.tabs-page-title 72.12 KB 72.12 KB 🟰
data-view.tech-mesh-base-view 68.46 KB 68.46 KB 🟰
data-view.title-text 69.65 KB 69.65 KB 🟰
data-view.top-title-bar 80.83 KB 80.83 KB 🟰
diagram.editable-label 67.77 KB 67.77 KB 🟰
diagram.experimental-node 67.22 KB 67.22 KB 🟰
eo-actions 142.08 KB 142.08 KB 🟰
eo-alert 87.57 KB 87.57 KB 🟰
eo-antd-icon 71.66 KB 71.66 KB 🟰
eo-app-bar-wrapper 68.09 KB 68.09 KB 🟰
eo-auto-complete 102.1 KB 102.1 KB 🟰
eo-avatar 106.16 KB 106.16 KB 🟰
eo-avatar-group 104.72 KB 104.72 KB 🟰
eo-banner 86.56 KB 86.56 KB 🟰
eo-breadcrumb 127.41 KB 127.41 KB 🟰
eo-breadcrumb-item 126.97 KB 126.97 KB 🟰
eo-broadcast-channel 69.38 KB 69.38 KB 🟰
eo-button 128.46 KB 128.46 KB 🟰
eo-card 140.08 KB 140.08 KB 🟰
eo-card-item 167.37 KB 167.37 KB 🟰
eo-carousel-text 75.37 KB 75.37 KB 🟰
eo-cascader 216.18 KB 216.18 KB 🟰
eo-category 67.48 KB 67.48 KB 🟰
eo-checkbox 106.34 KB 106.34 KB 🟰
eo-code-display 232.83 KB 232.83 KB 🟰
eo-color-picker 240.86 KB 240.86 KB 🟰
eo-content-layout 66.42 KB 66.42 KB 🟰
eo-context-menu 148.6 KB 148.6 KB 🟰
eo-counter-badge 84.15 KB 84.15 KB 🟰
eo-current-time 86.25 KB 86.25 KB 🟰
eo-date-picker 234.01 KB 234.04 KB
eo-descriptions 163.76 KB 163.76 KB 🟰
eo-diagram 121.45 KB 121.45 KB 🟰
eo-directory 131.97 KB 131.97 KB 🟰
eo-directory-tree 121.04 KB 121.03 KB
eo-directory-tree-internal-node 82.82 KB 82.82 KB 🟰
eo-directory-tree-leaf 82.13 KB 82.13 KB 🟰
eo-display-canvas 215.85 KB 215.85 KB 🟰
eo-divider 73.17 KB 73.17 KB 🟰
eo-draw-canvas 223.12 KB 223.12 KB 🟰
eo-drawer 93.39 KB 93.39 KB 🟰
eo-dropdown-actions 145.79 KB 145.79 KB 🟰
eo-dropdown-button 154.78 KB 154.78 KB 🟰
eo-dropdown-select 139.96 KB 139.96 KB 🟰
eo-dynamic-form-item 165.65 KB 165.65 KB 🟰
eo-easy-view 67.12 KB 67.12 KB 🟰
eo-easyops-avatar 110.29 KB 110.29 KB 🟰
eo-easyops-icon 71.66 KB 71.66 KB 🟰
eo-event-agent 13.72 KB 13.72 KB 🟰
eo-fa-icon 71.66 KB 71.66 KB 🟰
eo-flex-layout 66.86 KB 66.86 KB 🟰
eo-form 69.23 KB 69.23 KB 🟰
eo-form-item 75 KB 75 KB 🟰
eo-formatter-number 69.43 KB 69.43 KB 🟰
eo-frame-breadcrumb 143.85 KB 143.85 KB 🟰
eo-grid-layout 67.95 KB 67.95 KB 🟰
eo-humanize-time 139.36 KB 139.36 KB 🟰
eo-icon 71.66 KB 71.66 KB 🟰
eo-icon-select 195.88 KB 195.88 KB 🟰
eo-iframe 69.42 KB 69.42 KB 🟰
eo-illustration-message 87.28 KB 87.28 KB 🟰
eo-image 88.66 KB 88.66 KB 🟰
eo-img-icon 71.66 KB 71.66 KB 🟰
eo-info-card-item 137.13 KB 137.13 KB 🟰
eo-input 96.09 KB 96.1 KB
eo-launchpad-button 161.13 KB 161.13 KB 🟰
eo-launchpad-button-v2 215.81 KB 215.81 KB 🟰
eo-launchpad-quick-access 202.43 KB 202.43 KB 🟰
eo-launchpad-recent-visits 201.26 KB 201.26 KB 🟰
eo-link 123.14 KB 123.14 KB 🟰
eo-loading-container 83.36 KB 83.36 KB 🟰
eo-loading-step 100.62 KB 100.62 KB 🟰
eo-main-view 86.56 KB 86.56 KB 🟰
eo-markdown-display 140.95 KB 140.95 KB 🟰
eo-markdown-editor 299.67 KB 299.67 KB 🟰
eo-menu 68.98 KB 68.98 KB 🟰
eo-menu-group 68.76 KB 68.76 KB 🟰
eo-menu-item 83.53 KB 83.53 KB 🟰
eo-menu-item-sub-menu 83.99 KB 83.99 KB 🟰
eo-message-listener 69.15 KB 69.15 KB 🟰
eo-micro-view 78.56 KB 78.56 KB 🟰
eo-mini-actions 146.68 KB 146.68 KB 🟰
eo-mini-line-chart 76.29 KB 76.29 KB 🟰
eo-modal 142.1 KB 142.1 KB 🟰
eo-narrow-view 75.17 KB 75.17 KB 🟰
eo-nav-menu 192.33 KB 192.33 KB 🟰
eo-next-table 382.47 KB 382.47 KB 🟰
eo-page-title 69.1 KB 69.1 KB 🟰
eo-page-view 75.17 KB 75.17 KB 🟰
eo-pagination 172.28 KB 172.28 KB 🟰
eo-popover 102.8 KB 102.8 KB 🟰
eo-popup 95.47 KB 95.47 KB 🟰
eo-radio 98.1 KB 98.1 KB 🟰
eo-resizable-box 68.84 KB 68.84 KB 🟰
eo-search 100.13 KB 100.13 KB 🟰
eo-search-bar 66.98 KB 66.98 KB 🟰
eo-search-launchpad 205.1 KB 205.1 KB 🟰
eo-select 145.71 KB 145.71 KB 🟰
eo-sidebar 167.81 KB 167.81 KB 🟰
eo-sidebar-menu 148.84 KB 148.84 KB 🟰
eo-sidebar-menu-group 148.84 KB 148.84 KB 🟰
eo-sidebar-menu-item 133.69 KB 133.69 KB 🟰
eo-sidebar-menu-submenu 148.84 KB 148.84 KB 🟰
eo-sidebar-sub-menu 148.85 KB 148.85 KB 🟰
eo-spin 67.31 KB 67.31 KB 🟰
eo-statistics-card 87.44 KB 87.44 KB 🟰
eo-submit-buttons 150.17 KB 150.17 KB 🟰
eo-svg-icon 71.66 KB 71.66 KB 🟰
eo-switch 94.3 KB 94.3 KB 🟰
eo-tab-group 72.14 KB 72.14 KB 🟰
eo-tab-item 98.58 KB 98.58 KB 🟰
eo-tab-list 98.58 KB 98.58 KB 🟰
eo-table 331.8 KB 331.76 KB
eo-tag 85.6 KB 85.6 KB 🟰
eo-tag-list 89.99 KB 89.99 KB 🟰
eo-text 161.44 KB 161.44 KB 🟰
eo-text-tooltip 141.64 KB 141.64 KB 🟰
eo-textarea 84.08 KB 84.08 KB 🟰
eo-time-picker 216.27 KB 216.27 KB 🟰
eo-time-range-picker 233.25 KB 233.27 KB
eo-tooltip 118.19 KB 118.19 KB 🟰
eo-tree 141.18 KB 141.18 KB 🟰
eo-tree-select 228.86 KB 228.86 KB 🟰
eo-upload-file 162.18 KB 162.18 KB 🟰
eo-upload-image 170.79 KB 170.79 KB 🟰
eo-user-or-user-group-select 176.9 KB 176.9 KB 🟰
eo-workbench-layout 259.94 KB 259.94 KB 🟰
eo-workbench-layout-v2 261.42 KB 261.42 KB 🟰
form.dynamic-form-item 165.65 KB 165.65 KB 🟰
form.general-checkbox 106.34 KB 106.34 KB 🟰
form.general-form 69.23 KB 69.23 KB 🟰
form.general-form-item 75 KB 75 KB 🟰
form.general-input 96.09 KB 96.09 KB 🟰
form.general-radio 98.1 KB 98.1 KB 🟰
form.general-search 100.14 KB 100.13 KB
form.general-select 145.71 KB 145.71 KB 🟰
form.general-switch 94.3 KB 94.3 KB 🟰
form.general-textarea 84.08 KB 84.08 KB 🟰
form.icon-select 195.88 KB 195.88 KB 🟰
form.submit-buttons 150.17 KB 150.17 KB 🟰
form.upload-image 170.79 KB 170.79 KB 🟰
icons.antd-icon 71.66 KB 71.66 KB 🟰
icons.easyops-icon 71.66 KB 71.66 KB 🟰
icons.fa-icon 71.66 KB 71.66 KB 🟰
icons.general-icon 71.66 KB 71.66 KB 🟰
icons.get-antd-icons 6.62 KB 6.62 KB 🟰
icons.get-easyops-icons 6.62 KB 6.62 KB 🟰
icons.get-fa-icons 6.62 KB 6.62 KB 🟰
icons.get-libs 6.62 KB 6.62 KB 🟰
icons.search-icons 6.62 KB 6.62 KB 🟰
illustrations.error-message 87.28 KB 87.28 KB 🟰
illustrations.get-illustration 9.12 KB 9.12 KB 🟰
illustrations.get-illustrations-by-category 6.02 KB 6.02 KB 🟰
illustrations.loading-transition 66.64 KB 66.64 KB 🟰
illustrations.translate-illustration-config 9.12 KB 9.12 KB 🟰
inject.visual-builder-preview-agent 56.22 KB 56.22 KB 🟰
markdown.markdown-editor 299.71 KB 299.71 KB 🟰
nav.app-bar-wrapper 68.09 KB 68.09 KB 🟰
nav.easyops-navbar-alerts 136.14 KB 136.14 KB 🟰
nav.get-menu-config-options 7.84 KB 7.84 KB 🟰
nav.get-menu-config-tree 8.34 KB 8.34 KB 🟰
nav.launchpad-config 216.45 KB 216.45 KB 🟰
nav.nav-logo 132.72 KB 132.72 KB 🟰
nav.poll-announce 169.26 KB 169.26 KB 🟰
presentational.code-display 232.83 KB 232.83 KB 🟰
presentational.general-alert 87.57 KB 87.57 KB 🟰
presentational.general-descriptions 163.76 KB 163.76 KB 🟰
presentational.humanize-time 139.36 KB 139.36 KB 🟰
recent-history.clear-history 28.36 KB 28.36 KB 🟰
recent-history.get-all-history 28.36 KB 28.36 KB 🟰
recent-history.push-history 28.36 KB 28.36 KB 🟰
recent-history.recent-visit 168.41 KB 168.41 KB 🟰
sl-alert 31.11 KB 31.11 KB 🟰
sl-animated-image 25.37 KB 25.37 KB 🟰
sl-animation 25.54 KB 25.54 KB 🟰
sl-avatar 25.85 KB 25.85 KB 🟰
sl-badge 22.41 KB 22.41 KB 🟰
sl-breadcrumb 27.9 KB 27.9 KB 🟰
sl-breadcrumb-item 27.9 KB 27.9 KB 🟰
sl-button 33.09 KB 33.09 KB 🟰
sl-button-group 21.66 KB 21.66 KB 🟰
sl-card 22.67 KB 22.67 KB 🟰
sl-carousel 31.92 KB 31.92 KB 🟰
sl-carousel-item 31.92 KB 31.92 KB 🟰
sl-checkbox 30.29 KB 30.29 KB 🟰
sl-color-picker 64.47 KB 64.47 KB 🟰
sl-details 28.09 KB 28.09 KB 🟰
sl-dialog 33.02 KB 33.02 KB 🟰
sl-divider 21.5 KB 21.5 KB 🟰
sl-drawer 34.1 KB 34.1 KB 🟰
sl-dropdown 36.15 KB 36.15 KB 🟰
sl-format-bytes 22.32 KB 22.32 KB 🟰
sl-format-date 22.37 KB 22.37 KB 🟰
sl-format-number 22.38 KB 22.38 KB 🟰
sl-icon 24.5 KB 24.5 KB 🟰
sl-icon-button 27.13 KB 27.13 KB 🟰
sl-image-comparer 27.79 KB 27.79 KB 🟰
sl-input 33.79 KB 33.79 KB 🟰
sl-menu 41.75 KB 41.75 KB 🟰
sl-menu-item 41.75 KB 41.75 KB 🟰
sl-menu-label 21.23 KB 21.23 KB 🟰
sl-mutation-observer 21.72 KB 21.72 KB 🟰
sl-option 27.37 KB 27.37 KB 🟰
sl-popup 31.88 KB 31.88 KB 🟰
sl-progress-bar 23.98 KB 23.98 KB 🟰
sl-progress-ring 23.06 KB 23.06 KB 🟰
sl-qr-code 26.97 KB 26.97 KB 🟰
sl-radio 26.26 KB 26.26 KB 🟰
sl-radio-button 26.01 KB 26.01 KB 🟰
sl-radio-group 26.35 KB 26.35 KB 🟰
sl-range 29.08 KB 29.08 KB 🟰
sl-rating 28.43 KB 28.43 KB 🟰
sl-relative-time 22.58 KB 22.58 KB 🟰
sl-resize-observer 21.61 KB 21.61 KB 🟰
sl-select 48.53 KB 48.53 KB 🟰
sl-skeleton 22.21 KB 22.21 KB 🟰
sl-spinner 22.67 KB 22.67 KB 🟰
sl-split-panel 24.31 KB 24.31 KB 🟰
sl-switch 27.19 KB 27.19 KB 🟰
sl-tab 34.18 KB 34.18 KB 🟰
sl-tab-group 34.18 KB 34.18 KB 🟰
sl-tab-panel 34.18 KB 34.18 KB 🟰
sl-tag 29.28 KB 29.28 KB 🟰
sl-textarea 27.88 KB 27.88 KB 🟰
sl-tooltip 34.25 KB 34.25 KB 🟰
sl-tree 37.25 KB 37.25 KB 🟰
sl-tree-item 37.25 KB 37.25 KB 🟰
sl-visually-hidden 21.2 KB 21.2 KB 🟰
visual-builder.batch-update-raw-data-generated-view 7.49 KB 7.49 KB 🟰
visual-builder.chat-conversation 184 KB 184 KB 🟰
visual-builder.chat-preview 69.54 KB 69.54 KB 🟰
visual-builder.check-editor-by-name 7.11 KB 7.11 KB 🟰
visual-builder.contract-select 122.51 KB 122.53 KB
visual-builder.generate-snippets-context-menu 146.58 KB 146.58 KB 🟰
visual-builder.get-data-deps 7.12 KB 7.12 KB 🟰
visual-builder.get-dependency-tree 7.49 KB 7.49 KB 🟰
visual-builder.get-raw-data-system-prompts 11.47 KB 11.47 KB 🟰
visual-builder.inject-chat-preview-agent 8.07 KB 8.07 KB 🟰
visual-builder.page-arch-node 130.94 KB 130.94 KB 🟰
visual-builder.parse-path 8.74 KB 8.74 KB 🟰
visual-builder.pre-generated-container 69.91 KB 69.91 KB 🟰
visual-builder.pre-generated-preview 69.52 KB 69.52 KB 🟰
visual-builder.pre-generated-table-view 67.14 KB 67.14 KB 🟰
visual-builder.property-editor 1,317.17 KB 1,317.06 KB ↓ -0.11 KB
visual-builder.raw-data-preview 72.44 KB 72.44 KB 🟰
visual-builder.workbench-action 134.66 KB 134.66 KB 🟰
visual-builder.workbench-action-list 140.08 KB 140.08 KB 🟰
visual-builder.workbench-history-action 168.25 KB 168.25 KB 🟰
visual-builder.workbench-pane 83.13 KB 83.13 KB 🟰
visual-builder.workbench-sidebar 68.02 KB 68.02 KB 🟰
visual-builder.workbench-tree 140.13 KB 140.13 KB 🟰
vs.code-editor 1,013.98 KB 1,013.97 KB

@renovate renovate bot changed the title chore(deps): Update dependency node to v22 chore(deps): Update Node.js to v22 Nov 13, 2024
@renovate renovate bot force-pushed the renovate/node-22.x branch from 9a23cb0 to a00678b Compare December 3, 2024 23:10
@github-actions github-actions bot temporarily deployed to pull request December 3, 2024 23:15 Inactive
@renovate renovate bot force-pushed the renovate/node-22.x branch from a00678b to 7bbf497 Compare January 8, 2025 14:37
@github-actions github-actions bot temporarily deployed to pull request January 8, 2025 14:42 Inactive
@renovate renovate bot force-pushed the renovate/node-22.x branch from 7bbf497 to 48acc2e Compare January 21, 2025 18:35
@github-actions github-actions bot temporarily deployed to pull request January 21, 2025 18:39 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