Skip to content

Commit

Permalink
Version Packages (#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Dec 7, 2024
1 parent 55e03bd commit 7cf0b79
Show file tree
Hide file tree
Showing 19 changed files with 82 additions and 65 deletions.
5 changes: 0 additions & 5 deletions .changeset/bright-rocks-dance.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/giant-vans-refuse.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/late-berries-rule.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/lovely-boxes-heal.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pretty-terms-exercise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sixty-carpets-cross.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/swift-lizards-poke.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/unlucky-vans-shout.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.1.2

### Patch Changes

- 1699a09: Handle exceptions caused by Agent.addRequest()

## 7.1.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.1.1",
"version": "7.1.2",
"description": "Turn a function into an `http.Agent` instance",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions packages/https-proxy-agent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# https-proxy-agent

## 7.0.6

### Patch Changes

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

## 7.0.5

### Patch Changes
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": "7.0.5",
"version": "7.0.6",
"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.2",
"agent-base": "^7.1.2",
"debug": "4"
},
"devDependencies": {
Expand Down
17 changes: 17 additions & 0 deletions packages/pac-proxy-agent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# pac-proxy-agent

## 7.1.0

### Minor Changes

- 38760db: Lazily load agents inside pac-proxy-agent

### Patch Changes

- 77c3599: use WHATWG URL class to construct url parameter
- 913a49a: Only overwrite servername in tls connect when host is not an IP address
- e90e2b2: Properly forward WebSocket requests via PAC agents that resolve to HTTP proxies
- Updated dependencies [913a49a]
- Updated dependencies [1699a09]
- https-proxy-agent@7.0.6
- socks-proxy-agent@8.0.5
- agent-base@7.1.2

## 7.0.2

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/pac-proxy-agent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pac-proxy-agent",
"version": "7.0.2",
"version": "7.1.0",
"description": "A PAC file proxy `http.Agent` implementation for HTTP",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -32,13 +32,13 @@
"license": "MIT",
"dependencies": {
"@tootallnate/quickjs-emscripten": "^0.23.0",
"agent-base": "^7.0.2",
"agent-base": "^7.1.2",
"debug": "^4.3.4",
"get-uri": "^6.0.1",
"http-proxy-agent": "^7.0.0",
"https-proxy-agent": "^7.0.5",
"https-proxy-agent": "^7.0.6",
"pac-resolver": "^7.0.1",
"socks-proxy-agent": "^8.0.4"
"socks-proxy-agent": "^8.0.5"
},
"devDependencies": {
"@types/debug": "^4.1.7",
Expand Down
20 changes: 20 additions & 0 deletions packages/proxy-agent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# proxy-agent

## 6.5.0

### Minor Changes

- 85b10b3: Lazily load agents in proxy-agent
- 96b771b: Include ClientRequest in getProxyForUrl parameters for additional flexibility

### Patch Changes

- ad68f63: Dispose of Agent instances in cache correctly
- Updated dependencies [38760db]
- Updated dependencies [77c3599]
- Updated dependencies [913a49a]
- Updated dependencies [1699a09]
- Updated dependencies [e90e2b2]
- pac-proxy-agent@7.1.0
- https-proxy-agent@7.0.6
- socks-proxy-agent@8.0.5
- agent-base@7.1.2

## 6.4.0

### Minor Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/proxy-agent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "proxy-agent",
"version": "6.4.0",
"version": "6.5.0",
"description": "Maps proxy protocols to `http.Agent` implementations",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -32,14 +32,14 @@
"author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
"license": "MIT",
"dependencies": {
"agent-base": "^7.0.2",
"agent-base": "^7.1.2",
"debug": "^4.3.4",
"http-proxy-agent": "^7.0.1",
"https-proxy-agent": "^7.0.5",
"https-proxy-agent": "^7.0.6",
"lru-cache": "^7.14.1",
"pac-proxy-agent": "^7.0.2",
"pac-proxy-agent": "^7.1.0",
"proxy-from-env": "^1.1.0",
"socks-proxy-agent": "^8.0.4"
"socks-proxy-agent": "^8.0.5"
},
"devDependencies": {
"@types/agent-base": "^4.2.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/socks-proxy-agent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# socks-proxy-agent

## 8.0.5

### Patch Changes

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

## 8.0.4

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/socks-proxy-agent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "socks-proxy-agent",
"version": "8.0.4",
"version": "8.0.5",
"description": "A SOCKS proxy `http.Agent` implementation for HTTP and HTTPS",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -107,7 +107,7 @@
"socks5h"
],
"dependencies": {
"agent-base": "^7.1.1",
"agent-base": "^7.1.2",
"debug": "^4.3.4",
"socks": "^2.8.3"
},
Expand Down
18 changes: 9 additions & 9 deletions pnpm-lock.yaml

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

0 comments on commit 7cf0b79

Please sign in to comment.