fix(shared): prevent SSR comment escaping from creating closing delimiters#15045
Open
edison1105 wants to merge 2 commits into
Open
fix(shared): prevent SSR comment escaping from creating closing delimiters#15045edison1105 wants to merge 2 commits into
edison1105 wants to merge 2 commits into
Conversation
📝 WalkthroughWalkthrough
ChangesComment Escaping Fix
Estimated code review effort: 3 (Moderate) | ~20 minutes Suggested labels: Suggested reviewers: 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
Size ReportBundles
Usages
|
@vue/compiler-core
@vue/compiler-dom
@vue/compiler-sfc
@vue/compiler-ssr
@vue/reactivity
@vue/runtime-core
@vue/runtime-dom
@vue/server-renderer
@vue/shared
vue
@vue/compat
commit: |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@packages/shared/src/escapeHtml.ts`:
- Around line 50-57: The escapeHtmlComment function currently strips leading “>”
using a do/while regex loop that rescans the whole string on each pass, which
can become quadratic on long runs. Replace the repeated commentStripRE loop in
escapeHtmlComment with a single linear scan that removes the leading comment
markers in one pass while preserving the existing behavior.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro
Run ID: e53e5eb4-9290-4cf1-865f-923ef8786b0d
📒 Files selected for processing (3)
packages/server-renderer/__tests__/render.spec.tspackages/shared/__tests__/escapeHtml.spec.tspackages/shared/src/escapeHtml.ts
e3f1c1f to
86c334a
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.
Refs GHSA-9rff-vwfp-83hv.
Summary by CodeRabbit
Bug Fixes
Tests