Skip to content

Commit

Permalink
chore(2.2.12): relased version to 2.2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
sanyamjain-plivo authored Jul 24, 2024
1 parent 658c67c commit 1793a11
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable GA release changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## v2.2.12 (released@ 24-07-2024)

**Bug Fixes**
* Renamed `DOMError` to `DOMException` in the underlying JSSIP library to support latest Typescript versions.

## v2.2.11 (released@ 07-06-2024)

**Bug Fixes**
Expand Down
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ declare module 'plivo-browser-sdk/client' {
* speech when the user speaks on mute
* @private
*/
speechRecognition: SpeechRecognition;
speechRecognition: any;
/**
* Holds the loggerUtil instance which keeps the
* value of username and sipCallID to attached to each log
Expand Down
2 changes: 1 addition & 1 deletion lib/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ export class Client extends EventEmitter {
* speech when the user speaks on mute
* @private
*/
speechRecognition: SpeechRecognition;
speechRecognition: any;

/**
* Holds the loggerUtil instance which keeps the
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "plivo-browser-sdk",
"title": "plivo-browser-sdk",
"version": "2.2.11",
"version": "2.2.12",
"description": "This library allows you to connect with plivo's voice enviroment from browser",
"main": "./dist/plivobrowsersdk.js",
"types": "index.d.ts",
Expand Down Expand Up @@ -54,7 +54,7 @@
"null-loader": "4.0.1",
"sdp-transform": "^2.14.0",
"semver-parser": "^3.0.5",
"plivo-jssip": "^1.0.3",
"plivo-jssip": "^1.0.5",
"uuid": "^8.3.0",
"wasm-feature-detect": "^1.5.1",
"wasm-pack": "^0.12.1",
Expand Down

0 comments on commit 1793a11

Please sign in to comment.