diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d7bf1e60..e5302563 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: with: node-version: 14 - name: Cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.npm key: ${{ runner.os }}-npm-${{ hashFiles('**/package.json') }} diff --git a/CHANGELOG.md b/CHANGELOG.md index a7dc4711..79f8df94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [9.18.6](https://github.com/webtorrent/bittorrent-tracker/compare/v9.18.5...v9.18.6) (2022-05-11) + + +### Bug Fixes + +* revert [#420](https://github.com/webtorrent/bittorrent-tracker/issues/420) ([8d54938](https://github.com/webtorrent/bittorrent-tracker/commit/8d54938f164347d57a7991268d191e44b752de7f)) + ## [9.18.5](https://github.com/webtorrent/bittorrent-tracker/compare/v9.18.4...v9.18.5) (2022-03-25) diff --git a/lib/client/websocket-tracker.js b/lib/client/websocket-tracker.js index 7c48858b..1573cfd2 100644 --- a/lib/client/websocket-tracker.js +++ b/lib/client/websocket-tracker.js @@ -301,7 +301,6 @@ class WebSocketTracker extends Tracker { clearTimeout(peer.trackerTimeout) peer.trackerTimeout = null delete this.peers[offerId] - peer.destroy() } else { debug(`got unexpected answer: ${JSON.stringify(data.answer)}`) } diff --git a/package.json b/package.json index 8c654dda..7271f05b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "bittorrent-tracker", "description": "Simple, robust, BitTorrent tracker (client & server) implementation", - "version": "9.18.5", + "version": "9.18.6", "author": { "name": "WebTorrent LLC", "email": "feross@webtorrent.io", @@ -55,7 +55,7 @@ "magnet-uri": "6.2.0", "semantic-release": "18.0.1", "standard": "*", - "tape": "5.5.2", + "tape": "5.5.3", "webtorrent-fixtures": "1.7.5", "wrtc": "0.4.7" },