Skip to content

Commit f906d91

Browse files
committed
3.20.4
1 parent a341180 commit f906d91

8 files changed

Lines changed: 24 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
### NEXT
44

5+
### 3.20.4
6+
57
- SCTP: Fix `HeartbeatHandler` timers and close the association with `TOO_MANY_RETRIES` error when t3-rtx timer, heartbeat-timeout timer and RE-CONFIG timer expire ([PR #1824](https://github.com/versatica/mediasoup/pull/1824)).
68
- SCTP: Fix `ReassemblyQueue::EnterDeferredReset()` ([PR #1825](https://github.com/versatica/mediasoup/pull/1825)).
79

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

knip.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const config = {
88
'node/src/srtpParametersFbsUtils.ts',
99
],
1010
ignoreDependencies: ['open-cli', 'supports-color'],
11+
ignoreBinaries: ['python3'],
1112
typescript: {
1213
config: ['tsconfig.json'],
1314
},

package-lock.json

Lines changed: 9 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mediasoup",
3-
"version": "3.20.3",
3+
"version": "3.20.4",
44
"description": "Cutting Edge WebRTC Video Conferencing",
55
"contributors": [
66
"Iñaki Baz Castillo <ibc@aliax.net> (https://inakibaz.me)",
@@ -122,7 +122,7 @@
122122
"globals": "^17.6.0",
123123
"ini": "^6.0.0",
124124
"jest": "^30.4.2",
125-
"knip": "^6.15.0",
125+
"knip": "^6.16.1",
126126
"marked": "^18.0.5",
127127
"open-cli": "^9.0.0",
128128
"pick-port": "^2.2.0",

rust/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
### NEXT
44

5+
### 0.22.3
6+
7+
- SCTP: Fix `HeartbeatHandler` timers and close the association with `TOO_MANY_RETRIES` error when t3-rtx timer, heartbeat-timeout timer and RE-CONFIG timer expire (PR #1824).
8+
- SCTP: Fix `ReassemblyQueue::EnterDeferredReset()` (PR #1825).
9+
510
### 0.22.2
611

712
- Fix SCTP crash when the t3-rtx timer expires (PR #1822).

rust/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mediasoup"
3-
version = "0.22.2"
3+
version = "0.22.3"
44
description = "Cutting Edge WebRTC Video Conferencing in Rust"
55
categories = ["api-bindings", "multimedia", "network-programming"]
66
authors = [
@@ -46,7 +46,7 @@ version = "0.8.1"
4646

4747
[dependencies.mediasoup-sys]
4848
path = "../worker"
49-
version = "0.12.2"
49+
version = "0.12.3"
5050

5151
[dependencies.mediasoup-types]
5252
path = "./types"

worker/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mediasoup-sys"
3-
version = "0.12.2"
3+
version = "0.12.3"
44
description = "FFI bindings to C++ libmediasoup-worker"
55
authors = [
66
"Nazar Mokrynskyi <nazar@mokrynskyi.com>",

0 commit comments

Comments
 (0)