Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 3, 2025

This PR contains the following updates:

Package Change Age Confidence
@babel/core (source) ^7.28.0 -> ^7.28.3 age confidence
@esbuild/darwin-arm64 ^0.25.8 -> ^0.25.9 age confidence
@esbuild/darwin-x64 ^0.25.8 -> ^0.25.9 age confidence
@esbuild/linux-x64 0.25.8 -> 0.25.9 age confidence
@esbuild/win32-x64 0.25.8 -> 0.25.9 age confidence
@primer/octicons-react (source) ^19.15.5 -> ^19.16.0 age confidence
@types/node (source) ^22.17.0 -> ^22.18.0 age confidence
@typescript-eslint/eslint-plugin (source) ^8.38.0 -> ^8.41.0 age confidence
@typescript-eslint/parser (source) ^8.38.0 -> ^8.41.0 age confidence
concurrently ^9.2.0 -> ^9.2.1 age confidence
cypress (source) ^14.5.3 -> ^14.5.4 age confidence
eslint-plugin-prettier ^5.5.3 -> ^5.5.4 age confidence
isomorphic-git (source) ^1.32.2 -> ^1.33.1 age confidence
lint-staged ^15.2.10 -> ^15.5.2 age confidence
openid-client ^6.6.2 -> ^6.7.0 age confidence
tsx (source) ^4.20.3 -> ^4.20.5 age confidence
typescript (source) ^5.8.3 -> ^5.9.2 age confidence

Release Notes

babel/babel (@​babel/core)

v7.28.3

Compare Source

👓 Spec Compliance
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators, babel-plugin-transform-class-static-block, babel-preset-env
🐛 Bug Fix
💅 Polish
  • babel-plugin-transform-regenerator, babel-plugin-transform-runtime
📝 Documentation
🏠 Internal
🔬 Output optimization
  • babel-plugin-proposal-destructuring-private, babel-plugin-proposal-do-expressions
evanw/esbuild (@​esbuild/darwin-arm64)

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.

primer/octicons (@​primer/octicons-react)

v19.16.0

Compare Source

Minor Changes
Patch Changes
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.41.0

Compare Source

🩹 Fixes
  • deps: update dependency prettier to v3.6.2 (#​11496)

You can read about our versioning strategy and releases on our website.

v8.40.0

Compare Source

🚀 Features
  • typescript-estree: forbid invalid keys in EnumMember (#​11232)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.39.1

Compare Source

This was a version bump only for eslint-plugin to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.39.0

Compare Source

🚀 Features
  • eslint-plugin: [only-throw-error] support yield/await expressions (#​11417)
  • eslint-plugin: add no-unnecessary-type-conversion to strict-type-checked ruleset (#​11427)
  • update to TypeScript 5.9.2 (#​11445)
  • eslint-plugin: [naming-convention] add enumMember PascalCase default option (#​11127)
🩹 Fixes
  • eslint-plugin: [no-unsafe-assignment] add an unsafeObjectPattern message (#​11403)
  • eslint-plugin: [prefer-optional-chain] ignore check option for most RHS of a chain (#​11272)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.41.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.40.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.39.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.39.0

Compare Source

🚀 Features
❤️ Thank You

You can read about our versioning strategy and releases on our website.

open-cli-tools/concurrently (concurrently)

v9.2.1

Compare Source

What's Changed

Full Changelog: open-cli-tools/concurrently@v9.2.0...v9.2.1

cypress-io/cypress (cypress)

v14.5.4

Compare Source

Changelog: https://docs.cypress.io/app/references/changelog#14-5-4

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.5.4

Compare Source

Patch Changes
isomorphic-git/isomorphic-git (isomorphic-git)

v1.33.1

Compare Source

Bug Fixes

v1.33.0

Compare Source

Features

v1.32.3

Compare Source

Bug Fixes
panva/openid-client (openid-client)

v6.7.0

Compare Source

Features
  • support for the ML-DSA Algorithm Identifiers (9543da5)

v6.6.4

Compare Source

Fixes
  • recognize N_A in the token exchange grant (770b177)

v6.6.3

Compare Source

Documentation
  • fix TokenEndpointResponseHelpers.claims() note (b77c786)
Refactor
  • passport: allow custom logic to drive initiating auth requests (0b57115), closes #​811
privatenumber/tsx (tsx)

v4.20.5

Compare Source

Bug Fixes
  • handle ambiguous packages (796053a)

This release is also available on:

v4.20.4

Compare Source

microsoft/TypeScript (typescript)

v5.9.2

Compare Source


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 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.

Copy link

netlify bot commented Aug 3, 2025

Deploy Preview for endearing-brigadeiros-63f9d0 canceled.

Name Link
🔨 Latest commit cc03302
🔍 Latest deploy log https://app.netlify.com/projects/endearing-brigadeiros-63f9d0/deploys/68b04fa62144120008d1d4ff

Copy link

github-actions bot commented Aug 3, 2025

Dependency Review

The following issues were found:

  • ✅ 0 vulnerable package(s)
  • ✅ 0 package(s) with incompatible licenses
  • ✅ 0 package(s) with invalid SPDX license definitions
  • ⚠️ 1 package(s) with unknown licenses.

View full job summary

@renovate renovate bot force-pushed the renovate/manager branch from 7e86a68 to 8d80b52 Compare August 4, 2025 21:28
@renovate renovate bot changed the title chore(deps): update dependency typescript to ^5.9.2 - - package.json chore(deps): update npm - - package.json Aug 4, 2025
Copy link

codecov bot commented Aug 4, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 82.70%. Comparing base (9859fae) to head (cc03302).
⚠️ Report is 2 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #1135   +/-   ##
=======================================
  Coverage   82.70%   82.70%           
=======================================
  Files          66       66           
  Lines        2781     2781           
  Branches      333      333           
=======================================
  Hits         2300     2300           
  Misses        432      432           
  Partials       49       49           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@renovate renovate bot force-pushed the renovate/manager branch 2 times, most recently from 0597603 to 4b4d7c0 Compare August 5, 2025 21:24
@renovate renovate bot changed the title chore(deps): update npm - - package.json fix(deps): update npm - - package.json Aug 5, 2025
@github-actions github-actions bot added the fix label Aug 5, 2025
@renovate renovate bot force-pushed the renovate/manager branch 9 times, most recently from 6d3aae6 to 1427cb0 Compare August 13, 2025 02:38
@renovate renovate bot force-pushed the renovate/manager branch 9 times, most recently from 0838a7f to b8a8ecb Compare August 20, 2025 13:54
@renovate renovate bot force-pushed the renovate/manager branch 2 times, most recently from 4bf0c12 to b48062e Compare August 22, 2025 07:26
@renovate renovate bot force-pushed the renovate/manager branch 9 times, most recently from 06bc3dd to b38e008 Compare August 28, 2025 12:30
@renovate renovate bot force-pushed the renovate/manager branch from b38e008 to cc03302 Compare August 28, 2025 12:46
@kriswest kriswest merged commit 59cda2f into main Aug 28, 2025
14 checks passed
@renovate renovate bot deleted the renovate/manager branch August 28, 2025 12:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant