Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Sep 29, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update
@babel/core (source) 7.28.4 -> 7.28.5 age confidence devDependencies patch
@babel/preset-env (source) 7.28.3 -> 7.28.5 age confidence devDependencies patch
@babel/preset-typescript (source) 7.27.1 -> 7.28.5 age confidence devDependencies minor
@opentelemetry/auto-instrumentations-node (source) ^0.64.0 -> ^0.67.0 age confidence dependencies minor
@opentelemetry/exporter-metrics-otlp-http (source) ^0.205.0 -> ^0.208.0 age confidence dependencies minor
@opentelemetry/sdk-node (source) ^0.205.0 -> ^0.208.0 age confidence dependencies minor
@types/node (source) 22.18.6 -> 22.19.1 age confidence devDependencies minor
axios (source) 1.12.2 -> 1.13.2 age confidence devDependencies minor
dotenv 17.2.2 -> 17.2.3 age confidence devDependencies patch
esbuild 0.25.10 -> 0.27.0 age confidence devDependencies minor
lint-staged 16.2.0 -> 16.2.6 age confidence devDependencies patch
node (source) 22.19.0 -> 22.21.1 age confidence minor
ts-jest (source) 29.4.4 -> 29.4.5 age confidence devDependencies patch
typedoc (source) 0.28.13 -> 0.28.14 age confidence devDependencies patch
typescript (source) 5.9.2 -> 5.9.3 age confidence devDependencies patch
webpack 5.101.3 -> 5.102.1 age confidence devDependencies minor

Release Notes

babel/babel (@​babel/core)

v7.28.5

Compare Source

👓 Spec Compliance
🐛 Bug Fix
  • babel-plugin-proposal-destructuring-private
  • babel-parser
  • babel-plugin-proposal-discard-binding, babel-plugin-transform-destructuring
  • babel-helper-create-class-features-plugin, babel-helper-member-expression-to-functions, babel-plugin-transform-block-scoping, babel-plugin-transform-optional-chaining, babel-traverse, babel-types
  • babel-traverse
🏠 Internal
🏃‍♀️ Performance
open-telemetry/opentelemetry-js-contrib (@​opentelemetry/auto-instrumentations-node)

v0.67.0

Compare Source

Features
Dependencies

v0.66.0

Compare Source

Features
Dependencies

v0.65.0

Compare Source

Features
Dependencies

v0.64.6

Compare Source

Bug Fixes
Dependencies

v0.64.5

Compare Source

Dependencies
open-telemetry/opentelemetry-js (@​opentelemetry/exporter-metrics-otlp-http)

v0.208.0

Compare Source

v0.207.0

Compare Source

v0.206.0

Compare Source

axios/axios (axios)

v1.13.2

Compare Source

Bug Fixes
  • http: fix 'socket hang up' bug for keep-alive requests when using timeouts; (#​7206) (8d37233)
  • http: use default export for http2 module to support stubs; (#​7196) (0588880)
Performance Improvements
Contributors to this release

v1.13.1

Compare Source

Bug Fixes
  • http: fixed a regression that caused the data stream to be interrupted for responses with non-OK HTTP statuses; (#​7193) (bcd5581)
Contributors to this release

v1.13.0

Compare Source

Bug Fixes
Features
Contributors to this release

1.12.2 (2025-09-14)

Bug Fixes
  • fetch: use current global fetch instead of cached one when env fetch is not specified to keep MSW support; (#​7030) (cf78825)
Contributors to this release

1.12.1 (2025-09-12)

Bug Fixes
Contributors to this release
motdotla/dotenv (dotenv)

v17.2.3

Compare Source

Changed
  • Fixed typescript error definition (#​912)
evanw/esbuild (esbuild)

v0.27.0

Compare Source

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.26.0 or ~0.26.0. See npm's documentation about semver for more information.

  • Use Uint8Array.fromBase64 if available (#​4286)

    With this release, esbuild's binary loader will now use the new Uint8Array.fromBase64 function unless it's unavailable in the configured target environment. If it's unavailable, esbuild's previous code for this will be used as a fallback. Note that this means you may now need to specify target when using this feature with Node (for example --target=node22) unless you're using Node v25+.

  • Update the Go compiler from v1.23.12 to v1.25.4 (#​4208, #​4311)

    This raises the operating system requirements for running esbuild:

    • Linux: now requires a kernel version of 3.2 or later
    • macOS: now requires macOS 12 (Monterey) or later

v0.26.0

Compare Source

  • Enable trusted publishing (#​4281)

    GitHub and npm are recommending that maintainers for packages such as esbuild switch to trusted publishing. With this release, a VM on GitHub will now build and publish all of esbuild's packages to npm instead of me. In theory.

    Unfortunately there isn't really a way to test that this works other than to do it live. So this release is that live test. Hopefully this release is uneventful and is exactly the same as the previous one (well, except for the green provenance attestation checkmark on npm that happens with trusted publishing).

v0.25.12

Compare Source

  • Fix a minification regression with CSS media queries (#​4315)

    The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for @media <media-type> and <media-condition-without-or> { ... } was missing an equality check for the <media-condition-without-or> part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.

  • Update the list of known JavaScript globals (#​4310)

    This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global Array property is considered to be side-effect free but accessing the global scrollY property can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:

    From ES2017:

    • Atomics
    • SharedArrayBuffer

    From ES2020:

    • BigInt64Array
    • BigUint64Array

    From ES2021:

    • FinalizationRegistry
    • WeakRef

    From ES2025:

    • Float16Array
    • Iterator

    Note that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from Iterator:

    // This can now be tree-shaken by esbuild:
    class ExampleIterator extends Iterator {}
  • Add support for the new @view-transition CSS rule (#​4313)

    With this release, esbuild now has improved support for pretty-printing and minifying the new @view-transition rule (which esbuild was previously unaware of):

    /* Original code */
    @&#8203;view-transition {
      navigation: auto;
      types: check;
    }
    
    /* Old output */
    @&#8203;view-transition { navigation: auto; types: check; }
    
    /* New output */
    @&#8203;view-transition {
      navigation: auto;
      types: check;
    }

    The new view transition feature provides a mechanism for creating a


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (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 requested a review from a team as a code owner September 29, 2025 01:08
@changeset-bot
Copy link

changeset-bot bot commented Sep 29, 2025

⚠️ No Changeset found

Latest commit: 7660bab

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@codecov
Copy link

codecov bot commented Sep 29, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 97.54%. Comparing base (f6bf474) to head (7da0bdc).
⚠️ Report is 1 commits behind head on master.

Additional details and impacted files
@@           Coverage Diff           @@
##           master    #1178   +/-   ##
=======================================
  Coverage   97.54%   97.54%           
=======================================
  Files          88       88           
  Lines        1346     1346           
  Branches      347      347           
=======================================
  Hits         1313     1313           
  Misses         29       29           
  Partials        4        4           
Flag Coverage Δ
test-coverage 97.54% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ 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/all branch 9 times, most recently from 02e3a5a to f03b083 Compare October 6, 2025 18:55
@renovate renovate bot changed the title chore(deps): update all dependencies fix(deps): update all dependencies Oct 6, 2025
@renovate renovate bot force-pushed the renovate/all branch 8 times, most recently from 621c611 to 96c5c54 Compare October 11, 2025 16:41
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from 50ca866 to b09efe0 Compare October 21, 2025 22:10
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from a576c09 to 33e74ea Compare October 23, 2025 18:35
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from 09c50df to f14d6dd Compare November 3, 2025 13:20
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from f07e178 to c967149 Compare November 9, 2025 20:51
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