Skip to content

Commit

Permalink
Version Packages (#149)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed May 4, 2023
1 parent d99a7c8 commit dd7d8af
Show file tree
Hide file tree
Showing 27 changed files with 256 additions and 124 deletions.
15 changes: 0 additions & 15 deletions .changeset/big-feet-beam.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/serious-insects-serve.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/tidy-deers-glow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wild-wasps-double.md

This file was deleted.

15 changes: 15 additions & 0 deletions packages/agent-base/CHANGELOG.md
@@ -0,0 +1,15 @@
# agent-base

## 7.0.0

### Major Changes

- d99a7c8: Major version bump for all packages

### Minor Changes

- 4333067: Add support for core `keepAlive: true`

### Patch Changes

- c169ced: Convert mocha tests to jest for all packages
2 changes: 1 addition & 1 deletion packages/agent-base/package.json
@@ -1,6 +1,6 @@
{
"name": "agent-base",
"version": "6.0.2",
"version": "7.0.0",
"description": "Turn a function into an `http.Agent` instance",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
11 changes: 11 additions & 0 deletions packages/data-uri-to-buffer/CHANGELOG.md
@@ -0,0 +1,11 @@
# data-uri-to-buffer

## 5.0.0

### Major Changes

- d99a7c8: Major version bump for all packages

### Patch Changes

- c169ced: Convert mocha tests to jest for all packages
2 changes: 1 addition & 1 deletion packages/data-uri-to-buffer/package.json
@@ -1,6 +1,6 @@
{
"name": "data-uri-to-buffer",
"version": "4.0.1",
"version": "5.0.0",
"description": "Generate a Buffer instance from a Data URI string",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
11 changes: 11 additions & 0 deletions packages/degenerator/CHANGELOG.md
@@ -0,0 +1,11 @@
# degenerator

## 4.0.0

### Major Changes

- d99a7c8: Major version bump for all packages

### Patch Changes

- c169ced: Convert mocha tests to jest for all packages
2 changes: 1 addition & 1 deletion packages/degenerator/package.json
@@ -1,6 +1,6 @@
{
"name": "degenerator",
"version": "3.0.4",
"version": "4.0.0",
"description": "Compiles sync functions into async generator functions",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
14 changes: 14 additions & 0 deletions packages/get-uri/CHANGELOG.md
@@ -0,0 +1,14 @@
# get-uri

## 6.0.0

### Major Changes

- d99a7c8: Major version bump for all packages

### Patch Changes

- c169ced: Convert mocha tests to jest for all packages
- Updated dependencies [c169ced]
- Updated dependencies [d99a7c8]
- data-uri-to-buffer@5.0.0
4 changes: 2 additions & 2 deletions packages/get-uri/package.json
@@ -1,6 +1,6 @@
{
"name": "get-uri",
"version": "5.0.0",
"version": "6.0.0",
"description": "Returns a `stream.Readable` from a URI string",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -50,7 +50,7 @@
},
"dependencies": {
"basic-ftp": "^5.0.2",
"data-uri-to-buffer": "^4.0.1",
"data-uri-to-buffer": "^5.0.0",
"debug": "^4.3.4",
"fs-extra": "^8.1.0"
},
Expand Down
19 changes: 19 additions & 0 deletions packages/http-proxy-agent/CHANGELOG.md
@@ -0,0 +1,19 @@
# http-proxy-agent

## 6.0.0

### Major Changes

- d99a7c8: Major version bump for all packages

### 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
4 changes: 2 additions & 2 deletions packages/http-proxy-agent/package.json
@@ -1,6 +1,6 @@
{
"name": "http-proxy-agent",
"version": "5.0.0",
"version": "6.0.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": "^6.0.2",
"agent-base": "^7.0.0",
"debug": "^4.3.4"
},
"devDependencies": {
Expand Down
20 changes: 20 additions & 0 deletions packages/https-proxy-agent/CHANGELOG.md
@@ -0,0 +1,20 @@
# https-proxy-agent

## 6.0.0

### Major Changes

- d99a7c8: Major version bump for all packages

### 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
4 changes: 2 additions & 2 deletions packages/https-proxy-agent/package.json
@@ -1,6 +1,6 @@
{
"name": "https-proxy-agent",
"version": "5.0.1",
"version": "6.0.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": "^6.0.2",
"agent-base": "^7.0.0",
"debug": "4"
},
"devDependencies": {
Expand Down
25 changes: 25 additions & 0 deletions packages/pac-proxy-agent/CHANGELOG.md
@@ -0,0 +1,25 @@
# pac-proxy-agent

## 6.0.0

### Major Changes

- d99a7c8: Major version bump for all packages

### 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]
- Updated dependencies [06775a8]
- https-proxy-agent@6.0.0
- socks-proxy-agent@8.0.0
- http-proxy-agent@6.0.0
- pac-resolver@6.0.0
- agent-base@7.0.0
- get-uri@6.0.0
14 changes: 7 additions & 7 deletions packages/pac-proxy-agent/package.json
@@ -1,6 +1,6 @@
{
"name": "pac-proxy-agent",
"version": "5.0.0",
"version": "6.0.0",
"description": "A PAC file proxy `http.Agent` implementation for HTTP",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -31,13 +31,13 @@
"author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
"license": "MIT",
"dependencies": {
"agent-base": "^6.0.2",
"agent-base": "^7.0.0",
"debug": "^4.3.4",
"get-uri": "^5.0.0",
"http-proxy-agent": "^5.0.0",
"https-proxy-agent": "^5.0.1",
"pac-resolver": "^5.0.1",
"socks-proxy-agent": "^7.0.0"
"get-uri": "^6.0.0",
"http-proxy-agent": "^6.0.0",
"https-proxy-agent": "^6.0.0",
"pac-resolver": "^6.0.0",
"socks-proxy-agent": "^8.0.0"
},
"devDependencies": {
"@types/debug": "^4.1.7",
Expand Down
14 changes: 14 additions & 0 deletions packages/pac-resolver/CHANGELOG.md
@@ -0,0 +1,14 @@
# pac-resolver

## 6.0.0

### Major Changes

- d99a7c8: Major version bump for all packages

### Patch Changes

- c169ced: Convert mocha tests to jest for all packages
- Updated dependencies [c169ced]
- Updated dependencies [d99a7c8]
- degenerator@4.0.0
4 changes: 2 additions & 2 deletions packages/pac-resolver/package.json
@@ -1,14 +1,14 @@
{
"name": "pac-resolver",
"version": "5.0.1",
"version": "6.0.0",
"description": "Generates an asynchronous resolver function from a PAC file",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"degenerator": "^3.0.2",
"degenerator": "^4.0.0",
"ip": "^1.1.5",
"netmask": "^2.0.2"
},
Expand Down
24 changes: 24 additions & 0 deletions packages/proxy-agent/CHANGELOG.md
@@ -0,0 +1,24 @@
# proxy-agent

## 6.0.0

### Major Changes

- d99a7c8: Major version bump for all packages

### 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]
- Updated dependencies [06775a8]
- https-proxy-agent@6.0.0
- socks-proxy-agent@8.0.0
- http-proxy-agent@6.0.0
- pac-proxy-agent@6.0.0
- agent-base@7.0.0
12 changes: 6 additions & 6 deletions packages/proxy-agent/package.json
@@ -1,6 +1,6 @@
{
"name": "proxy-agent",
"version": "5.0.0",
"version": "6.0.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": "^6.0.2",
"agent-base": "^7.0.0",
"debug": "^4.3.4",
"http-proxy-agent": "^5.0.0",
"https-proxy-agent": "^5.0.1",
"http-proxy-agent": "^6.0.0",
"https-proxy-agent": "^6.0.0",
"lru-cache": "^7.14.1",
"pac-proxy-agent": "^5.0.0",
"pac-proxy-agent": "^6.0.0",
"proxy-from-env": "^1.1.0",
"socks-proxy-agent": "^7.0.0"
"socks-proxy-agent": "^8.0.0"
},
"devDependencies": {
"@types/agent-base": "^4.2.0",
Expand Down
11 changes: 11 additions & 0 deletions packages/proxy/CHANGELOG.md
@@ -0,0 +1,11 @@
# proxy

## 2.0.0

### Major Changes

- d99a7c8: Major version bump for all packages

### Patch Changes

- c169ced: Convert mocha tests to jest for all packages
2 changes: 1 addition & 1 deletion packages/proxy/package.json
@@ -1,6 +1,6 @@
{
"name": "proxy",
"version": "1.0.2",
"version": "2.0.0",
"description": "An HTTP proxy written with Node.js (think Squid)",
"main": "./dist/proxy.js",
"types": "./dist/proxy.d.ts",
Expand Down
19 changes: 19 additions & 0 deletions packages/socks-proxy-agent/CHANGELOG.md
@@ -0,0 +1,19 @@
# socks-proxy-agent

## 8.0.0

### Major Changes

- d99a7c8: Major version bump for all packages

### 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

1 comment on commit dd7d8af

@vercel
Copy link

@vercel vercel bot commented on dd7d8af May 4, 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-git-main-tootallnate.vercel.app
proxy-agents-tootallnate.vercel.app

Please sign in to comment.