feat: MUX - Set asset upload as protected by default when Signed URLs are enabled [INTEG-3288]#10236
Merged
Harika Kondur (harikakondur) merged 4 commits intocontentful:masterfrom Dec 10, 2025
Conversation
Mitch Goudy (mgoudy91)
approved these changes
Nov 24, 2025
…bled in the plugin configuration. Fixed race condition to properly get the signed playback. Updated mux-player-react to latest.
48cfb1b to
dfde65f
Compare
Harika Kondur (harikakondur)
approved these changes
Dec 10, 2025
Adrian Meyer (primeinteger)
approved these changes
Dec 10, 2025
fd04d9b
into
contentful:master
12 checks passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
Previously, when Signed URLs were enabled in the plugin configuration, assets were uploaded as protected (signed in Mux).
However, the upload modal always defaulted to Public, ignoring that configuration.
This PR ensures that the modal now defaults to Protected (Signed) when the Signed URLs option is enabled in the plugin configuration.
Additionally, it fixes a race condition where playback signed URLs were not always retrieved properly — causing the player to fail and videos to not load.
Lastly, the
mux-player-reactpackage was updated to the latest version to ensure compatibility with modern browsers (e.g., Chrome now supports native HLS playback).Approach
mux-player-reactto the latest stable version to avoid playback issues with browsers supporting native HLS.Testing steps
Breaking Changes
None.
This change only affects new asset uploads and signed playback retrieval. Existing assets and configurations remain unaffected.
Deployment
No additional deployment steps required.
All changes are frontend-only; backend functions remain intact.