Skip to content

Commit 186f53b

Browse files
authored
chore(v5.0.x): release 5.0.8 (#9877)
1 parent ddde3f6 commit 186f53b

File tree

5 files changed

+29
-5
lines changed

5 files changed

+29
-5
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "5.0.7"
2+
".": "5.0.8"
33
}

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Changelog
22

3+
## [5.0.8](https://github.com/shaka-project/shaka-player/compare/v5.0.7...v5.0.8) (2026-03-23)
4+
5+
6+
### Bug Fixes
7+
8+
* **HLS:** Add support for DTS and DTS-HD audio codec variants ([#9863](https://github.com/shaka-project/shaka-player/issues/9863)) ([1d9c55b](https://github.com/shaka-project/shaka-player/commit/1d9c55b5258e958a9b5beec42c9024dd2afe8793))
9+
* **HLS:** Prevent infinite manifest update delay ([#9867](https://github.com/shaka-project/shaka-player/issues/9867)) ([fbfedd6](https://github.com/shaka-project/shaka-player/commit/fbfedd6eb29431d093346ea12a674729611b3277))
10+
* Increase tolerance for duplicate segment detection ([#9865](https://github.com/shaka-project/shaka-player/issues/9865)) ([0156466](https://github.com/shaka-project/shaka-player/commit/0156466ed25847c5be0c0efea11d3cdee7893e93))
11+
* **MSF:** handle SUBSCRIBE_NAMESPACE (0x11) control message ([#9871](https://github.com/shaka-project/shaka-player/issues/9871)) ([cd384e5](https://github.com/shaka-project/shaka-player/commit/cd384e53f87a48b376780b58dfa728e9cb0d82b8))
12+
* **UI:** Fix delay updating the styles while seeking ([#9847](https://github.com/shaka-project/shaka-player/issues/9847)) ([31b257f](https://github.com/shaka-project/shaka-player/commit/31b257f018050ea480ae1751ddaaf7df0d871506))
13+
* **util:** Add support for MPEG-2 video codec ([#9860](https://github.com/shaka-project/shaka-player/issues/9860)) ([ff19f71](https://github.com/shaka-project/shaka-player/commit/ff19f713b08fdb8834a46d29cb6d040f713572ce))
14+
15+
16+
### Performance Improvements
17+
18+
* **DASH:** drop array operations on unique IDs when parsing periods ([#9870](https://github.com/shaka-project/shaka-player/issues/9870)) ([25d5550](https://github.com/shaka-project/shaka-player/commit/25d55508feb2eeea9cea0ddb49cf0b55e0ea1d03))
19+
* **DASH:** loop over adaptation sets using the partition method ([#9862](https://github.com/shaka-project/shaka-player/issues/9862)) ([39b5a4b](https://github.com/shaka-project/shaka-player/commit/39b5a4b6665c5698e0de5702a730726fa56b8f88))
20+
* **HLS:** parse tag string directly instead of creating an array ([#9856](https://github.com/shaka-project/shaka-player/issues/9856)) ([aa6381b](https://github.com/shaka-project/shaka-player/commit/aa6381bf1de72a2e63383d09b7e9528812610106))
21+
* **HLS:** reduce GC pressure when parsing HLS manifest tags ([#9857](https://github.com/shaka-project/shaka-player/issues/9857)) ([161178d](https://github.com/shaka-project/shaka-player/commit/161178d7631cdb79a6e33efcfff931a362cba4fd))
22+
* **net:** avoid array allocations in XHR header parsing to reduce GC pressure ([#9874](https://github.com/shaka-project/shaka-player/issues/9874)) ([ddde3f6](https://github.com/shaka-project/shaka-player/commit/ddde3f680ed3dda034143876776ea8354cf73dc1))
23+
* **player:** stop recreating functions on video time update ([#9854](https://github.com/shaka-project/shaka-player/issues/9854)) ([971c498](https://github.com/shaka-project/shaka-player/commit/971c498619bb83c330958dc66b69ee5f437e9027))
24+
* **Transmuxer:** replace identical object literals with named constants ([#9852](https://github.com/shaka-project/shaka-player/issues/9852)) ([f3aad19](https://github.com/shaka-project/shaka-player/commit/f3aad19f2abfc501678b9c99315632483bb6f599))
25+
* **VTT:** reduce GC pressure in VTT text parser ([#9869](https://github.com/shaka-project/shaka-player/issues/9869)) ([7f2ef51](https://github.com/shaka-project/shaka-player/commit/7f2ef51e8545f77704abd4328ce97f69422b588d))
26+
327
## [5.0.7](https://github.com/shaka-project/shaka-player/compare/v5.0.6...v5.0.7) (2026-03-19)
428

529

lib/player.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9065,7 +9065,7 @@ shaka.Player.TYPICAL_BUFFERING_THRESHOLD_ = 0.5;
90659065
* @export
90669066
*/
90679067
// eslint-disable-next-line no-useless-concat
9068-
shaka.Player.version = 'v5.0.7' + '-uncompiled'; // x-release-please-version
9068+
shaka.Player.version = 'v5.0.8' + '-uncompiled'; // x-release-please-version
90699069

90709070
// Initialize the deprecation system using the version string we just set
90719071
// on the player.

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "shaka-player",
33
"description": "DASH/EME video player library",
4-
"version": "5.0.7",
4+
"version": "5.0.8",
55
"homepage": "https://github.com/shaka-project/shaka-player",
66
"author": "Google",
77
"maintainers": [

0 commit comments

Comments
 (0)