chore(deps): update dependency http-proxy-agent to v7 - abandoned #527

Closed
renovate[bot] wants to merge 3 commits from renovate/http-proxy-agent-7.x-lockfile into main
renovate[bot] commented 2025-11-28 15:42:58 +00:00 (Migrated from github.com)

This PR contains the following updates:

Package Change Age Confidence
http-proxy-agent (source) 4.0.1 -> 7.0.2 age confidence

Release Notes

TooTallNate/proxy-agents (http-proxy-agent)

v7.0.2

Compare Source

Patch Changes
  • b88ab46: Import url instead of node:url 🤷‍♂️

v7.0.1

Compare Source

Patch Changes
  • c3c405e: Add missing URL type import

v7.0.0

Compare Source

Major Changes
  • b3860aa: Remove secureProxy getter

    It was not meant to be a public property. If you were using it, just use agent.proxy.protocol === 'https:' instead.

v6.1.1

Compare Source

Patch Changes
  • eb6906b: Fix keepAlive: true
  • Updated dependencies [da699b1]
    • agent-base@​7.1.0

v6.1.0

Compare Source

Minor Changes
Patch Changes
  • Updated dependencies [66b4c63]
    • agent-base@​7.0.2

v6.0.1

Patch Changes
  • 7674748: Update @types/node to v14.18.45
  • Updated dependencies [7674748]
    • agent-base@​7.0.1

v6.0.0

Major Changes
  • d99a7c8: Major version bump for all packages
    • ⚠️ This is a breaking change! The HttpProxyAgent constructor argument has been split into two arguments.
Upgrading from 5.x to 6.x

In version 5.x, the HttpProxyAgent constructor took a single argument of either (A) a string, or (B) an object matching the output of
the deprecated url.parse() method
and various extra options.

Now the constructor takes two separate arguments:

  • Argument 1: Either (A) a string, or (B) a WHATWG URL object
  • Argument 2 (optional): An object with standard http.Agent,
    net.TcpNetConnectOpts, and tls.ConnectionOptions properties.

If you were using an object argument in 5.x, you'll need to change the first argument to match the structure of the URL class, and move
any other options to the second argument.

5.x usage:

const agent = new HttpProxyAgent({
  protocol: 'https:',
  host: 'myproxy.mydomain.com'
  port: '1234',
  auth: 'proxyUser:proxyPass',
  timeout: 1000
});

Updated 6.x usage:

const agent = new HttpProxyAgent(
  {
    protocol: 'https:',
    hostname: 'myproxy.mydomain.com'
    port: '1234',
    username: 'proxyUser',
    password: 'proxyPass'
  },
  {
    timeout: 1000
  }
);
Minor Changes
  • 4333067: Add support for core keepAlive: true
Patch Changes
  • c169ced: Convert mocha tests to jest for all packages
  • Updated dependencies [c169ced]
  • Updated dependencies [d99a7c8]
  • Updated dependencies [4333067]
    • agent-base@​7.0.0

v5.0.0

Compare Source

Major Changes
  • Refactor to TypeScript: #​95

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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR was generated by Mend Renovate. View the repository job log.

