Skip to content

Commit

Permalink
Merge branch 'release/v3.33.3' into legacy-v3
Browse files Browse the repository at this point in the history
  • Loading branch information
peaBerberian committed Jul 2, 2024
2 parents 56456d5 + 05b1d87 commit 4c21481
Show file tree
Hide file tree
Showing 12 changed files with 4,068 additions and 3,513 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
# Changelog

## Unreleased
## v3.33.3

### Bug fixes

- DASH: support absolute path in URL resolution with RFC 3986 implementation [#1443,
#1446]
- DASH: support absolute path in URL resolution with RFC 3986 implementation [#1446]
- DASH: fix cases of blinking subtitles [#1447]
- Fix precision issues of the `maxVideoBufferSize` API [#1448]
- DASH: Prevent multiple loading of the same segment for some DASH low-latency contents
[#1449]
- Await some delay before re-attempting to push a segment following an error [#1411]
- DRM/Compat: on Edge test comprehensively KeySystems before considering them as usable
[#1450]
- DRM/DASH: Ignore `0x0` key id found in DASH initialization segments are they are often
linked to unencrypted data. [#1466, #1458]
- DRM/Compat: On the PlayStation 5, reload directly when a decryption key become
unusable to prevent fatal errors [#1451]
- Directfile/Compat: On safari on iOS no longer stay stuck in buffering when `autoPlay`
Expand All @@ -21,6 +22,8 @@
- Directfile/compat: On safari mobile in directfile mode, do not stay in an infinite
`LOADING` state if the `duration` is set to `NaN` (rare issue in a
normally-unsupported multiple RxPlayer-per-media-element scenario) [#1452]
- Fix RxPlay error messages not properly displaying in Chrome's inspector since Chrome 126
[#1474]

### Other improvements

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.33.2
3.33.3
Binary file modified dist/mpd-parser.wasm
Binary file not shown.
7,349 changes: 3,951 additions & 3,398 deletions dist/rx-player.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rx-player.min.js

Large diffs are not rendered by default.

92 changes: 47 additions & 45 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": "rx-player",
"author": "Canal+",
"version": "3.33.2",
"version": "3.33.3",
"description": "Canal+ HTML5 Video Player",
"main": "./dist/rx-player.js",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sonar.projectKey=rx-player
sonar.organization=rx-player
sonar.projectName=rx-player
sonar.projectVersion=3.33.2
sonar.projectVersion=3.33.3
sonar.sources=./src,./demo,./tests
sonar.exclusions=demo/full/bundle.js,demo/standalone/lib.js,demo/bundle.js
sonar.host.url=https://sonarcloud.io
4 changes: 2 additions & 2 deletions src/core/api/public_api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ class Player extends EventEmitter<IPublicAPIEvent> {
// See: https://bugzilla.mozilla.org/show_bug.cgi?id=1194624
videoElement.preload = "auto";

this.version = /* PLAYER_VERSION */"3.33.2";
this.version = /* PLAYER_VERSION */"3.33.3";
this.log = log;
this.state = "STOPPED";
this.videoElement = videoElement;
Expand Down Expand Up @@ -3184,7 +3184,7 @@ class Player extends EventEmitter<IPublicAPIEvent> {
return mediaElementTrackChoiceManager;
}
}
Player.version = /* PLAYER_VERSION */"3.33.2";
Player.version = /* PLAYER_VERSION */"3.33.3";

/** Every events sent by the RxPlayer's public API. */
interface IPublicAPIEvent {
Expand Down
1 change: 1 addition & 0 deletions tests/integration/utils/launch_tests_for_content.js
Original file line number Diff line number Diff line change
Expand Up @@ -1609,6 +1609,7 @@ export default function launchTestsForContent(manifestInfos) {
await sleep(0);
player.pause();
await waitForState(player, "PAUSED");
await sleep(0);
expect(pauseEventsSent).to.equal(1);
expect(playEventsSent).to.equal(0);
expect(nbPausedStates).to.equal(1);
Expand Down
Loading

0 comments on commit 4c21481

Please sign in to comment.