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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## [3.0.13](https://github.com/webtorrent/webtorrent/compare/v3.0.12...v3.0.13) (2026-05-27)


### Bug Fixes

* **deps:** update dependency bittorrent-protocol to ^5.0.6 ([#3061](https://github.com/webtorrent/webtorrent/issues/3061)) ([f64f8a0](https://github.com/webtorrent/webtorrent/commit/f64f8a01868e2b3decfd8311e2631763c00c9c42))

## [3.0.12](https://github.com/webtorrent/webtorrent/compare/v3.0.11...v3.0.12) (2026-05-27)


### Bug Fixes

* pe tests ([#3060](https://github.com/webtorrent/webtorrent/issues/3060)) ([bc76c3d](https://github.com/webtorrent/webtorrent/commit/bc76c3dc0671657762a656475dd4d35f676e757b))

## [3.0.11](https://github.com/webtorrent/webtorrent/compare/v3.0.10...v3.0.11) (2026-05-27)


Expand Down
2 changes: 1 addition & 1 deletion dist/webtorrent.chromeapp.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/webtorrent.chromeapp.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/webtorrent.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/webtorrent.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "webtorrent",
"description": "Streaming torrent client",
"version": "3.0.11",
"version": "3.0.13",
"author": {
"name": "WebTorrent LLC",
"email": "feross@webtorrent.io",
Expand Down Expand Up @@ -43,7 +43,7 @@
"addr-to-ip-port": "^2.0.0",
"bitfield": "^5.0.1",
"bittorrent-dht": "^11.0.12",
"bittorrent-protocol": "^5.0.4",
"bittorrent-protocol": "^5.0.6",
"cache-chunk-store": "^3.2.2",
"chunk-store-iterator": "^1.0.4",
"cpus": "^1.0.3",
Expand Down
8 changes: 4 additions & 4 deletions test/node/encryption.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ test('PE/MSE: encrypted seeder=1 accepts plain downloader=0', t => {
runTransferTest(t, 1, 0, null)
})

test('PE/MSE: mixed secure: 1+2 (initiator plaintext, responder RC4)', t => {
test('PE/MSE: mixed secure: 1+2 (initiator offers both, responder RC4)', t => {
t.plan(4)
runTransferTest(t, 2, 1, 1)
runTransferTest(t, 2, 1, 2)
})

test('PE/MSE: mixed secure: 2+1 (initiator RC4, responder plaintext)', t => {
test('PE/MSE: mixed secure: 2+1 (initiator RC4 only, responder accepts RC4)', t => {
t.plan(4)
runTransferTest(t, 1, 2, 1)
runTransferTest(t, 1, 2, 2)
})
Loading