chore: update dependencies to fix CVEs#1904
Merged
radu-gheorghe merged 1 commit intomasterfrom Apr 29, 2026
Merged
Conversation
CVE-2026-41238, CVE-2026-41239) - Bump jekyll minimum version to >= 4.3.3 (CVE-2026-35611) - Bump html-proofer minimum version to >= 5.0.8 (CVE-2026-35611) - Pin marked CDN to version 15.0.12 (CVE-2026-41680) - DOMPurify CDN already pinned to 3.1.6 (CVE-2026-41238, CVE-2026-41239) Co-Authored-By: Claude Sonnet 4.6 <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
Updates dependency version constraints to address known CVEs:
jekyllminimum version to>= 4.3.3inGemfile(CVE-2026-35611)html-prooferminimum version to>= 5.0.8inGemfile(CVE-2026-35611)markedCDN to version15.0.12inecommerce-user-preferences/webapp/templates/index.html(CVE-2026-41680)DOMPurifyCDN was already pinned to3.1.6— no change needed (CVE-2026-41238, CVE-2026-41239 — confirmed safe)Changed Files
Gemfilejekyll:>= 4.2.1→>= 4.3.3(addresses CVE-2026-35611)html-proofer: unversioned →>= 5.0.8(addresses CVE-2026-35611)examples/ecommerce-user-preferences/webapp/templates/index.htmlmarkedCDN: unpinnedmarked/marked.min.js→marked@15.0.12/marked.min.js(addresses CVE-2026-41680)DOMPurify@3.1.6was already pinned and is already used correctly —app.jscallsDOMPurify.sanitize()on allmarked.parse()output before assigning toinnerHTML. No change was needed.CVEs Addressed
markedCDN was previously unpinned (floating latest), which is a supply-chain risk. It is now pinned to15.0.12.3.1.6onmasterand is actively used inapp.jsto sanitize all HTML before insertion — confirmed safe.>=(lower bounds), not exact pins. Any compatible newer version will be resolved by Bundler. Verify this is acceptable for your CI/CD policy.Verification
bundle installand verify no conflicts with updated gem constraintshttps://cdn.jsdelivr.net/npm/marked@15.0.12/marked.min.js🤖 Generated with Claude Code