Skip to content

Commit 951a1e6

Browse files
committed
chore(v4.11.x): release 4.11.20
1 parent ca27fa0 commit 951a1e6

File tree

5 files changed

+20
-5
lines changed

5 files changed

+20
-5
lines changed

.release-please-manifest.json

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

CHANGELOG.md

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

3+
## [4.11.20](https://github.com/shaka-project/shaka-player/compare/v4.11.19...v4.11.20) (2025-01-17)
4+
5+
6+
### Bug Fixes
7+
8+
* Detect mov extension as video/quicktime ([#7884](https://github.com/shaka-project/shaka-player/issues/7884)) ([009181f](https://github.com/shaka-project/shaka-player/commit/009181f945b32f031f5a7e30e6b4addb91622908))
9+
* Fix isEnded for live streams ([#7866](https://github.com/shaka-project/shaka-player/issues/7866)) ([f1b1d0e](https://github.com/shaka-project/shaka-player/commit/f1b1d0ecb278411350baa3be5c7e17dc9e1ccc68))
10+
* Fix isEnded when is not fullyLoaded ([#7883](https://github.com/shaka-project/shaka-player/issues/7883)) ([794ca74](https://github.com/shaka-project/shaka-player/commit/794ca7430a84c0849dfe5a441fdd772d6a4feebf))
11+
* **HLS:** Assign EXT-X-TILES to segment tags ([#7864](https://github.com/shaka-project/shaka-player/issues/7864)) ([86a5de6](https://github.com/shaka-project/shaka-player/commit/86a5de60369689b9f26c6c8f2692defd512afb6b))
12+
* **Offline:** Fix download HLG tracks when using AUTO hdr level ([#7865](https://github.com/shaka-project/shaka-player/issues/7865)) ([3f3f230](https://github.com/shaka-project/shaka-player/commit/3f3f23009ce8f47aa274b4afe4fd7da94ecb2e85))
13+
* **tXml:** Fix findChildrenNS when the namespace is in the element ([#7896](https://github.com/shaka-project/shaka-player/issues/7896)) ([49ef370](https://github.com/shaka-project/shaka-player/commit/49ef370460da7b9920ef82520062cac5d037a44d))
14+
* **UI:** Fix handle of seek on MediaSession ([#7879](https://github.com/shaka-project/shaka-player/issues/7879)) ([433aa81](https://github.com/shaka-project/shaka-player/commit/433aa818339319a1b10d15352a273ed47032d427))
15+
* Use getSegmentAvailabilityStart instead of getSeekRangeStart to evict segments ([#7867](https://github.com/shaka-project/shaka-player/issues/7867)) ([e3d425f](https://github.com/shaka-project/shaka-player/commit/e3d425fbcfd81bf9b3f2ce741fe2a60bf4810667))
16+
* Use infiniteLiveStreamDuration equal to true in Safari 17 or above ([#7901](https://github.com/shaka-project/shaka-player/issues/7901)) ([ca27fa0](https://github.com/shaka-project/shaka-player/commit/ca27fa0ee2b3f317e8ffb719a018671000155c2e))
17+
318
## [4.11.19](https://github.com/shaka-project/shaka-player/compare/v4.11.18...v4.11.19) (2025-01-10)
419

520

lib/player.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8153,7 +8153,7 @@ shaka.Player.TYPICAL_BUFFERING_THRESHOLD_ = 0.5;
81538153
* @export
81548154
*/
81558155
// eslint-disable-next-line no-useless-concat, max-len
8156-
shaka.Player.version = 'v4.11.19' + '-uncompiled'; // x-release-please-version
8156+
shaka.Player.version = 'v4.11.20' + '-uncompiled'; // x-release-please-version
81578157

81588158
// Initialize the deprecation system using the version string we just set
81598159
// 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.11.19",
4+
"version": "4.11.20",
55
"homepage": "https://github.com/shaka-project/shaka-player",
66
"author": "Google",
77
"maintainers": [

0 commit comments

Comments
 (0)