Skip to content

Latest commit

 

History

History
82 lines (57 loc) · 1.86 KB

CHANGELOG.md

File metadata and controls

82 lines (57 loc) · 1.86 KB

socks-proxy-agent

8.0.3

Patch Changes

  • ada656d: Pass socket_options to SocksClient
  • Updated dependencies [e62863c]
    • agent-base@7.1.1

8.0.2

Patch Changes

  • 1d39f6c: Fix Electron support by using Node.js native URL object

8.0.1

Patch Changes

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

8.0.0

Major Changes

  • d99a7c8: Major version bump for all packages
    • ⚠️ This is a breaking change! The SocksProxyAgent constructor argument has been split into two arguments.

Upgrading from 5.x to 6.x

In version 5.x, the SocksProxyAgent constructor took a single argument of either (A) a string, or (B) an object with specific connection properties.

Now the constructor takes two separate arguments:

If you were using an object argument in 7.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.

7.x usage:

const agent = new SocksProxyAgent({
	hostname: 'myproxy.mydomain.com',
	userId: 'proxyUser',
	password: 'proxyPass'
  timeout: 1000
});

Updated 8.x usage:

const agent = new SocksProxyAgent(
  {
    hostname: 'myproxy.mydomain.com'
    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