mediasoup 3.15.1 → 3.15.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mediasoup",
3
- "version": "3.15.1",
3
+ "version": "3.15.2",
4
4
  "description": "Cutting Edge WebRTC Video Conferencing",
5
5
  "contributors": [
6
6
  "Iñaki Baz Castillo <ibc@aliax.net> (https://inakibaz.me)",
@@ -109,24 +109,24 @@
109
109
  "tar": "^7.4.3"
110
110
  },
111
111
  "devDependencies": {
112
- "@eslint/js": "^9.14.0",
112
+ "@eslint/js": "^9.15.0",
113
113
  "@octokit/rest": "^21.0.2",
114
114
  "@types/debug": "^4.1.12",
115
115
  "@types/jest": "^29.5.14",
116
- "@types/node": "^22.9.0",
117
- "eslint": "^9.14.0",
116
+ "@types/node": "^22.9.1",
117
+ "eslint": "^9.15.0",
118
118
  "eslint-config-prettier": "^9.1.0",
119
119
  "eslint-plugin-jest": "^28.9.0",
120
120
  "eslint-plugin-prettier": "^5.2.1",
121
121
  "globals": "^15.12.0",
122
122
  "jest": "^29.7.0",
123
- "marked": "^15.0.0",
123
+ "marked": "^15.0.2",
124
124
  "open-cli": "^8.0.0",
125
125
  "pick-port": "^2.1.0",
126
126
  "prettier": "^3.3.3",
127
127
  "sctp": "^1.0.0",
128
128
  "ts-jest": "^29.2.5",
129
129
  "typescript": "^5.6.3",
130
- "typescript-eslint": "^8.14.0"
130
+ "typescript-eslint": "^8.15.0"
131
131
  }
132
132
  }
@@ -204,9 +204,9 @@
204
204
  "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
205
205
  },
206
206
  "node_modules/cross-spawn": {
207
- "version": "7.0.3",
208
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
209
- "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
207
+ "version": "7.0.6",
208
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
209
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
210
210
  "dependencies": {
211
211
  "path-key": "^3.1.0",
212
212
  "shebang-command": "^2.0.0",
@@ -742,9 +742,9 @@
742
742
  "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
743
743
  },
744
744
  "cross-spawn": {
745
- "version": "7.0.3",
746
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
747
- "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
745
+ "version": "7.0.6",
746
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
747
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
748
748
  "requires": {
749
749
  "path-key": "^3.1.0",
750
750
  "shebang-command": "^2.0.0",
@@ -678,8 +678,8 @@ namespace RTC
678
678
  // We want it in network order.
679
679
  const uint64_t address = bindAddrIn->sin_addr.s_addr;
680
680
 
681
- hash = static_cast<uint64_t>(minPort) << 48;
682
- hash = static_cast<uint64_t>(maxPort) << 32;
681
+ hash |= static_cast<uint64_t>(minPort) << 48;
682
+ hash |= static_cast<uint64_t>(maxPort) << 32;
683
683
  hash |= (address >> 2) << 2;
684
684
  hash |= 0x0000; // AF_INET.
685
685
 
@@ -693,8 +693,8 @@ namespace RTC
693
693
 
694
694
  const auto address = a[0] ^ a[1] ^ a[2] ^ a[3];
695
695
 
696
- hash = static_cast<uint64_t>(minPort) << 48;
697
- hash = static_cast<uint64_t>(maxPort) << 32;
696
+ hash |= static_cast<uint64_t>(minPort) << 48;
697
+ hash |= static_cast<uint64_t>(maxPort) << 32;
698
698
  hash |= static_cast<uint64_t>(address) << 16;
699
699
  hash |= (static_cast<uint64_t>(address) >> 2) << 2;
700
700
  hash |= 0x0002; // AF_INET6.