Skip to content

Commit

Permalink
Version Packages (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 18, 2023
1 parent 1069932 commit c0e0d83
Show file tree
Hide file tree
Showing 16 changed files with 83 additions and 69 deletions.
5 changes: 0 additions & 5 deletions .changeset/seven-horses-buy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shiny-badgers-obey.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tidy-jobs-refuse.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/unlucky-cows-listen.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/agent-base/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# agent-base

## 7.0.2

### Patch Changes

- 66b4c63: Allow for never relying on stack trace

## 7.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/agent-base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "agent-base",
"version": "7.0.1",
"version": "7.0.2",
"description": "Turn a function into an `http.Agent` instance",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
17 changes: 14 additions & 3 deletions packages/http-proxy-agent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# http-proxy-agent

## 6.1.0

### Minor Changes

- 1069932: Added "headers" option

### Patch Changes

- Updated dependencies [66b4c63]
- agent-base@7.0.2

## 6.0.1

### Patch Changes
Expand All @@ -20,11 +31,11 @@
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),
- 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
Expand Down
4 changes: 2 additions & 2 deletions packages/http-proxy-agent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "http-proxy-agent",
"version": "6.0.1",
"version": "6.1.0",
"description": "An HTTP(s) proxy `http.Agent` implementation for HTTP",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand All @@ -27,7 +27,7 @@
"author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
"license": "MIT",
"dependencies": {
"agent-base": "^7.0.1",
"agent-base": "^7.0.2",
"debug": "^4.3.4"
},
"devDependencies": {
Expand Down
17 changes: 14 additions & 3 deletions packages/https-proxy-agent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# https-proxy-agent

## 6.2.0

### Minor Changes

- 8ff9faa: "headers" option can now be a function

### Patch Changes

- Updated dependencies [66b4c63]
- agent-base@7.0.2

## 6.1.0

### Minor Changes
Expand All @@ -25,11 +36,11 @@
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](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),
- 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 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
Expand Down
4 changes: 2 additions & 2 deletions packages/https-proxy-agent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "https-proxy-agent",
"version": "6.1.0",
"version": "6.2.0",
"description": "An HTTP(s) proxy `http.Agent` implementation for HTTPS",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -28,7 +28,7 @@
"author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
"license": "MIT",
"dependencies": {
"agent-base": "^7.0.1",
"agent-base": "^7.0.2",
"debug": "4"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/pac-proxy-agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@
"author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
"license": "MIT",
"dependencies": {
"agent-base": "^7.0.1",
"agent-base": "^7.0.2",
"debug": "^4.3.4",
"get-uri": "^6.0.1",
"http-proxy-agent": "^6.0.1",
"https-proxy-agent": "^6.1.0",
"http-proxy-agent": "^6.1.0",
"https-proxy-agent": "^6.2.0",
"pac-resolver": "^6.0.1",
"socks-proxy-agent": "^8.0.1"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/proxy-agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
"author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
"license": "MIT",
"dependencies": {
"agent-base": "^7.0.1",
"agent-base": "^7.0.2",
"debug": "^4.3.4",
"http-proxy-agent": "^6.0.1",
"https-proxy-agent": "^6.1.0",
"http-proxy-agent": "^6.1.0",
"https-proxy-agent": "^6.2.0",
"lru-cache": "^7.14.1",
"pac-proxy-agent": "^6.0.2",
"proxy-from-env": "^1.1.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/proxy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# proxy

## 2.1.1

### Patch Changes

- 25e0c93: Ensure that `socket.remoteAddress` is a string

## 2.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/proxy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "proxy",
"version": "2.1.0",
"version": "2.1.1",
"description": "An HTTP proxy written with Node.js (think Squid)",
"main": "./dist/proxy.js",
"types": "./dist/proxy.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/socks-proxy-agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
"socks5h"
],
"dependencies": {
"agent-base": "^7.0.1",
"agent-base": "^7.0.2",
"debug": "^4.3.4",
"socks": "^2.7.1"
},
Expand Down
60 changes: 30 additions & 30 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 comment on commit c0e0d83

@vercel
Copy link

@vercel vercel bot commented on c0e0d83 May 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

proxy-agents – ./

proxy-agents.vercel.app
proxy-agents-tootallnate.vercel.app
proxy-agents-git-main-tootallnate.vercel.app

Please sign in to comment.