Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency http-proxy-agent to v7 - autoclosed #1959

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented May 25, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
http-proxy-agent ^5.0.0 -> ^7.0.0 age adoption passing confidence

Release Notes

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

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

Configuration

📅 Schedule: Branch creation - "after 9am and before 3pm" (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.

🔕 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 has been generated by Mend Renovate. View repository job log here.

@renovate-bot renovate-bot requested review from a team as code owners May 25, 2023 10:36
@product-auto-label product-auto-label bot added the size: xs Pull request size is extra small. label May 25, 2023
@renovate-bot renovate-bot force-pushed the renovate/http-proxy-agent-7.x branch 8 times, most recently from 28c6f2f to d66b36d Compare May 31, 2023 17:48
@renovate-bot renovate-bot force-pushed the renovate/http-proxy-agent-7.x branch 2 times, most recently from d4bbd4a to 6e83c53 Compare June 26, 2023 21:47
@renovate-bot renovate-bot force-pushed the renovate/http-proxy-agent-7.x branch from 6e83c53 to a2f4d2c Compare July 10, 2023 16:38
@product-auto-label product-auto-label bot added size: m Pull request size is medium. and removed size: xs Pull request size is extra small. labels Jul 10, 2023
@renovate-bot renovate-bot force-pushed the renovate/http-proxy-agent-7.x branch 10 times, most recently from 9e886d8 to 8c99446 Compare July 11, 2023 22:58
@renovate-bot renovate-bot force-pushed the renovate/http-proxy-agent-7.x branch 2 times, most recently from edcfb97 to fb90a5a Compare July 25, 2023 21:23
@renovate-bot renovate-bot force-pushed the renovate/http-proxy-agent-7.x branch 2 times, most recently from 90da9ca to fdfe271 Compare August 22, 2023 15:38
@renovate-bot renovate-bot force-pushed the renovate/http-proxy-agent-7.x branch 2 times, most recently from 9b69540 to 07e244f Compare September 7, 2023 17:08
@chingor13 chingor13 added this to the v16 (node 18+) milestone Sep 7, 2023
@renovate-bot renovate-bot force-pushed the renovate/http-proxy-agent-7.x branch 5 times, most recently from c4a6f98 to 6585508 Compare September 11, 2023 20:39
@renovate-bot renovate-bot changed the title fix(deps): update dependency http-proxy-agent to v7 fix(deps): update dependency http-proxy-agent to v7 - autoclosed Sep 12, 2023
@renovate-bot renovate-bot deleted the renovate/http-proxy-agent-7.x branch September 12, 2023 20:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
size: m Pull request size is medium.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants