feat(op): Deprecate framework-specific span ops - #622
Open
Lms24 wants to merge 2 commits into
Open
Conversation
Semver Impact of This PR🟡 Minor (new features) 📋 Changelog PreviewThis is how your changes will appear in the changelog. New Features ✨Attributes
Names
Op
Other
Bug Fixes 🐛
Internal Changes 🔧Deps
Other
🤖 This preview updates automatically when you update the PR. |
Lms24
force-pushed
the
lms/feat-deprecate-ui-framework-ops
branch
from
September 3, 2026 13:00
427d00e to
beddc98
Compare
ui.* span ops
5 tasks
Lms24
marked this pull request as ready for review
September 3, 2026 14:12
Lms24
requested review from
a team,
cleptric,
mjq and
nsdeschenes
as code owners
September 3, 2026 14:12
nsdeschenes
approved these changes
Sep 3, 2026
Deprecate the framework-specific UI ops (`ui.react`, `ui.react.mount`, `ui.react.render`, `ui.react.update`, `ui.vue`, `ui.svelte`, `ui.angular`, `ui.ember`, `ui.livewire`) in favour of the framework-agnostic `ui`, `ui.mount`, `ui.render` and `ui.update` ops. Framework-specific ops split the same kind of work across one op per framework, which makes the data harder to query and to document. The constants are still generated, now marked as deprecated for SDKs. Refs GH-619 Co-Authored-By: Claude <noreply@anthropic.com>
Same rationale as the framework-specific `ui.*` ops: one op per framework splits the same kind of work across several ops. Both are replaced by the generic `function` op. Refs GH-619 Co-Authored-By: Claude <noreply@anthropic.com>
Lms24
force-pushed
the
lms/feat-deprecate-ui-framework-ops
branch
from
September 3, 2026 14:51
bdc19a4 to
4e22a89
Compare
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.
Description
Deprecates the framework specific
ui.*andfunction.*ops. SDKs should use the framework agnostic ops instead. The constants are still generated, just marked as deprecated.ui.react,ui.vue,ui.sveltebecomeuiui.angular,ui.ember,ui.livewirebecomeuiui.react.mountbecomesui.mountui.react.renderbecomesui.renderui.react.updatebecomesui.updatefunction.nextjs,function.remixbecomefunctionNeeds #621 to merge first.
PR Checklist
yarn testand verified that the tests pass.yarn generateto generate and format code and docs.