✨ Add betaEnableViewUpdates config option - #4833
Conversation
|
1da29c9 to
4dd963b
Compare
Bundles Sizes Evolution
|
fa92e33 to
a2a4c88
Compare
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: a2a4c88042
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
a2a4c88 to
7dd147b
Compare
|
Can we just drop the experimental flag? |
7dd147b to
d4f19b3
Compare
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: d4f19b3175
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
d4f19b3 to
d1ed0db
Compare
d1ed0db to
2901781
Compare
Motivation
Enabling partial view updates currently requires setting
enableExperimentalFeatures: ['partial_view_updates'], which is an internal mechanism not meant for customers. To share the feature with beta customers, we need a proper public-facing config option.Changes
Added
betaEnableViewUpdates?: booleantoRumInitConfiguration. When set totrue, the partial view updates optimization is enabled directly —createBatchDispatcherreceives it as a plain boolean, no experimental feature flag involved. Thepartial_view_updatesexperimental flag was removed.Test instructions
Check the Network tab — intermediate view updates should appear as
view_updateevents instead of fullviewevents.Checklist