Skip to content

Commit

Permalink
chore: Release of version 1.0.3 (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
jancurn authored Aug 18, 2021
1 parent 00b5a13 commit cdfbb20
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 15 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest] # add windows-latest later
node-version: [10, 12, 14]
node-version: [10, 12, 14, 16]

steps:
-
Expand All @@ -27,13 +27,13 @@ jobs:
node-version: ${{ matrix.node-version }}
-
name: Cache Node Modules
if: ${{ matrix.node-version == 14 }}
if: ${{ matrix.node-version == 16 }}
uses: actions/cache@v2
with:
path: |
node_modules
build
key: cache-${{ github.run_id }}-v14
key: cache-${{ github.run_id }}-v16
-
name: Install Dependencies
run: npm install
Expand All @@ -58,17 +58,17 @@ jobs:
-
uses: actions/checkout@v2
-
name: Use Node.js 14
name: Use Node.js 16
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 16
-
name: Load Cache
uses: actions/cache@v2
with:
path: |
node_modules
build
key: cache-${{ github.run_id }}-v14
key: cache-${{ github.run_id }}-v16
-
run: npm run lint
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest] # add windows-latest later
node-version: [10, 12, 14]
node-version: [10, 12, 14, 16]

steps:
-
Expand All @@ -31,13 +31,13 @@ jobs:
node-version: ${{ matrix.node-version }}
-
name: Cache Node Modules
if: ${{ matrix.node-version == 14 }}
if: ${{ matrix.node-version == 16 }}
uses: actions/cache@v2
with:
path: |
node_modules
build
key: cache-${{ github.run_id }}-v14
key: cache-${{ github.run_id }}-v16
-
name: Install Dependencies
run: npm install
Expand All @@ -61,18 +61,18 @@ jobs:
-
uses: actions/checkout@v2
-
name: Use Node.js 14
name: Use Node.js 16
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 16
-
name: Load Cache
uses: actions/cache@v2
with:
path: |
node_modules
build
key: cache-${{ github.run_id }}-v14
key: cache-${{ github.run_id }}-v16
-
run: npm run lint

Expand All @@ -89,7 +89,7 @@ jobs:
-
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 16
registry-url: https://registry.npmjs.org/
-
name: Load Cache
Expand All @@ -98,7 +98,7 @@ jobs:
path: |
node_modules
build
key: cache-${{ github.run_id }}-v14
key: cache-${{ github.run_id }}-v16
-
# Determine if this is a beta or latest release
name: Set Release Tag
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.0.3 / 2021-08-17
==================
- Fixed `EventEmitter` memory leak (see issue [#81](https://github.com/apify/proxy-chain/issues/81))
- Added automated tests for Node 16
- Updated dev dependencies

1.0.2 / 2021-04-14
==================
- Bugfix: `closeTunnel()` function didn't work because of `runningServers[port].connections.forEach is not a function` error (see issue [#127](https://github.com/apify/proxy-chain/issues/127))
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "proxy-chain",
"version": "1.0.2",
"version": "1.0.3",
"description": "Node.js implementation of a proxy server (think Squid) with support for SSL, authentication, upstream proxy chaining, and protocol tunneling.",
"main": "build/index.js",
"keywords": [
Expand Down

0 comments on commit cdfbb20

Please sign in to comment.