remotion: Make <Series> a <Sequence> with layout="none"#6952
Merged
JonnyBurger merged 2 commits intomainfrom Mar 31, 2026
Merged
remotion: Make <Series> a <Sequence> with layout="none"#6952JonnyBurger merged 2 commits intomainfrom
remotion: Make <Series> a <Sequence> with layout="none"#6952JonnyBurger merged 2 commits intomainfrom
Conversation
Contributor
|
Reviewed PR #6952 — no actionable issues found. The change correctly wraps Task list (5/5 completed)
|
Series now accepts all Sequence props (from, durationInFrames, name, layout, showInTimeline). Default layout is "none" so existing code is unaffected. Updated tests and docs. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
3cc7fc7 to
0ca53e2
Compare
Contributor
There was a problem hiding this comment.
Clean change. The wrapping <Sequence layout="none"> with default from=0 / durationInFrames=Infinity is effectively a no-op for existing users, so no breaking behavior. The ENABLE_V5_BREAKING_CHANGES gate removal and test simplification are consistent. Docs version 4.0.443 matches the next patch version correctly.
Big Pickle (free) | 𝕏
Change `export const TransitionSeries` to `const` + `export {TransitionSeries}`
so the CJS compiler doesn't turn property assignments into
`exports.TransitionSeries.X = ...`, which breaks addSequenceStackTraces.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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.

Summary
<Series>is now a<Sequence>under the hood, accepting all<Sequence>props (from,durationInFrames,name,layout,showInTimeline, etc.)layoutis"none"so this is not a breaking change — existing code produces identical outputnameis"<Series>"for timeline displayaddSequenceStackTraces(Series)for proper stack tracesENABLE_V5_BREAKING_CHANGESgate and cleaned up tests<LightLeak>pattern)Test plan
<Series from={10}>offsets all children by 10 frames<Series name="my-series">shows in Studio timeline<Series>usage site🤖 Generated with Claude Code