Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,6 @@
- Cas_ ([email protected])
- Arsène Fougerouse ([email protected])
- Brad Marsden ([email protected])
- krazak ([email protected])

#### Generated by tools/update-authors.sh.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# [11.1.0](https://github.com/webtorrent/bittorrent-tracker/compare/v11.0.2...v11.1.0) (2024-05-22)


### Bug Fixes

* semantic release ([#520](https://github.com/webtorrent/bittorrent-tracker/issues/520)) ([428fb22](https://github.com/webtorrent/bittorrent-tracker/commit/428fb224f5666731332738032649f4448b2e1e4f))


### Features

* updated webrtc implementation ([#519](https://github.com/webtorrent/bittorrent-tracker/issues/519)) ([633d68a](https://github.com/webtorrent/bittorrent-tracker/commit/633d68a32c2c143fec0182317a9801dd1b64faef))

## [11.0.2](https://github.com/webtorrent/bittorrent-tracker/compare/v11.0.1...v11.0.2) (2024-03-12)


Expand Down
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bittorrent-tracker",
"description": "Simple, robust, BitTorrent tracker (client & server) implementation",
"version": "11.0.2",
"version": "11.1.0",
"author": {
"name": "WebTorrent LLC",
"email": "[email protected]",
Expand All @@ -27,28 +27,28 @@
},
"type": "module",
"dependencies": {
"@thaunknown/simple-peer": "^9.12.1",
"@thaunknown/simple-websocket": "^9.1.0",
"@thaunknown/simple-peer": "^10.0.6",
"@thaunknown/simple-websocket": "^9.1.1",
"bencode": "^4.0.0",
"bittorrent-peerid": "^1.3.3",
"bittorrent-peerid": "^1.3.6",
"chrome-dgram": "^3.0.6",
"clone": "^2.0.0",
"clone": "^2.1.2",
"compact2string": "^1.4.1",
"cross-fetch-ponyfill": "^1.0.1",
"debug": "^4.1.1",
"ip": "^1.1.5",
"cross-fetch-ponyfill": "^1.0.3",
"debug": "^4.3.4",
"ip": "^2.0.1",
"lru": "^3.1.0",
"minimist": "^1.2.5",
"minimist": "^1.2.8",
"once": "^1.4.0",
"queue-microtask": "^1.2.3",
"random-iterate": "^1.0.1",
"run-parallel": "^1.2.0",
"run-series": "^1.1.9",
"socks": "^2.0.0",
"string2compact": "^2.0.0",
"uint8-util": "^2.1.9",
"socks": "^2.8.3",
"string2compact": "^2.0.1",
"uint8-util": "^2.2.5",
"unordered-array-remove": "^1.0.2",
"ws": "^8.0.0"
"ws": "^8.17.0"
},
"devDependencies": {
"@mapbox/node-pre-gyp": "1.0.11",
Expand All @@ -57,12 +57,12 @@
"semantic-release": "21.1.2",
"standard": "*",
"tape": "5.7.5",
"undici": "^5.27.0",
"webtorrent-fixtures": "2.0.2",
"wrtc": "0.4.7"
"undici": "^6.16.1",
"webrtc-polyfill": "^1.1.5",
"webtorrent-fixtures": "2.0.2"
},
"engines": {
"node": ">=12.20.0"
"node": ">=16.0.0"
},
"exports": {
"import": "./index.js"
Expand All @@ -80,8 +80,8 @@
"license": "MIT",
"main": "index.js",
"optionalDependencies": {
"bufferutil": "^4.0.3",
"utf-8-validate": "^5.0.5"
"bufferutil": "^4.0.8",
"utf-8-validate": "^6.0.4"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion test/evict.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Client from '../index.js'
import common from './common.js'
import test from 'tape'
import wrtc from 'wrtc'
import wrtc from 'webrtc-polyfill'

const infoHash = '4cb67059ed6bd08362da625b3ae77f6f4a075705'
const peerId = Buffer.from('01234567890123456789')
Expand Down
2 changes: 1 addition & 1 deletion test/server.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Client from '../index.js'
import common from './common.js'
import test from 'tape'
import wrtc from 'wrtc'
import wrtc from 'webrtc-polyfill'

const infoHash = '4cb67059ed6bd08362da625b3ae77f6f4a075705'
const peerId = Buffer.from('01234567890123456789')
Expand Down