Skip to content

Commit

Permalink
Merge tag '3.12.10' into v3
Browse files Browse the repository at this point in the history
3.12.10

# Conflicts:
#	package-lock.json
#	package.json
  • Loading branch information
github-actions committed Aug 12, 2023
2 parents a1b477e + be98f0f commit e50864f
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog


### 3.12.10

* Node: Rename `WebRtcTransport.webRtcServerClosed()` to `listenServerClosed()` ([PR #1141](https://github.com/versatica/mediasoup/pull/1141) by @piranna).


### 3.12.9

* Fix RTCP SDES ([PR #1139](https://github.com/versatica/mediasoup/pull/1139)).
Expand Down
4 changes: 2 additions & 2 deletions node/src/WebRtcTransport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -374,11 +374,11 @@ export class WebRtcTransport<WebRtcTransportAppData extends AppData = AppData>
}

/**
* Called when closing the associated WebRtcServer.
* Called when closing the associated listenServer (WebRtcServer).
*
* @private
*/
webRtcServerClosed(): void
listenServerClosed(): void
{
if (this.closed)
{
Expand Down
4 changes: 4 additions & 0 deletions node/src/tests/test-WebRtcServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,10 @@ test('router.createWebRtcTransport() with webRtcServer succeeds and webRtcServer
expect(onObserverWebRtcTransportUnhandled).toHaveBeenCalledTimes(1);
expect(onObserverWebRtcTransportUnhandled).toHaveBeenCalledWith(transport);
expect(transport.closed).toBe(true);
expect(transport.iceState).toBe('closed');
expect(transport.iceSelectedTuple).toBe(undefined);
expect(transport.dtlsState).toBe('closed');
expect(transport.sctpState).toBe(undefined);
expect(webRtcServer.webRtcTransportsForTesting.size).toBe(0);
expect(router.transportsForTesting.size).toBe(0);

Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mafalda-sfu/mediasoup",
"version": "3.12.9",
"version": "3.12.10",
"description": "Cutting Edge WebRTC Video Conferencing",
"contributors": [
"Iñaki Baz Castillo <[email protected]> (https://inakibaz.me)",
Expand Down Expand Up @@ -107,7 +107,7 @@
"eslint": "^8.46.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.2",
"marked": "^7.0.1",
"marked": "^7.0.2",
"open-cli": "^7.2.0",
"pick-port": "^1.0.1",
"sctp": "^1.0.0",
Expand Down

0 comments on commit e50864f

Please sign in to comment.