release: 4.21.2 - #743
Merged
Merged
Conversation
`bun audit` (the release gate) reported 8 high advisories across four transitive packages. Pinned via overrides, matching how undici was handled in 4.19.4 — a plain `bun install` won't move them because the lockfile pins hold. - linkify-it 5.0.1 -> 5.0.2 (markmap-lib > markdown-it) — the only one on a runtime path. It IS bundled into main.js, but markmap-lib constructs `MarkdownIt()` with no options, so `linkify` defaults to false and the quadratic mailto: scan-loop is unreachable. Pinned anyway so the community directory scan comes back clean. - postcss 8.5.15 -> 8.5.23 (dev: eslint-plugin-svelte, vite, vitest) - brace-expansion 5.0.6 -> 5.0.8 (dev: eslint, typescript-eslint) - fast-uri 3.1.2 -> 4.1.1 (dev: eslint > ajv) Note linkify-it is pinned to ^5.0.2, not ^6: v6 drops the default export markdown-it@5 imports, which breaks the esbuild bundle. bun audit now reports no vulnerabilities.
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.
Ships the three reported bugs (#731, #734, #736) plus the root-cause and CI work they surfaced.
Fixed
Security
bun auditreported 8 high advisories across four transitive packages; all now pinned, audit reports no vulnerabilities.Only
linkify-itwas on a runtime path (bundled via markmap). markmap constructsMarkdownIt()with no options, solinkifydefaults to false and the quadraticmailto:scan was unreachable — pinned anyway so the community directory scan is clean. Pinned to^5.0.2, not^6: v6 drops the default exportmarkdown-it@5imports, which breaks the bundle (verified by trying it).Build
TypeScript pinned to 6.x — the bump to 7 removed
baseUrland brokesvelte-check, failing every CI run since it landed.tsconfig.jsonuses the forward-compatiblepathsform so the pin lifts cleanly later.Verification
bun install --frozen-lockfile,bun run build,bun run test(379 passed),bun audit— all green.Issues #731/#734/#736 stay open until this is released, then get closed manually.