Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "5.0.15"
".": "5.0.16"
}
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## [5.0.16](https://github.com/shaka-project/shaka-player/compare/v5.0.15...v5.0.16) (2026-05-18)


### Bug Fixes

* fix opus transmux sample duration ([#10090](https://github.com/shaka-project/shaka-player/issues/10090)) ([33d4fac](https://github.com/shaka-project/shaka-player/commit/33d4facc0a9d8b6b8f49b472aa904eeb9ac07ce0))
* force gap jump when stalled at the end of a buffer ([#10086](https://github.com/shaka-project/shaka-player/issues/10086)) ([687c319](https://github.com/shaka-project/shaka-player/commit/687c319d6bf75e323bf9567378c311e60a7d230f))
* **HLS:** Fix timeline sync gaps on discontinuity sequences ([#10087](https://github.com/shaka-project/shaka-player/issues/10087)) ([3a2fb6d](https://github.com/shaka-project/shaka-player/commit/3a2fb6d7e312d9231daa95a932ad5a15a3eb3aee))
* **Offline:** Only request the license on download when usePersistentLicense is true ([#10074](https://github.com/shaka-project/shaka-player/issues/10074)) ([898c35a](https://github.com/shaka-project/shaka-player/commit/898c35a70bae282e38dbde6e6e2059f8aa195a52))
* **UI:** Remove buffered bar delay after seeking ([#10071](https://github.com/shaka-project/shaka-player/issues/10071)) ([60f6e38](https://github.com/shaka-project/shaka-player/commit/60f6e3864a6f1d1f9aa58a84c630a048df2f83ff))


### Performance Improvements

* **HLS:** skip rebuilding known refs on live playlist refresh ([#10075](https://github.com/shaka-project/shaka-player/issues/10075)) ([6180f1c](https://github.com/shaka-project/shaka-player/commit/6180f1c52342fc872d8746f3d3bcbd73afb79a98))
* **Mp4Generator:** assemble segment data in a single allocation ([#10101](https://github.com/shaka-project/shaka-player/issues/10101)) ([8c6a80b](https://github.com/shaka-project/shaka-player/commit/8c6a80ba022ebdc39a74690cc29986eee40fd90f))
* **player:** avoid full configuration deep-clone in time update callback ([#10098](https://github.com/shaka-project/shaka-player/issues/10098)) ([d4543c4](https://github.com/shaka-project/shaka-player/commit/d4543c4a6f39f371a09f091f6754d5b4a39cfefb))
* **transmuxer:** Avoid repeatedly creating empty Uint8Arrays ([#10100](https://github.com/shaka-project/shaka-player/issues/10100)) ([0f263f8](https://github.com/shaka-project/shaka-player/commit/0f263f8f63bd9fc09a9c4b1c8c9612e0e45567c6))
* **transmuxer:** Reduce per-frame object allocations for h265, ac-3 and ec-3 ([#10094](https://github.com/shaka-project/shaka-player/issues/10094)) ([d8eb02f](https://github.com/shaka-project/shaka-player/commit/d8eb02f31c4e94e331f4e25182fd223e3df98f69))

## [5.0.15](https://github.com/shaka-project/shaka-player/compare/v5.0.14...v5.0.15) (2026-05-11)


Expand Down
2 changes: 1 addition & 1 deletion lib/player.js
Original file line number Diff line number Diff line change
Expand Up @@ -9107,7 +9107,7 @@ shaka.Player.TYPICAL_BUFFERING_THRESHOLD_ = 0.5;
* @export
*/
// eslint-disable-next-line no-useless-concat
shaka.Player.version = 'v5.0.15' + '-uncompiled'; // x-release-please-version
shaka.Player.version = 'v5.0.16' + '-uncompiled'; // x-release-please-version

// Initialize the deprecation system using the version string we just set
// on the player.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "shaka-player",
"description": "DASH/EME video player library",
"version": "5.0.15",
"version": "5.0.16",
"homepage": "https://github.com/shaka-project/shaka-player",
"author": "Google",
"maintainers": [
Expand Down
Loading