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

fix(deps): update all non-major dependencies #1905

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 22, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update Pending
@graphprotocol/graph-cli (source) ^0.95.0 -> ^0.96.0 age adoption passing confidence devDependencies minor
@graphprotocol/graph-ts (source) ^0.37.0 -> ^0.38.0 age adoption passing confidence dependencies minor
actions/cache v4.2.1 -> v4.2.3 age adoption passing confidence action patch
actions/setup-node v4.2.0 -> v4.3.0 age adoption passing confidence action minor
actions/upload-artifact v4.6.1 -> v4.6.2 age adoption passing confidence action patch
fast-xml-parser 4.5.2 -> 4.5.3 age adoption passing confidence resolutions patch
getsentry/action-release v1.10.5 -> v1.11.0 age adoption passing confidence action minor
hardhat (source) 2.22.18 -> 2.22.19 age adoption passing confidence devDependencies patch
next (source) 14.2.21 -> 14.2.24 age adoption passing confidence dependencies patch 14.2.25
node (source) 20.18.3 -> 20.19.0 age adoption passing confidence volta minor
node (source) 18.20.6 -> 18.20.7 age adoption passing confidence volta patch
shelljs ^0.8.5 -> ^0.9.0 age adoption passing confidence devDependencies minor
yarn (source) 4.6.0 -> 4.7.0 age adoption passing confidence volta minor
yarn (source) 4.6.0 -> 4.7.0 age adoption passing confidence packageManager minor

Release Notes

graphprotocol/graph-tooling (@​graphprotocol/graph-cli)

v0.96.0

Compare Source

Minor Changes
Patch Changes
graphprotocol/graph-tooling (@​graphprotocol/graph-ts)

v0.38.0

Compare Source

Minor Changes
actions/cache (actions/cache)

v4.2.3

Compare Source

What's Changed

New Contributors

Full Changelog: actions/cache@v4.2.2...v4.2.3

v4.2.2

Compare Source

What's Changed

[!IMPORTANT]
As a reminder, there were important backend changes to release v4.2.0, see those release notes and the announcement for more details.

Full Changelog: actions/cache@v4.2.1...v4.2.2

actions/setup-node (actions/setup-node)

v4.3.0

Compare Source

actions/upload-artifact (actions/upload-artifact)

v4.6.2

Compare Source

What's Changed

New Contributors

Full Changelog: actions/upload-artifact@v4...v4.6.2

NaturalIntelligence/fast-xml-parser (fast-xml-parser)

v4.5.3

Compare Source

getsentry/action-release (getsentry/action-release)

v1.11.0: 1.11.0

Compare Source

After receiving user feedback both on runtime and compatibility issues for 1.10.0
the action has been reworked to use a Docker based approach on Linux runners, mimicking
< 1.9.0 versions, while Mac OS and Windows runners will follow the 1.10.0 approach
of installing @sentry/cli in the run step.

nomiclabs/hardhat (hardhat)

v2.22.19: Hardhat v2.22.19

Compare Source

This small bug fix release resolves a Windows installation dependency issue and improves performance during initialization of a local Hardhat network and when working with stack traces.

Changes
  • 5d79fca: Fix heuristic to detect that an ESM project doesn't have a Hardhat config with an explicit .cjs extension.
  • 00d542a: Update EDR to v0.8.0:
    • fix: improved provider initialization performance
    • fix: ignore unknown opcodes in source maps
    • fix: crash when loading EDR on Windows without a C Runtime library installed
    • fix: improved stack trace generation performance

💡 The Nomic Foundation is hiring! Check our open positions.


vercel/next.js (next)

v14.2.24

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
Credits

Huge thanks to @​ztanner for helping!

v14.2.23

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • backport: force module format for virtual client-proxy (#​74590)
  • Backport: Use provided waitUntil for pending revalidates (#​74573)
  • Feature: next/image: add support for images.qualities in next.config (#​74500)
Credits

Huge thanks to @​styfle, @​ijjk and @​lubieowoce for helping!

v14.2.22

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • Retry manifest file loading only in dev mode: #​73900
  • Ensure workers are cleaned up: #​71564
  • Use shared worker for lint & typecheck steps: #​74154
Credits

Huge thanks to @​unstubbable, @​ijjk, and @​ztanner for helping!

nodejs/node (node)

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

Configuration

📅 Schedule: Branch creation - "* 0-3 * * *" (UTC), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

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

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Feb 22, 2025
@renovate renovate bot requested a review from a team as a code owner February 22, 2025 00:08
@renovate renovate bot requested a review from a team as a code owner February 22, 2025 00:08
Copy link
Contributor

coderabbitai bot commented Feb 22, 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.


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.

❤️ 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.
  • @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 or @coderabbitai title 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

netlify bot commented Feb 22, 2025

Deploy Preview for kleros-v2-testnet ready!

Name Link
🔨 Latest commit fb11726
🔍 Latest deploy log https://app.netlify.com/sites/kleros-v2-testnet/deploys/67db4ac7de4f99000806d3df
😎 Deploy Preview https://deploy-preview-1905--kleros-v2-testnet.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

netlify bot commented Feb 22, 2025

Deploy Preview for kleros-v2-university ready!

Name Link
🔨 Latest commit fb11726
🔍 Latest deploy log https://app.netlify.com/sites/kleros-v2-university/deploys/67db4ac729d1ee000879bcc4
😎 Deploy Preview https://deploy-preview-1905--kleros-v2-university.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

netlify bot commented Feb 22, 2025

Deploy Preview for kleros-v2-neo ready!

Name Link
🔨 Latest commit fb11726
🔍 Latest deploy log https://app.netlify.com/sites/kleros-v2-neo/deploys/67db4ac7b3960f00088f128a
😎 Deploy Preview https://deploy-preview-1905--kleros-v2-neo.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

netlify bot commented Feb 22, 2025

Deploy Preview for kleros-v2-testnet-devtools ready!

Name Link
🔨 Latest commit fb11726
🔍 Latest deploy log https://app.netlify.com/sites/kleros-v2-testnet-devtools/deploys/67db4ac7f15fa5000809c833
😎 Deploy Preview https://deploy-preview-1905--kleros-v2-testnet-devtools.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ed8fbd5 to fcc5133 Compare February 22, 2025 22:29
@renovate renovate bot changed the title fix(deps): update dependency next to v14.2.24 fix(deps): update all non-major dependencies Feb 22, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fcc5133 to d89058c Compare February 23, 2025 01:54
@renovate renovate bot requested a review from jaybuidl as a code owner February 23, 2025 01:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from ff07c90 to 2a35459 Compare February 28, 2025 10:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from af69e9d to 45688a8 Compare March 10, 2025 10:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from c8810b9 to 2d98f29 Compare March 17, 2025 03:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2d98f29 to 8c65686 Compare March 18, 2025 21:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8c65686 to fb11726 Compare March 19, 2025 22:52
Copy link

codeclimate bot commented Mar 19, 2025

Code Climate has analyzed commit fb11726 and detected 0 issues on this pull request.

View more on Code Climate.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant