Skip to content

Commit 0115521

Browse files
committed
chore(v4.9.x): release 4.9.32
1 parent 897886c commit 0115521

File tree

5 files changed

+22
-5
lines changed

5 files changed

+22
-5
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "4.9.31"
2+
".": "4.9.32"
33
}

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## [4.9.32](https://github.com/shaka-project/shaka-player/compare/v4.9.31...v4.9.32) (2024-11-20)
4+
5+
6+
### Bug Fixes
7+
8+
* Abort operations only once ([#7624](https://github.com/shaka-project/shaka-player/issues/7624)) ([adc646a](https://github.com/shaka-project/shaka-player/commit/adc646a8b0191d41ad13f408b19373ebf5f53484))
9+
* Allow the user to disable subtitles while paused ([#7578](https://github.com/shaka-project/shaka-player/issues/7578)) ([b60a47c](https://github.com/shaka-project/shaka-player/commit/b60a47c47db3fb33a437f8980fadcdfdf4933350))
10+
* Calculate timeToFirstByte before fire the event 'downloadheadersreceived' ([#7605](https://github.com/shaka-project/shaka-player/issues/7605)) ([48a362e](https://github.com/shaka-project/shaka-player/commit/48a362e907455bd0e18a7b06d933c3dcbed3357f)), closes [#7604](https://github.com/shaka-project/shaka-player/issues/7604)
11+
* **Cast:** Incorrect detection of MediaCapabilities on Linux Chromecast ([#7628](https://github.com/shaka-project/shaka-player/issues/7628)) ([eccc245](https://github.com/shaka-project/shaka-player/commit/eccc245f79dadf6bd590eba8d3581a5ccb4c17d7))
12+
* Disable live sync when the stream is paused ([#7579](https://github.com/shaka-project/shaka-player/issues/7579)) ([2d6dabe](https://github.com/shaka-project/shaka-player/commit/2d6dabe331c6bddc915c871fa88e241f436eaaad))
13+
* Disable smooth codec switch on Tizen 8 ([#7614](https://github.com/shaka-project/shaka-player/issues/7614)) ([28e7380](https://github.com/shaka-project/shaka-player/commit/28e7380a0de94cbd37d3310673c8580e578f14df))
14+
* Fix cast support for HLG HDR ([#7632](https://github.com/shaka-project/shaka-player/issues/7632)) ([4280979](https://github.com/shaka-project/shaka-player/commit/42809793f18a6c2dc4fee108b75004c67b6c03ed))
15+
* Fix parameters lost during codec switch ([#7630](https://github.com/shaka-project/shaka-player/issues/7630)) ([2f4d09d](https://github.com/shaka-project/shaka-player/commit/2f4d09d6cb3f8886cb1033d824b84bcd9c808f9c))
16+
* **HLS:** Fix subtitle timing ([#7625](https://github.com/shaka-project/shaka-player/issues/7625)) ([d37a472](https://github.com/shaka-project/shaka-player/commit/d37a472f696a7d7bf2af769dde39ce750aa719fd))
17+
* Prefer SimpleTextDisplayer on iOS ([#7569](https://github.com/shaka-project/shaka-player/issues/7569)) ([7203a05](https://github.com/shaka-project/shaka-player/commit/7203a05b1e486be46762c504ebb69cd2bd3c279a))
18+
* Silence aborted errors from PreloadManager. ([#7619](https://github.com/shaka-project/shaka-player/issues/7619)) ([548342d](https://github.com/shaka-project/shaka-player/commit/548342ddcf21b1aa4a282e8b15016fe571887eb3)), closes [#7618](https://github.com/shaka-project/shaka-player/issues/7618)
19+
320
## [4.9.31](https://github.com/shaka-project/shaka-player/compare/v4.9.30...v4.9.31) (2024-11-12)
421

522

lib/player.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7549,7 +7549,7 @@ shaka.Player.TYPICAL_BUFFERING_THRESHOLD_ = 0.5;
75497549
* @export
75507550
*/
75517551
// eslint-disable-next-line no-useless-concat, max-len
7552-
shaka.Player.version = 'v4.9.31' + '-uncompiled'; // x-release-please-version
7552+
shaka.Player.version = 'v4.9.32' + '-uncompiled'; // x-release-please-version
75537553

75547554
// Initialize the deprecation system using the version string we just set
75557555
// on the player.

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
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": "4.9.31",
4+
"version": "4.9.32",
55
"homepage": "https://github.com/shaka-project/shaka-player",
66
"author": "Google",
77
"maintainers": [

0 commit comments

Comments
 (0)