Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/actions/cached-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ runs:
- name: Cache dependencies
if: inputs.caching == 'true'
id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: deps-node-modules-${{ hashFiles('**/package-lock.json') }}
key: deps-node-modules-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true' || inputs.caching != 'true'
run: npm ci
shell: bash
shell: bash
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ test/test-pages/*/index.html
/.idea
genesys-cloud-webrtc-sdk.iml

# Kiro - ignore everything except steering files
.kiro/*
!.kiro/steering/

# tap specific files
/.nyc_output
/coverage
Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added
* [STREAM-1056](https://inindca.atlassian.net/browse/STREAM-1056) Added documentation for live screen monitoring functionality
* [STREAM-151](https://inindca.atlassian.net/browse/STREAM-151) - Send media statistics to the server. Aggregates stats, calculates a MOS score and pushes at regular intervals.
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you move this up to under Unreleased? Looks like it got added to v13.0.0 when you rebased.


### Fixed
* [STREAM-905](https://inindca.atlassian.net/browse/STREAM-905) - Fix issue where `sessionStarted` was not emitted for calls that re-use persistent connections after a media recovery has occurred. Now initializing `_emittedSessionStarteds` for reinvites but only emitting if not a reinvite.
Expand Down
2,082 changes: 28 additions & 2,054 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@
"rxjs": "^7.8.1",
"softphone-vendor-headsets": "^2.5.4",
"strict-event-emitter-types": "^2.0.0",
"uuid": "^9.0.1"
"uuid": "^9.0.1",
"webrtc-stats-gatherer": "^9.1.0"
},
"devDependencies": {
"@babel/core": "^7.24.6",
Expand Down Expand Up @@ -115,5 +116,8 @@
"webpack": "^5.105.0",
"webpack-cli": "^5.1.4",
"ws": "^8.17.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.9.5"
}
}
Loading
Loading