Skip to content

fix(deps): update patch updates (patch) #921

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: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 24, 2025

This PR contains the following updates:

Package Change Age Confidence
@eslint-react/eslint-plugin (source) ^1.52.2 -> ^1.52.6 age confidence
@eslint-react/eslint-plugin (source) ^1.52.3 -> ^1.52.6 age confidence
@eslint/compat (source) ^1.3.1 -> ^1.3.2 age confidence
@eslint/plugin-kit@<0.3.3 (source) >=0.3.3 -> >=0.3.5 age confidence
browserslist 4.25.1 -> 4.25.3 age confidence
caniuse-lite ^1.0.30001731 -> ^1.0.30001735 age confidence
chrono-node@<2.2.4 >=2.8.3 -> >=2.8.4 age confidence
esbuild ^0.25.8 -> ^0.25.9 age confidence
esbuild@<=0.24.2 >=0.25.6 -> >=0.25.9 age confidence
lint-staged ^16.1.4 -> ^16.1.5 age confidence
pkg-pr-new (source) ^0.0.54 -> ^0.0.55 age confidence
tsx (source) ^4.20.3 -> ^4.20.4 age confidence

Release Notes

Rel1cx/eslint-react (@​eslint-react/eslint-plugin)

v1.52.6

Compare Source

🐞 Fixes
  • fix: correct logic in naming-convention/component-name validation to continue on valid names, closes #​1176 by @​Rel1cx in #​1177

Full Changelog: Rel1cx/eslint-react@v1.52.5...v1.52.6

v1.52.5

Compare Source

🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v1.52.4...v1.52.5

v1.52.4

Compare Source

🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v1.52.3...v1.52.4

v1.52.3

Compare Source

🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v1.52.2...v1.52.3

eslint/rewrite (@​eslint/compat)

v1.3.2

Compare Source

Dependencies
  • The following workspace dependencies were updated
eslint/rewrite (@​eslint/plugin-kit@<0.3.3)

v0.3.5

Compare Source

Dependencies
  • The following workspace dependencies were updated

v0.3.4

Compare Source

Bug Fixes
  • potential quadratic runtime in regular expression (#​240) (b283f64)
browserslist/browserslist (browserslist)

v4.25.3

Compare Source

v4.25.2

Compare Source

  • Fixed Node.js --permission support (by @​broofa).
browserslist/caniuse-lite (caniuse-lite)

v1.0.30001735

Compare Source

v1.0.30001734

Compare Source

v1.0.30001733

Compare Source

wanasit/chrono (chrono-node@<2.2.4)

v2.8.4

Compare Source


evanw/esbuild (esbuild)

v0.25.9

Compare Source

  • Better support building projects that use Yarn on Windows (#​3131, #​3663)

    With this release, you can now use esbuild to bundle projects that use Yarn Plug'n'Play on Windows on drives other than the C: drive. The problem was as follows:

    1. Yarn in Plug'n'Play mode on Windows stores its global module cache on the C: drive
    2. Some developers put their projects on the D: drive
    3. Yarn generates relative paths that use ../.. to get from the project directory to the cache directory
    4. Windows-style paths don't support directory traversal between drives via .. (so D:\.. is just D:)
    5. I didn't have access to a Windows machine for testing this edge case

    Yarn works around this edge case by pretending Windows-style paths beginning with C:\ are actually Unix-style paths beginning with /C:/, so the ../.. path segments are able to navigate across drives inside Yarn's implementation. This was broken for a long time in esbuild but I finally got access to a Windows machine and was able to debug and fix this edge case. So you should now be able to bundle these projects with esbuild.

  • Preserve parentheses around function expressions (#​4252)

    The V8 JavaScript VM uses parentheses around function expressions as an optimization hint to immediately compile the function. Otherwise the function would be lazily-compiled, which has additional overhead if that function is always called immediately as lazy compilation involves parsing the function twice. You can read V8's blog post about this for more details.

    Previously esbuild did not represent parentheses around functions in the AST so they were lost during compilation. With this change, esbuild will now preserve parentheses around function expressions when they are present in the original source code. This means these optimization hints will not be lost when bundling with esbuild. In addition, esbuild will now automatically add this optimization hint to immediately-invoked function expressions. Here's an example:

    // Original code
    const fn0 = () => 0
    const fn1 = (() => 1)
    console.log(fn0, function() { return fn1() }())
    
    // Old output
    const fn0 = () => 0;
    const fn1 = () => 1;
    console.log(fn0, function() {
      return fn1();
    }());
    
    // New output
    const fn0 = () => 0;
    const fn1 = (() => 1);
    console.log(fn0, (function() {
      return fn1();
    })());

    Note that you do not want to wrap all function expressions in parentheses. This optimization hint should only be used for functions that are called on initial load. Using this hint for functions that are not called on initial load will unnecessarily delay the initial load. Again, see V8's blog post linked above for details.

  • Update Go from 1.23.10 to 1.23.12 (#​4257, #​4258)

    This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain false positive reports (specifically CVE-2025-4674 and CVE-2025-47907) from vulnerability scanners that only detect which version of the Go compiler esbuild uses.

lint-staged/lint-staged (lint-staged)

v16.1.5

Compare Source

Patch Changes
stackblitz-labs/pkg.pr.new (pkg-pr-new)

v0.0.55

Compare Source

privatenumber/tsx (tsx)

v4.20.4

Compare Source


Configuration

📅 Schedule: Branch creation - "after 10:00 before 19:00 every weekday except after 13:00 before 14:00" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 requested a review from prisis as a code owner July 24, 2025 12:37
@renovate renovate bot added the c: dependencies Pull requests that adds/updates a dependency label Jul 24, 2025
Copy link

coderabbitai bot commented Jul 24, 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.
    • 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.
  • 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 the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Join our Discord community for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

Type @coderabbitai help to get the list of available commands.

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

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • 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
Contributor

github-actions bot commented Jul 24, 2025

Thank you for following the naming conventions! 🙏

@renovate renovate bot force-pushed the renovate/patch-patch-updates branch from 4040346 to 83539da Compare July 25, 2025 13:04
prisis
prisis previously approved these changes Jul 28, 2025
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch 2 times, most recently from df346cf to e92d474 Compare August 1, 2025 12:12
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch 3 times, most recently from cf92e8a to 6d12918 Compare August 8, 2025 08:29
Copy link

socket-security bot commented Aug 8, 2025

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updatedesbuild@​0.25.8 ⏵ 0.25.9911007192100
Updatedbrowserslist@​4.25.1 ⏵ 4.25.398 +11009091100
Updated@​eslint/​compat@​1.3.1 ⏵ 1.3.210010010091 +3100
Updated@​eslint-react/​eslint-plugin@​1.52.3 ⏵ 1.52.69910010096100
Updatedcaniuse-lite@​1.0.30001731 ⏵ 1.0.30001737100 +1100100 +27100 +5100

View full report

@renovate renovate bot force-pushed the renovate/patch-patch-updates branch 6 times, most recently from 27f0a80 to 8f6e3c8 Compare August 15, 2025 14:28
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch from 8f6e3c8 to 9a5b141 Compare August 18, 2025 09:39
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch from 9a5b141 to f9ea33b Compare August 22, 2025 13:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
c: dependencies Pull requests that adds/updates a dependency
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant