Skip to content

Comments

fix(deps): update dependency https-proxy-agent to v7#1403

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/https-proxy-agent-7.x
Open

fix(deps): update dependency https-proxy-agent to v7#1403
renovate[bot] wants to merge 1 commit intomainfrom
renovate/https-proxy-agent-7.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Sep 5, 2024

This PR contains the following updates:

Package Change Age Confidence
https-proxy-agent (source) 5.0.17.0.6 age confidence

Release Notes

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

v7.0.6

Compare Source

Patch Changes
  • 913a49a: Only overwrite servername in tls connect when host is not an IP address
  • Updated dependencies [1699a09]
    • agent-base@​7.1.2

v7.0.5

Compare Source

Patch Changes
  • 5908e84: Remove net.isIP() check for TLS servername

v7.0.4

Compare Source

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

v7.0.3

Compare Source

Patch Changes
  • c3c405e: Add missing URL type import

v7.0.2

Compare Source

Patch Changes
  • e625d10: Support SNI for proxy servers

v7.0.1

Compare Source

Patch Changes
  • 23fe1e3: Correct the header parsing logic to stop before the response content to avoid generating an exception.

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

Compare Source

Patch Changes
  • 0b8a0b7: Properly reject errors during proxy CONNECT response

v6.2.0

Compare Source

Minor Changes
  • 8ff9faa: "headers" option can now be a function
Patch Changes
  • Updated dependencies [66b4c63]
    • agent-base@​7.0.2

v6.1.0

Compare Source

Minor Changes
  • fd6209c: Emit "proxyConnect" event on HTTP request object (part of #​153)
  • c573dbe: Emit "proxyConnect" event on Agent instance
Patch Changes
  • 7674748: Update @types/node to v14.18.45
  • Updated dependencies [7674748]
    • agent-base@​7.0.1

v6.0.0

Compare Source

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

In version 5.x, the HttpsProxyAgent 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 and/or custom options supported by this package.

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 HttpsProxyAgent({
  protocol: 'https:',
  host: 'myproxy.mydomain.com'
  port: '1234',
  auth: 'proxyUser:proxyPass',
  timeout: 1000,
  headers: { 'trace', 'foo' }
});

Updated 6.x usage:

const agent = new HttpsProxyAgent(
  'https://proxyUser:proxyPass@myproxy.mydomain.com:1234',
  {
    timeout: 1000,
    headers: { 'trace', 'foo' }
  }
);
Minor Changes
  • 4333067: Add support for core keepAlive: true
Patch Changes
  • c169ced: Convert mocha tests to jest for all packages
  • 06775a8: Add test for rejectUnauthorized: false missing on request options
  • Updated dependencies [c169ced]
  • Updated dependencies [d99a7c8]
  • Updated dependencies [4333067]
    • agent-base@​7.0.0

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.

@renovate renovate bot requested a review from a team September 5, 2024 13:05
@renovate renovate bot force-pushed the renovate/https-proxy-agent-7.x branch from 0c7a862 to 73a6659 Compare September 16, 2024 12:40
@renovate renovate bot changed the title Update dependency https-proxy-agent to v7 fix(deps): update dependency https-proxy-agent to v7 Sep 16, 2024
@renovate renovate bot force-pushed the renovate/https-proxy-agent-7.x branch from 73a6659 to 5a03ee1 Compare September 16, 2024 12:45
@renovate renovate bot force-pushed the renovate/https-proxy-agent-7.x branch 2 times, most recently from 57c4db3 to d9c2790 Compare September 30, 2024 13:22
@renovate renovate bot force-pushed the renovate/https-proxy-agent-7.x branch from d9c2790 to b5f18a6 Compare October 9, 2024 08:38
@renovate renovate bot requested a review from a team as a code owner October 9, 2024 08:38
@renovate renovate bot force-pushed the renovate/https-proxy-agent-7.x branch 3 times, most recently from 8255869 to 360a696 Compare October 15, 2024 18:04
@renovate renovate bot force-pushed the renovate/https-proxy-agent-7.x branch 5 times, most recently from 46eb577 to 19bc7b1 Compare October 28, 2024 10:47
@renovate renovate bot force-pushed the renovate/https-proxy-agent-7.x branch 4 times, most recently from c953eea to fd9f5de Compare November 15, 2024 15:31
@renovate renovate bot force-pushed the renovate/https-proxy-agent-7.x branch 3 times, most recently from ccdf291 to b4eb32d Compare November 25, 2024 16:11
@renovate renovate bot force-pushed the renovate/https-proxy-agent-7.x branch from b4eb32d to 387ed50 Compare December 10, 2024 13:54
@renovate renovate bot force-pushed the renovate/https-proxy-agent-7.x branch 5 times, most recently from 16d4e94 to 96f9567 Compare December 28, 2024 08:21
@renovate renovate bot force-pushed the renovate/https-proxy-agent-7.x branch from 96f9567 to 9cd7144 Compare January 6, 2025 13:19
@renovate renovate bot force-pushed the renovate/https-proxy-agent-7.x branch 9 times, most recently from de1d372 to 08bca8e Compare January 21, 2026 12:00
@renovate renovate bot force-pushed the renovate/https-proxy-agent-7.x branch 6 times, most recently from 9672509 to 722280f Compare January 28, 2026 08:40
@renovate renovate bot changed the title fix(deps): update dependency https-proxy-agent to v7 Update dependency https-proxy-agent to v7 Jan 28, 2026
@renovate renovate bot force-pushed the renovate/https-proxy-agent-7.x branch 5 times, most recently from 828846f to 0961458 Compare January 29, 2026 08:43
@renovate renovate bot changed the title Update dependency https-proxy-agent to v7 fix(deps): update dependency https-proxy-agent to v7 Jan 29, 2026
@renovate renovate bot force-pushed the renovate/https-proxy-agent-7.x branch 5 times, most recently from ab566e4 to 1aeb272 Compare January 30, 2026 09:20
@renovate renovate bot force-pushed the renovate/https-proxy-agent-7.x branch from 1aeb272 to 2d3e16e Compare February 5, 2026 10:13
@renovate renovate bot force-pushed the renovate/https-proxy-agent-7.x branch from 2d3e16e to 335abfb Compare February 5, 2026 12:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants