Skip to content

Commit 27b8538

Browse files
authored
Release 2023-11-23 (#913)
1 parent de1659d commit 27b8538

File tree

16 files changed

+84
-39
lines changed

16 files changed

+84
-39
lines changed

.changeset/calm-berries-kneel.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/early-cheetahs-tease.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

.changeset/fuzzy-flowers-joke.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/red-turkeys-rest.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

internal/e2e-realtime-api/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @sw-internal/e2e-realtime-api
22

3+
## 0.1.13
4+
5+
### Patch Changes
6+
7+
- [#892](https://github.com/signalwire/signalwire-js/pull/892) [`d564c379`](https://github.com/signalwire/signalwire-js/commit/d564c379e10d23c21abb56b3e740aff70fc451b9) Thanks [@ayeminag](https://github.com/ayeminag)! - - Added `state` param to `CallingCallCollectEventParams`
8+
- Made sure `voiceCallCollectWorker` doesn't clean up `CallCollect` instance and emit `ended`/`failed` event if the `state` is `"collecting"`
9+
- Resolve `CallCollect.ended()` promise only when `state` is NOT `"collecting"` AND `final` is either `undefined`/`true` AND `result.type` is one of `ENDED_STATES`
10+
- Added more test cases for `Call.collect()` in `@sw-internal/e2e-realtime-api`
11+
312
## 0.1.12
413

514
### Patch Changes

internal/e2e-realtime-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sw-internal/e2e-realtime-api",
3-
"version": "0.1.12",
3+
"version": "0.1.13",
44
"private": true,
55
"main": "index.js",
66
"scripts": {

packages/core/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.
44

55
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [3.21.0] - 2023-11-23
8+
9+
### Added
10+
11+
- [#909](https://github.com/signalwire/signalwire-js/pull/909) [`4ee7b6f8`](https://github.com/signalwire/signalwire-js/commit/4ee7b6f852e650c1828decda2429ebec79576085) Thanks [@iAmmar7](https://github.com/iAmmar7)! - Expose the `sendDigits` function for Video RoomSession object
12+
13+
- [#873](https://github.com/signalwire/signalwire-js/pull/873) [`6c9d2aa5`](https://github.com/signalwire/signalwire-js/commit/6c9d2aa5f5c8d7b07d955a2c6e2ab647a62bd702) Thanks [@iAmmar7](https://github.com/iAmmar7)! - Introduce the hand raise API for the Video SDKs (browser and realtime-api)
14+
15+
### Fixed
16+
17+
- [#892](https://github.com/signalwire/signalwire-js/pull/892) [`d564c379`](https://github.com/signalwire/signalwire-js/commit/d564c379e10d23c21abb56b3e740aff70fc451b9) Thanks [@ayeminag](https://github.com/ayeminag)! - - Added `state` param to `CallingCallCollectEventParams`
18+
- Made sure `voiceCallCollectWorker` doesn't clean up `CallCollect` instance and emit `ended`/`failed` event if the `state` is `"collecting"`
19+
- Resolve `CallCollect.ended()` promise only when `state` is NOT `"collecting"` AND `final` is either `undefined`/`true` AND `result.type` is one of `ENDED_STATES`
20+
- Added more test cases for `Call.collect()` in `@sw-internal/e2e-realtime-api`
21+
722
## [3.20.0] - 2023-11-07
823

924
### Added

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Shared code for the SignalWire JS SDK",
44
"author": "SignalWire Team <open.source@signalwire.com>",
55
"license": "MIT",
6-
"version": "3.20.0",
6+
"version": "3.21.0",
77
"main": "dist/index.node.js",
88
"module": "dist/index.esm.js",
99
"files": [

packages/js/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
44

55
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [3.25.0] - 2023-11-23
8+
9+
### Added
10+
11+
- [#873](https://github.com/signalwire/signalwire-js/pull/873) [`6c9d2aa5`](https://github.com/signalwire/signalwire-js/commit/6c9d2aa5f5c8d7b07d955a2c6e2ab647a62bd702) Thanks [@iAmmar7](https://github.com/iAmmar7)! - Introduce the hand raise API for the Video SDKs (browser and realtime-api)
12+
13+
### Fixed
14+
15+
- Updated dependencies [[`d564c379`](https://github.com/signalwire/signalwire-js/commit/d564c379e10d23c21abb56b3e740aff70fc451b9), [`4ee7b6f8`](https://github.com/signalwire/signalwire-js/commit/4ee7b6f852e650c1828decda2429ebec79576085), [`6c9d2aa5`](https://github.com/signalwire/signalwire-js/commit/6c9d2aa5f5c8d7b07d955a2c6e2ab647a62bd702)]:
16+
- @signalwire/core@3.21.0
17+
- @signalwire/webrtc@3.11.0
18+
719
## [3.24.0] - 2023-11-07
820

921
### Added

packages/js/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "SignalWire JS SDK",
44
"author": "SignalWire Team <open.source@signalwire.com>",
55
"license": "MIT",
6-
"version": "3.24.0",
6+
"version": "3.25.0",
77
"main": "dist/index.js",
88
"module": "dist/index.esm.js",
99
"unpkg": "dist/index.umd.js",
@@ -39,8 +39,8 @@
3939
"prepublishOnly": "npm run build"
4040
},
4141
"dependencies": {
42-
"@signalwire/core": "3.20.0",
43-
"@signalwire/webrtc": "3.10.4",
42+
"@signalwire/core": "3.21.0",
43+
"@signalwire/webrtc": "3.11.0",
4444
"jwt-decode": "^3.1.2"
4545
},
4646
"types": "dist/js/src/index.d.ts"

0 commit comments

Comments
 (0)