Skip to content

Commit a485c21

Browse files
authored
v11.3.2 (#945)
1 parent 5b0abc3 commit a485c21

24 files changed

Lines changed: 1788 additions & 958 deletions

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,5 @@ test/test-pages/*/index.html
2626
/coverage
2727

2828
/.npmrc
29+
30+
/test-results

changelog.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,17 @@ All notable changes to this project will be documented in this file.
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6-
# [Unreleased](https://github.com/MyPureCloud/genesys-cloud-webrtc-sdk/compare/v11.3.1...HEAD)
6+
# [Unreleased](https://github.com/MyPureCloud/genesys-cloud-webrtc-sdk/compare/v11.3.2...HEAD)
7+
8+
# [v11.3.2](https://github.com/MyPureCloud/genesys-cloud-webrtc-sdk/compare/v11.3.1...v11.3.2)
9+
### Changed
10+
* [STREAM-926](https://inindca.atlassian.net/browse/STREAM-926) - Updated screen recording metadata request to use `requestApiWithRetry` to retry failed requests with exponential backoff.
11+
* [STREAM-912](https://inindca.atlassian.net/browse/STREAM-912) - Bump streaming-client to `19.4.0` to remove SDP answer payload from logging.
12+
* [NO-JIRA] - Bump axios to `1.12.2` to address Snyk vulnerability.
13+
* [STREAM-599](https://inindca.atlassian.net/browse/STREAM-599) - Addressed Snyk vulnerabilities and type insecurities in demo app.
14+
15+
### Added
16+
* [STREAM-866](https://inindca.atlassian.net/browse/STREAM-850) - Generate a test report in JUnit.xml format
717

818
# [v11.3.1](https://github.com/MyPureCloud/genesys-cloud-webrtc-sdk/compare/v11.3.0...v11.3.1)
919
# Changed

jest.config.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,12 @@ module.exports = {
3939
lines: 100,
4040
statements: 100
4141
}
42-
}
42+
},
43+
reporters: [
44+
'default',
45+
['jest-junit', {
46+
outputDirectory: 'test-results/unit',
47+
outputName: 'test-results.xml'
48+
}]
49+
]
4350
};

package-lock.json

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

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "genesys-cloud-webrtc-sdk",
3-
"version": "11.3.1",
3+
"version": "11.3.2",
44
"description": "client for the interfacing with Genesys Cloud WebRTC",
55
"repository": "https://github.com/mypurecloud/genesys-cloud-webrtc-sdk",
66
"license": "MIT",
@@ -57,11 +57,11 @@
5757
"dependencies": {
5858
"@babel/runtime": "^7.24.6",
5959
"@babel/runtime-corejs3": "^7.24.6",
60-
"axios": "^1.10.0",
60+
"axios": "^1.12.2",
6161
"browserama": "^3.2.2",
6262
"core-js": "^3.37.1",
6363
"genesys-cloud-client-logger": "^4.2.17",
64-
"genesys-cloud-streaming-client": "^19.3.1",
64+
"genesys-cloud-streaming-client": "^19.4.0",
6565
"jwt-decode": "^4.0.0",
6666
"lodash": "^4.17.21",
6767
"process-fast": "^1.0.0",
@@ -104,6 +104,7 @@
104104
"eslint-plugin-jsdoc": "^48.2.6",
105105
"jest": "^29.7.0",
106106
"jest-environment-jsdom": "^29.7.0",
107+
"jest-junit": "^16.0.0",
107108
"npm-watch": "^0.13.0",
108109
"pre-push": "^0.1.4",
109110
"purecloud-platform-client-v2": "^116.0.0",

0 commit comments

Comments
 (0)