chore(docs): override the transitive deps Dependabot cannot reach - #231
Merged
Merged
Conversation
esbuild, sharp and @tiptap/core sit behind docus and nuxt, so the weekly security run failed on conflicting-dependencies instead of opening a PR.
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.
The weekly Dependabot security run for
/docshas failed on every attempt since 2026-09-09 withconflicting-dependencies.esbuild,sharpand@tiptap/coreare not direct dependencies: they sit behinddocusandnuxt, which cap them below the patched versions. Dependabot reports "the latest possible version that can be installed is 0.25.12" and gives up, so no PR is ever opened and the advisories stay open.docusis already at its latest (5.13.0), so anoverridesblock indocs/package.jsonis the only lever:esbuild>= 0.17.0 < 0.28.1sharp< 0.35.4@tiptap/core>= 3.7.0 < 3.30.5js-yaml>= 4.0.0 < 4.3.2comarkkeeps its nestedjs-yaml5.4.1, which is above the 5.x advisory range.Verified locally:
npm installreports 0 vulnerabilities, andnpm run generatewith the deploy workflow environment prerenders all 71 routes.Supersedes #229 (the js-yaml bump is included here).