Skip to content

Bump the prod-major group in /javascript with 8 updates - #58

Merged
github-actions[bot] merged 2 commits into
mainfrom
dependabot/npm_and_yarn/javascript/prod-major-3166b5a052
Sep 4, 2026
Merged

Bump the prod-major group in /javascript with 8 updates#58
github-actions[bot] merged 2 commits into
mainfrom
dependabot/npm_and_yarn/javascript/prod-major-3166b5a052

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 4, 2026

Copy link
Copy Markdown
Contributor

Bumps the prod-major group in /javascript with 8 updates:

Package From To
got 14.6.6 16.0.0
https-proxy-agent 7.0.6 9.1.0
ky 1.14.3 2.1.0
puppeteer 24.38.0 25.9.0
socks-proxy-agent 8.0.5 10.1.0
typed-rest-client 2.2.0 3.1.0
undici 7.29.0 8.10.1
wretch 2.11.1 3.0.9

Updates got from 14.6.6 to 16.0.0

Release notes

Sourced from got's releases.

v16.0.0

Breaking changes

  • Rewrite HTTP/2 support and drop the http2-wrapper dependency (#2464) 1e157c4
    • Got now has a built-in HTTP/2 client: ALPN negotiation, a pooled session cache with multiplexing, GOAWAY retirement, request and response trailers, informational (1xx) responses, abort signals, response caching, IPv6 authorities, and h2c through h2session.
    • agent.http2 is no longer an agent slot. It is only an opt-out flag now: pass false to skip session pooling. Passing an agent instance throws.
    • Response headers no longer contain HTTP/2 pseudo-headers. Use response.statusCode instead of response.headers[':status'].
    • A custom agent.https combined with http2: true makes Got use the native HTTP/1.1 path, because the built-in session pool does not support custom HTTPS agents.
    • HTTP/2 proxy support is gone. It came from http2-wrapper. It was very buggy anyway.
    • If options.request returns a request or response, it controls the transport and the HTTP/2 client is bypassed. Return undefined to fall back to Got's own transport.
  • Rewrite DNS cache and drop the cacheable-lookup dependency (#2463) bfc400b
    • dnsCache: true now uses Got's own cache. The option accepts any object with a lookup function and an optional clear(hostname?) function, so an existing CacheableLookup instance still works if you keep the dependency yourself.
    • The built-in cache resolves A and AAAA records separately, so it cannot preserve OS-specific verbatim address ordering from dns.lookup().
  • A beforeRequest hook, an afterResponse retry, or a pagination step that moves the request to a different origin now strips credentials and drops the body (#2465) dd3b295
    • authorization, cookie, cookie2, host, and proxy-authorization are removed, URL credentials are dropped, and an unchanged body is cleared. Set the headers or body explicitly inside the hook if you want them to cross the origin boundary.
    • This applies whether the origin changes through url or through prefixUrl.
  • copyPipedHeaders no longer copies credentials 1d233ba
    • authorization, cookie, cookie2, set-cookie, and set-cookie2 are now omitted along with host, the hop-by-hop headers, and anything nominated by Connection / Proxy-Connection. Pass credentials explicitly in headers when the upstream is trusted.
  • Remove the deprecated searchParameters, followRedirects, and auth option stubs 1d233ba
    • They only existed to throw a guidance message. Passing them now throws Unexpected option: ….
  • Remove the OptionsOfUnknownResponseBody type 1d233ba
    • It was a pure alias for StrictOptions.

Improvements

  • Add support for the QUERY HTTP method (#2466) e3924aa
    • Adds got.query() and got.stream.query(). QUERY is safe and idempotent, so it is retried by default and keeps a replayable body across 301 and 302 redirects as well as 307 and 308. It is not stored by the built-in cache, because correct QUERY caching needs cache keys that include the request content.
  • allowGetBody now also works over HTTP/2 1e157c4
  • timeout.socket now applies during HTTP/2 TLS negotiation and session setup c6bbb8a
    • It was previously folded into the connection setup timeout and reported as a request timeout. It now produces a real socket timeout and no longer counts DNS lookup time.
  • Two fewer dependencies: cacheable-lookup and http2-wrapper bfc400b 1e157c4

Fixes

  • Retry on connection errors reported by request.end() instead of failing the request (#2470) 67919b2
  • Retry immediately when the server answers with Retry-After: 0 instead of falling back to the backoff delay (#2471) d35ce87
  • Preserve the response body when a cookie jar write throws c6bbb8a
    • error.response.body is now complete, decompressed, and decoded with the configured encoding, and a decoding failure no longer masks the original error.
  • Wait for async cookie jar writes on terminal redirect responses, for example with followRedirect: false c6bbb8a
  • Only buffer the response body for cookie handling when the response actually sends set-cookie c6bbb8a
  • Fix got.stream finalizing the response before the response event and before piped server response headers are set c6bbb8a
  • Fix strictContentLength counting bytes from responses that were not actually decompressed c6bbb8a
  • Freeze hooks.beforeCache along with the other hook arrays on non-mutable defaults 1d233ba
  • Keep URL credentials when prefixUrl is changed to a same-origin value, and treat credentials in prefixUrl as explicit dd3b295

Migration guide

HTTP/2

Remove http2-wrapper from your code. Got's HTTP/2 client is built in.

... (truncated)

Commits

Updates https-proxy-agent from 7.0.6 to 9.1.0

Release notes

Sourced from https-proxy-agent's releases.

https-proxy-agent@9.1.0

Minor Changes

  • 84e85ed: Add onProxyAuth callback and negotiate option for Kerberos/SPNEGO proxy authentication

    • Extract shared Negotiate/SPNEGO auth logic into new proxy-agent-negotiate package
    • Added optional onProxyAuth async callback to HttpsProxyAgent and HttpProxyAgent options
    • When the proxy responds with 407 Proxy-Authentication Required, the callback is invoked with the response and auth scheme
    • The callback returns headers (e.g. Proxy-Authorization) to retry the request with
    • Added negotiate: true option that uses the kerberos package for automatic Negotiate/SPNEGO auth
    • Added kerberos as an optional peer dependency of proxy-agent-negotiate
    • Extended the proxy test package to support authenticate: 'negotiate' mode for mock testing
  • 3ebf4b2: Add proxy event emission on the request object for all proxy agents. After the proxy connection is established, the request emits a proxy event with { proxy, socket } where proxy is the proxy URL string. This is useful for debugging and logging which proxy was used for a connection.

Patch Changes

  • 1852c75: Fix socket event race condition by deferring socket.resume() via setImmediate(), ensuring HTTP client machinery has time to attach data listeners before data starts flowing
  • Updated dependencies [84e85ed]
    • proxy-agent-negotiate@1.1.0

https-proxy-agent@9.0.0

Major Changes

  • 7d12b51: Set minimum Node.js version to 20

Patch Changes

  • 7ca27d0: Simplify package.json exports to remove unnecessary imports restriction
  • Updated dependencies [ca12148]
  • Updated dependencies [7d12b51]
  • Updated dependencies [7ca27d0]
    • agent-base@9.0.0

https-proxy-agent@8.0.0

Major Changes

  • 9c92c09: Convert to ESM. All packages now use "type": "module" and compile to ESM output instead of CommonJS.

Patch Changes

  • Updated dependencies [9c92c09]
    • agent-base@8.0.0
Changelog

Sourced from https-proxy-agent's changelog.

9.1.0

Minor Changes

  • 84e85ed: Add onProxyAuth callback and negotiate option for Kerberos/SPNEGO proxy authentication

    • Extract shared Negotiate/SPNEGO auth logic into new proxy-agent-negotiate package
    • Added optional onProxyAuth async callback to HttpsProxyAgent and HttpProxyAgent options
    • When the proxy responds with 407 Proxy-Authentication Required, the callback is invoked with the response and auth scheme
    • The callback returns headers (e.g. Proxy-Authorization) to retry the request with
    • Added negotiate: true option that uses the kerberos package for automatic Negotiate/SPNEGO auth
    • Added kerberos as an optional peer dependency of proxy-agent-negotiate
    • Extended the proxy test package to support authenticate: 'negotiate' mode for mock testing
  • 3ebf4b2: Add proxy event emission on the request object for all proxy agents. After the proxy connection is established, the request emits a proxy event with { proxy, socket } where proxy is the proxy URL string. This is useful for debugging and logging which proxy was used for a connection.

Patch Changes

  • 1852c75: Fix socket event race condition by deferring socket.resume() via setImmediate(), ensuring HTTP client machinery has time to attach data listeners before data starts flowing
  • Updated dependencies [84e85ed]
    • proxy-agent-negotiate@1.1.0

9.0.0

Major Changes

  • 7d12b51: Set minimum Node.js version to 20

Patch Changes

  • 7ca27d0: Simplify package.json exports to remove unnecessary imports restriction
  • Updated dependencies [ca12148]
  • Updated dependencies [7d12b51]
  • Updated dependencies [7ca27d0]
    • agent-base@9.0.0

8.0.0

Major Changes

  • 9c92c09: Convert to ESM. All packages now use "type": "module" and compile to ESM output instead of CommonJS.

Patch Changes

  • Updated dependencies [9c92c09]
    • agent-base@8.0.0
Commits
  • 065d1ff Version Packages (#416)
  • 84e85ed feat: add onProxyAuth callback and Negotiate/Kerberos proxy auth support (#420)
  • 3ebf4b2 feat: add proxy event emission on request for all proxy agents (#422)
  • 1852c75 fix(https-proxy-agent): defer socket.resume() to prevent data race condition ...
  • 42a7ffa fix: use proxy_hostname from NordVPN metadata for correct TLS cert matching
  • 8761b47 fix: log error message on each E2E retry attempt
  • 434d237 fix: increase E2E test timeout to 120s for retry headroom
  • 671a314 fix: retry NordVPN E2E proxy tests with different servers on failure (#419)
  • af317e0 Version Packages (#397)
  • 7ca27d0 Simplify package.json exports to remove unnecessary imports restriction (#408)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for https-proxy-agent since your current version.


Updates ky from 1.14.3 to 2.1.0

Release notes

Sourced from ky's releases.

v2.1.0

Improvements

  • Add QUERY method support (#873) 6edddd9
  • Allow parseJson to handle empty bodies (#877) 294fe63
  • Reject malformed HTTP URLs with baseUrl be60db5
  • Improve Retry-After handling (#874) 3419113
  • Harden retry c426f19

Fixes

  • Fix progress callbacks for empty request and response bodies (#881) 99644d0
  • Fix signal replacement when extending instances (#880) 0bda554
  • Fix extend() dropping numeric retry limit when merging with an object (#867) 06375ef
  • Fix handling of Safari errors with domains 61d6d66

sindresorhus/ky@v2.0.2...v2.1.0

v2.0.2

  • Fix init hook URLSearchParams deletions add0703
  • Fix tuple searchParams mutations leaking across init-hook requests (#861) 346f898

sindresorhus/ky@v2.0.1...v2.0.2

v2.0.1

  • Improve compatibility with custom fetch implementations (#858) 2971991
  • Fix fetch option forwarding 2df9b7e

sindresorhus/ky@v2.0.0...v2.0.1

v2.0.0

Breaking

  • Require Node.js 22 f1da0fc
  • Unify hook signatures around a single state object (#827) ecdd45e
    • All hooks now receive a single {request, options, retryCount, ...} state object instead of separate arguments.
  • Rename prefixUrl to prefix, and allow leading slashes in input (#606) 1f2ad7f
  • Make beforeError hook receive all errors, not just HTTPError (#829) 101c74b
  • Make .json() throw on empty bodies and 204 responses instead of returning an empty string (#854) 1b8e1ff
  • Merge searchParams with input URL instead of replacing (#840) 29e78fe
  • Strip Ky-specific properties from normalized options passed to hooks (#826) 433febd
  • Treat hook errors as fatal outside retry handling (#834) 90c6d00

New

... (truncated)

Commits
  • d27ad21 2.1.0
  • 99644d0 Fix progress callbacks for empty request and response bodies (#881)
  • 0bda554 Fix signal replacement when extending instances (#880)
  • 294fe63 Allow parseJson to handle empty bodies (#877)
  • c426f19 Harden retry
  • be60db5 Reject malformed HTTP URLs with baseUrl
  • 3419113 Improve Retry-After handling (#874)
  • 06375ef Fix extend() dropping numeric retry limit when merging with an object (#867)
  • 6edddd9 Add QUERY method support (#873)
  • f37e82c Fix flaky totalTimeout retry test
  • Additional commits viewable in compare view

Updates puppeteer from 24.38.0 to 25.9.0

Release notes

Sourced from puppeteer's releases.

puppeteer-core: v25.9.0

25.9.0 (2026-08-24)

🎉 Features

🛠️ Fixes

puppeteer: v25.9.0

25.9.0 (2026-08-24)

♻️ Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 25.8.0 to 25.9.0

puppeteer-core: v25.8.0

25.8.0 (2026-08-17)

🎉 Features

🛠️ Fixes

  • computeSystemExecutablePath support validatePath (#15340) (73da9a4)
  • launch browsers in detached mode on Windows to fix flakiness (#15339) (8e1022b)
  • remove redundant overwrite and file access from ScreenRecorder (#15352) (61a1675)

Dependencies

  • The following workspace dependencies were updated

... (truncated)

Changelog

Sourced from puppeteer's changelog.

Changelog

Puppeteer's canonical changelogs are maintained with the packages:

The combined changelog is generated when the documentation website is built.

Historical combined entries are retained below.

25.8.0 (2026-08-17)

🎉 Features

🛠️ Fixes

  • computeSystemExecutablePath support validatePath (#15340) (73da9a4)
  • launch browsers in detached mode on Windows to fix flakiness (#15339) (8e1022b)
  • remove redundant overwrite and file access from ScreenRecorder (#15352) (61a1675)

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • @​puppeteer/browsers bumped from 3.2.0 to 3.2.1

25.7.0 (2026-08-13)

🎉 Features

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 25.6.0 to 25.7.0

... (truncated)

Commits

Updates socks-proxy-agent from 8.0.5 to 10.1.0

Release notes

Sourced from socks-proxy-agent's releases.

socks-proxy-agent@10.1.0

Minor Changes

  • 3ebf4b2: Add proxy event emission on the request object for all proxy agents. After the proxy connection is established, the request emits a proxy event with { proxy, socket } where proxy is the proxy URL string. This is useful for debugging and logging which proxy was used for a connection.

socks-proxy-agent@10.0.0

Major Changes

  • 7d12b51: Set minimum Node.js version to 20

Patch Changes

  • 7ca27d0: Simplify package.json exports to remove unnecessary imports restriction
  • Updated dependencies [ca12148]
  • Updated dependencies [7d12b51]
  • Updated dependencies [7ca27d0]
    • agent-base@9.0.0

socks-proxy-agent@9.0.0

Major Changes

  • 9c92c09: Convert to ESM. All packages now use "type": "module" and compile to ESM output instead of CommonJS.

Patch Changes

  • Updated dependencies [9c92c09]
    • agent-base@8.0.0
Changelog

Sourced from socks-proxy-agent's changelog.

10.1.0

Minor Changes

  • 3ebf4b2: Add proxy event emission on the request object for all proxy agents. After the proxy connection is established, the request emits a proxy event with { proxy, socket } where proxy is the proxy URL string. This is useful for debugging and logging which proxy was used for a connection.

10.0.0

Major Changes

  • 7d12b51: Set minimum Node.js version to 20

Patch Changes

  • 7ca27d0: Simplify package.json exports to remove unnecessary imports restriction
  • Updated dependencies [ca12148]
  • Updated dependencies [7d12b51]
  • Updated dependencies [7ca27d0]
    • agent-base@9.0.0

9.0.0

Major Changes

  • 9c92c09: Convert to ESM. All packages now use "type": "module" and compile to ESM output instead of CommonJS.

Patch Changes

  • Updated dependencies [9c92c09]
    • agent-base@8.0.0
Commits
  • 065d1ff Version Packages (#416)
  • 3ebf4b2 feat: add proxy event emission on request for all proxy agents (#422)
  • 8761b47 fix: log error message on each E2E retry attempt
  • 434d237 fix: increase E2E test timeout to 120s for retry headroom
  • 671a314 fix: retry NordVPN E2E proxy tests with different servers on failure (#419)
  • af317e0 Version Packages (#397)
  • 7ca27d0 Simplify package.json exports to remove unnecessary imports restriction (#408)
  • 7d12b51 Set minimum Node.js version to 20 and add Node 24.x to CI matrix
  • 8dcdac8 Version Packages (#395)
  • 5d3f71a Use pnpm catalog: for shared dependencies
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for socks-proxy-agent since your current version.


Updates typed-rest-client from 2.2.0 to 3.1.0

Commits
Maintainer changes

This version was pushed to npm by microsoft1es, a new releaser for typed-rest-client since your current version.


Updates undici from 7.29.0 to 8.10.1

Release notes

Sourced from undici's releases.

v8.10.1

What's Changed

New Contributors

Full Changelog: nodejs/undici@v8.10.0...v8.10.1

... (truncated)

Commits
  • ede2a74 Bumped v8.10.1 (#5743)
  • d0389ca test: skip HTTP/2 churn test on Node.js 26 (#5742)
  • 8b00542 fix(agent): preserve pools with pending GOAWAY replays (#5740)
  • c32ea13 fix(h2): forward 1xx informational responses to onInfo (#5712)
  • f474548 test: restore /xhr to the WPT filter (#5723)
  • 3e622dc fix(cache): evict entries when a key holds a single entry (#5737)
  • fc3450d fix(socks5-proxy-agent): destroy socket when negotiation times out (#5709)
  • efc4f09 build(deps): bump brace-expansion (#5719)
  • 8726edc build(deps-dev): bump @​fastify/busboy from 3.2.1 to 3.2.2 (#5718)
  • 5033aa1 fix(env-http-proxy-agent): ignore trailing dots when matching no_proxy (#5637)
  • Additional commits viewable in compare view

Updates wretch from 2.11.1 to 3.0.9

Release notes

Sourced from wretch's releases.

3.0.9

3.0.9 (2026-06-19)

🎨 Code improvement(s)

  • Narrow AbortAddon controller() return type to AbortController (6a83061)

🐛 Bug fix(es)

  • Fix .fetchError catching user errors (9a8faad), closes #318

3.0.8

3.0.8 (2026-05-23)

⚠️ Potential TypeScript breaking change

This may surface new typescript errors in existing code that previously compiled with overly narrow types. In practice, this means code that assumed the result was always Data may now need to handle additional catcher return values.

Although this can be a type-level breaking change, it is a correctness fix: the previous typings were incomplete and did not match actual runtime behavior.

👉 This change does not affect runtime behavior.


🐛 Bug fix(es)

  • Fix catcher return type inference (f78f32a), closes #313

wretch now reflects catcher callback return types in the final promise type.

For example, this is now inferred correctly:

const result = await wretch(url)
  .get()
  .notFound(() => "notFound" as const)
  .json<Data>()

And result is now typed as:

Data | "notFound"

Catchers with no return value are now reflected as undefined, and the same typing improvement also applies through .resolve() and deferred catchers configured with .defer().

// a slightly more exhaustive example
</tr></table> 

... (truncated)

Changelog

Sourced from wretch's changelog.

3.0.9 (2026-06-19)

🎨 Code improvement(s)

  • Narrow AbortAddon controller() return type to AbortController (6a83061)

🐛 Bug fix(es)

  • Fix .fetchError catching user errors (9a8faad), closes #318

3.0.8 (2026-05-23)

⬆️ Version update(s)

🐛 Bug fix(es)

  • Fix catcher return type inference (f78f32a), closes #313

✅ Test improvement(s)

  • Properly typecheck tests (5af0e78)

3.0.7 (2026-03-07)

⬆️ Version update(s)

  • Bump fastify from 5.6.1 to 5.7.3 (153cae9)
  • Bump lodash from 4.17.21 to 4.17.23 (2355d02)
  • Bump qs from 6.14.0 to 6.14.2 (02ca86e)
  • Upgrade dependencies (f677f28)

🏭 New feature(s)

  • Allow multiple error ids on catchers (dc93190)

... (truncated)

Commits
  • 32d5f68 v3.0.9
  • 9a8faad 🐛 Fix .fetchError catching user errors
  • a7c2185 Merge pull request #316 from Ruby-Leung/narrow-abort-controller-type
  • 6a83061 🎨 Narrow AbortAddon controller() return type to AbortController
  • 76821f8 v3.0.8
  • 56165dc ⬆️ Upgrade dependencies
  • 14185e9 ⬆️ Add min-release-age guard
  • 81831c6 Merge pull request #314 from elbywan/narrow-catcher-return-type
  • 5af0e78 ✅ Properly typecheck tests
  • f78f32a 🐛 Fix catcher return type inference
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for wretch since your current version.


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the prod-major group in /javascript with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [got](https://github.com/sindresorhus/got) | `14.6.6` | `16.0.0` |
| [https-proxy-agent](https://github.com/TooTallNate/proxy-agents/tree/HEAD/packages/https-proxy-agent) | `7.0.6` | `9.1.0` |
| [ky](https://github.com/sindresorhus/ky) | `1.14.3` | `2.1.0` |
| [puppeteer](https://github.com/puppeteer/puppeteer) | `24.38.0` | `25.9.0` |
| [socks-proxy-agent](https://github.com/TooTallNate/proxy-agents/tree/HEAD/packages/socks-proxy-agent) | `8.0.5` | `10.1.0` |
| [typed-rest-client](https://github.com/Microsoft/typed-rest-client) | `2.2.0` | `3.1.0` |
| [undici](https://github.com/nodejs/undici) | `7.29.0` | `8.10.1` |
| [wretch](https://github.com/elbywan/wretch) | `2.11.1` | `3.0.9` |


Updates `got` from 14.6.6 to 16.0.0
- [Release notes](https://github.com/sindresorhus/got/releases)
- [Commits](sindresorhus/got@v14.6.6...v16.0.0)

Updates `https-proxy-agent` from 7.0.6 to 9.1.0
- [Release notes](https://github.com/TooTallNate/proxy-agents/releases)
- [Changelog](https://github.com/TooTallNate/proxy-agents/blob/main/packages/https-proxy-agent/CHANGELOG.md)
- [Commits](https://github.com/TooTallNate/proxy-agents/commits/https-proxy-agent@9.1.0/packages/https-proxy-agent)

Updates `ky` from 1.14.3 to 2.1.0
- [Release notes](https://github.com/sindresorhus/ky/releases)
- [Commits](sindresorhus/ky@v1.14.3...v2.1.0)

Updates `puppeteer` from 24.38.0 to 25.9.0
- [Release notes](https://github.com/puppeteer/puppeteer/releases)
- [Changelog](https://github.com/puppeteer/puppeteer/blob/main/CHANGELOG.md)
- [Commits](puppeteer/puppeteer@puppeteer-v24.38.0...puppeteer-v25.9.0)

Updates `socks-proxy-agent` from 8.0.5 to 10.1.0
- [Release notes](https://github.com/TooTallNate/proxy-agents/releases)
- [Changelog](https://github.com/TooTallNate/proxy-agents/blob/main/packages/socks-proxy-agent/CHANGELOG.md)
- [Commits](https://github.com/TooTallNate/proxy-agents/commits/socks-proxy-agent@10.1.0/packages/socks-proxy-agent)

Updates `typed-rest-client` from 2.2.0 to 3.1.0
- [Release notes](https://github.com/Microsoft/typed-rest-client/releases)
- [Commits](https://github.com/Microsoft/typed-rest-client/commits)

Updates `undici` from 7.29.0 to 8.10.1
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](nodejs/undici@v7.29.0...v8.10.1)

Updates `wretch` from 2.11.1 to 3.0.9
- [Release notes](https://github.com/elbywan/wretch/releases)
- [Changelog](https://github.com/elbywan/wretch/blob/master/CHANGELOG.md)
- [Commits](elbywan/wretch@2.11.1...3.0.9)

---
updated-dependencies:
- dependency-name: got
  dependency-version: 16.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-major
- dependency-name: https-proxy-agent
  dependency-version: 9.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-major
- dependency-name: ky
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-major
- dependency-name: puppeteer
  dependency-version: 25.9.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-major
- dependency-name: socks-proxy-agent
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-major
- dependency-name: typed-rest-client
  dependency-version: 3.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-major
- dependency-name: undici
  dependency-version: 8.10.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-major
- dependency-name: wretch
  dependency-version: 3.0.9
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Sep 4, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: automerge. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@github-actions
github-actions Bot enabled auto-merge (squash) September 4, 2026 17:01
…r-3166b5a052

Co-authored-by: ProxyMesh AI <proxymeshai@users.noreply.github.com>
@github-actions
github-actions Bot merged commit 6563290 into main Sep 4, 2026
8 of 9 checks passed
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/javascript/prod-major-3166b5a052 branch September 4, 2026 17:02
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