Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 15, 2025

This PR contains the following updates:

Package Change Age Confidence
@azure/functions 4.7.2 -> 4.8.0 age confidence
@eslint/js (source) 9.35.0 -> 9.36.0 age confidence
@types/node (source) 18.19.124 -> 18.19.129 age confidence
@vercel/node (source) 5.3.21 -> 5.3.24 age confidence
dotenv 17.2.2 -> 17.2.3 age confidence
esbuild 0.25.9 -> 0.25.10 age confidence
eslint (source) 9.35.0 -> 9.36.0 age confidence
globals 16.3.0 -> 16.4.0 age confidence
typedoc (source) 0.28.12 -> 0.28.13 age confidence
typescript (source) 5.9.2 -> 5.9.3 age confidence
typescript-eslint (source) 8.42.0 -> 8.45.0 age confidence
undici (source) 7.15.0 -> 7.16.0 age confidence

Release Notes

Azure/azure-functions-nodejs-library (@​azure/functions)

v4.7.3

Compare Source

What's Changed

Full Changelog: Azure/azure-functions-nodejs-library@v4.7.2...v4.7.3

eslint/eslint (@​eslint/js)

v9.36.0

Compare Source

Features

  • 47afcf6 feat: correct preserve-caught-error edge cases (#​20109) (Francesco Trotta)

Bug Fixes

Documentation

  • b73ab12 docs: update examples to use defineConfig (#​20131) (sethamus)
  • 31d9392 docs: fix typos (#​20118) (Pixel998)
  • c7f861b docs: Update README (GitHub Actions Bot)
  • 6b0c08b docs: Update README (GitHub Actions Bot)
  • 91f97c5 docs: Update README (GitHub Actions Bot)

Chores

  • 12411e8 chore: upgrade @​eslint/js@​9.36.0 (#​20139) (Milos Djermanovic)
  • 488cba6 chore: package.json update for @​eslint/js release (Jenkins)
  • bac82a2 ci: simplify renovate configuration (#​19907) (唯然)
  • c00bb37 ci: bump actions/labeler from 5 to 6 (#​20090) (dependabot[bot])
  • fee751d refactor: use defaultOptions in rules (#​20121) (Pixel998)
  • 1ace67d chore: update example to use defineConfig (#​20111) (루밀LuMir)
  • 4821963 test: add missing loc information to error objects in rule tests (#​20112) (루밀LuMir)
  • b42c42e chore: disallow use of deprecated type property in core rule tests (#​20094) (Milos Djermanovic)
  • 7bb498d test: remove deprecated type property from core rule tests (#​20093) (Pixel998)
  • e10cf2a ci: bump actions/setup-node from 4 to 5 (#​20089) (dependabot[bot])
  • 5cb0ce4 refactor: use meta.defaultOptions in preserve-caught-error (#​20080) (Pixel998)
  • f9f7cb5 chore: package.json update for eslint-config-eslint release (Jenkins)
  • 81764b2 chore: update eslint peer dependency in eslint-config-eslint (#​20079) (Milos Djermanovic)
vercel/vercel (@​vercel/node)

v5.3.24

Compare Source

Patch Changes
  • Add support for public asset folder for Hono preset (#​13958)

v5.3.23

Compare Source

Patch Changes
  • Add support for inlclude/exclude files config from vercel.json (#​13946)

v5.3.22

Compare Source

Patch Changes
  • Revert change to module resolution which slowed down Typescript builds for functions (#​13897)
motdotla/dotenv (dotenv)

v17.2.3

Compare Source

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

v0.25.10

Compare Source

  • Fix a panic in a minification edge case (#​4287)

    This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the value undefined in this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):

    function identity(x) { return x }
    identity({ y: identity(123) })
  • Fix @supports nested inside pseudo-element (#​4265)

    When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as ::placeholder for correctness. The CSS nesting specification says the following:

    The nesting selector cannot represent pseudo-elements (identical to the behavior of the ':is()' pseudo-class). We’d like to relax this restriction, but need to do so simultaneously for both ':is()' and '&', since they’re intentionally built on the same underlying mechanisms.

    However, it seems like this behavior is different for nested at-rules such as @supports, which do work with pseudo-elements. So this release modifies esbuild's behavior to now take that into account:

    /* Original code */
    ::placeholder {
      color: red;
      body & { color: green }
      @​supports (color: blue) { color: blue }
    }
    
    /* Old output (with --supported:nesting=false) */
    ::placeholder {
      color: red;
    }
    body :is() {
      color: green;
    }
    @​supports (color: blue) {
       {
        color: blue;
      }
    }
    
    /* New output (with --supported:nesting=false) */
    ::placeholder {
      color: red;
    }
    body :is() {
      color: green;
    }
    @​supports (color: blue) {
      ::placeholder {
        color: blue;
      }
    }
eslint/eslint (eslint)

v9.36.0

Compare Source

sindresorhus/globals (globals)

v16.4.0

Compare Source


TypeStrong/TypeDoc (typedoc)

v0.28.13

Compare Source

Features
  • The basePath option now also affects relative link resolution, TypeDoc will also check for
    paths relative to the provided base path. If you instead want TypeDoc to only change the rendered
    base path for sources, use the displayBasePath option, #​3009.
Bug Fixes
  • Fixed bug introduced in 0.28.8 where TypeDoc could not render docs with some mixin classes, #​3007.
  • @inheritDoc will now correctly overwrite @remarks and @returns blocks on the target comment, #​3012.
  • The externalSymbolLinkMappings option now works properly on links pointing to inherited/overwritten signatures, #​3014.
microsoft/TypeScript (typescript)

v5.9.3

Compare Source

typescript-eslint/typescript-eslint (typescript-eslint)

v8.45.0

Compare Source

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

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

v8.44.1

Compare Source

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

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

v8.44.0

Compare Source

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

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

v8.43.0

Compare Source

🩹 Fixes
  • eslint-plugin: [no-deprecated] should report deprecated exports and reexports (#​11359)
❤️ Thank You

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

nodejs/undici (undici)

v7.16.0

Compare Source

What's Changed

New Contributors

Full Changelog: nodejs/undici@v7.15.0...v7.16.0


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

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Sep 15, 2025
Copy link

github-actions bot commented Sep 15, 2025

Visit the preview URL for this PR (updated for commit 83c46c3):

https://whatsappapijs--pr443-renovate-all-minor-p-2zawsmlx.web.app

(expires Wed, 08 Oct 2025 00:37:46 GMT)

🔥 via Firebase Hosting GitHub Action 🌎

Sign: 80a8dc4ceea5c783aae1d47b75797ee5b6c2f4be

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 2ed70ce to 18e42a5 Compare September 23, 2025 02:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 3773e24 to 7a39a87 Compare September 30, 2025 23:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7a39a87 to 83c46c3 Compare October 1, 2025 00:36
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.

0 participants