This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [http-proxy-agent](https://redirect.github.com/TooTallNate/proxy-agents) ([source](https://redirect.github.com/TooTallNate/proxy-agents/tree/HEAD/packages/http-proxy-agent)) | [`4.0.1` -> `7.0.2`](https://renovatebot.com/diffs/npm/http-proxy-agent/4.0.1/7.0.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/http-proxy-agent/7.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/http-proxy-agent/4.0.1/7.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>TooTallNate/proxy-agents (http-proxy-agent)</summary> ### [`v7.0.2`](https://redirect.github.com/TooTallNate/proxy-agents/blob/HEAD/packages/http-proxy-agent/CHANGELOG.md#702) [Compare Source](https://redirect.github.com/TooTallNate/proxy-agents/compare/http-proxy-agent@7.0.1...http-proxy-agent@7.0.2) ##### Patch Changes - [`b88ab46`](https://redirect.github.com/TooTallNate/proxy-agents/commit/b88ab46): Import `url` instead of `node:url` 🤷‍♂️ ### [`v7.0.1`](https://redirect.github.com/TooTallNate/proxy-agents/blob/HEAD/packages/http-proxy-agent/CHANGELOG.md#701) [Compare Source](https://redirect.github.com/TooTallNate/proxy-agents/compare/http-proxy-agent@7.0.0...http-proxy-agent@7.0.1) ##### Patch Changes - [`c3c405e`](https://redirect.github.com/TooTallNate/proxy-agents/commit/c3c405e): Add missing `URL` type import ### [`v7.0.0`](https://redirect.github.com/TooTallNate/proxy-agents/blob/HEAD/packages/http-proxy-agent/CHANGELOG.md#700) [Compare Source](https://redirect.github.com/TooTallNate/proxy-agents/compare/http-proxy-agent@6.1.1...http-proxy-agent@7.0.0) ##### Major Changes - [`b3860aa`](https://redirect.github.com/TooTallNate/proxy-agents/commit/b3860aa): Remove `secureProxy` getter It was not meant to be a public property. If you were using it, just use `agent.proxy.protocol === 'https:'` instead. ### [`v6.1.1`](https://redirect.github.com/TooTallNate/proxy-agents/blob/HEAD/packages/http-proxy-agent/CHANGELOG.md#611) [Compare Source](https://redirect.github.com/TooTallNate/proxy-agents/compare/http-proxy-agent@6.1.0...http-proxy-agent@6.1.1) ##### Patch Changes - [`eb6906b`](https://redirect.github.com/TooTallNate/proxy-agents/commit/eb6906b): Fix `keepAlive: true` - Updated dependencies \[[`da699b1`](https://redirect.github.com/TooTallNate/proxy-agents/commit/da699b1)] - agent-base\@&#8203;7.1.0 ### [`v6.1.0`](https://redirect.github.com/TooTallNate/proxy-agents/blob/HEAD/packages/http-proxy-agent/CHANGELOG.md#610) [Compare Source](https://redirect.github.com/TooTallNate/proxy-agents/compare/http-proxy-agent@6.0.1...http-proxy-agent@6.1.0) ##### Minor Changes - [`1069932`](https://redirect.github.com/TooTallNate/proxy-agents/commit/1069932): Added "headers" option ##### Patch Changes - Updated dependencies \[[`66b4c63`](https://redirect.github.com/TooTallNate/proxy-agents/commit/66b4c63)] - agent-base\@&#8203;7.0.2 ### [`v6.0.1`](https://redirect.github.com/TooTallNate/proxy-agents/blob/HEAD/packages/http-proxy-agent/CHANGELOG.md#601) ##### Patch Changes - [`7674748`](https://redirect.github.com/TooTallNate/proxy-agents/commit/7674748): Update `@types/node` to v14.18.45 - Updated dependencies \[[`7674748`](https://redirect.github.com/TooTallNate/proxy-agents/commit/7674748)] - agent-base\@&#8203;7.0.1 ### [`v6.0.0`](https://redirect.github.com/TooTallNate/proxy-agents/blob/HEAD/packages/http-proxy-agent/CHANGELOG.md#600) ##### Major Changes - [`d99a7c8`](https://redirect.github.com/TooTallNate/proxy-agents/commit/d99a7c8): Major version bump for all packages - ⚠️ This is a breaking change! The `HttpProxyAgent` constructor argument has been split into two arguments. ##### Upgrading from 5.x to 6.x In version 5.x, the `HttpProxyAgent` constructor took a single argument of either (A) a `string`, or (B) an object matching the output of the [deprecated `url.parse()` method](https://nodejs.org/docs/latest-v14.x/api/url.html#url_url_parse_urlstring_parsequerystring_slashesdenotehost) *and* various extra options. Now the constructor takes two *separate* arguments: - Argument 1: Either (A) a `string`, or (B) a [WHATWG `URL` object](https://nodejs.org/docs/latest-v14.x/api/url.html#url_the_whatwg_url_api) - Argument 2 (optional): An object with standard [`http.Agent`](https://nodejs.org/docs/latest-v14.x/api/url.html#url_the_whatwg_url_api), `net.TcpNetConnectOpts`, and `tls.ConnectionOptions` properties. If you were using an object argument in 5.x, you'll need to change the first argument to match the structure of the `URL` class, and move any other options to the second argument. 5.x usage: ```ts const agent = new HttpProxyAgent({ protocol: 'https:', host: 'myproxy.mydomain.com' port: '1234', auth: 'proxyUser:proxyPass', timeout: 1000 }); ``` Updated 6.x usage: ```ts const agent = new HttpProxyAgent( { protocol: 'https:', hostname: 'myproxy.mydomain.com' port: '1234', username: 'proxyUser', password: 'proxyPass' }, { timeout: 1000 } ); ``` ##### Minor Changes - [`4333067`](https://redirect.github.com/TooTallNate/proxy-agents/commit/4333067): Add support for core `keepAlive: true` ##### Patch Changes - [`c169ced`](https://redirect.github.com/TooTallNate/proxy-agents/commit/c169ced): Convert mocha tests to jest for all packages - Updated dependencies \[[`c169ced`](https://redirect.github.com/TooTallNate/proxy-agents/commit/c169ced)] - Updated dependencies \[[`d99a7c8`](https://redirect.github.com/TooTallNate/proxy-agents/commit/d99a7c8)] - Updated dependencies \[[`4333067`](https://redirect.github.com/TooTallNate/proxy-agents/commit/4333067)] - agent-base\@&#8203;7.0.0 ### [`v5.0.0`](https://redirect.github.com/TooTallNate/proxy-agents/releases/tag/5.0.0) [Compare Source](https://redirect.github.com/TooTallNate/proxy-agents/compare/d41fd2093cc0ef2314fd5a6fd42a5eb36d728c08...5.0.0) ##### Major Changes - Refactor to TypeScript: [#&#8203;95](https://redirect.github.com/TooTallNate/proxy-agents/issues/95) </details> --- ### 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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/webstreamr/webstreamr). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xOS45IiwidXBkYXRlZEluVmVyIjoiNDIuMTkuOSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
renovate[bot] commented 2025-11-28 15:52:47 +00:00 (Migrated from github.com)

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

### Autoclosing Skipped This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

Pull request closed

Sign in to join this conversation.
No description provided.