6 hours ago
next.js

v16.3.0-canary.60

Misc Changes

  • Remove embedded Claude Code plugin marketplace: #94877

Credits

Huge thanks to @gaojude for helping!

16 hours ago
docx-editor

@eigenpal/docx-editor-react@1.8.3

Patch Changes

  • 5ce3faa: Escape embedded font-family names before interpolating into the injected @font-face stylesheet, and build the print window via DOM APIs instead of document.write string concatenation. Prevents CSS injection and print-time XSS from crafted DOCX font names.
  • Updated dependencies [88a7650]
  • Updated dependencies [5ce3faa]
  • Updated dependencies [5eb0a43]
  • Updated dependencies [673e917]
  • Updated dependencies [74e36ef]
  • Updated dependencies [447d5b0]
    • @eigenpal/docx-editor-core@1.8.3
    • @eigenpal/docx-editor-agents@1.8.3
    • @eigenpal/docx-editor-i18n@1.8.3
16 hours ago
docx-editor

@eigenpal/docx-editor-vue@1.8.3

Patch Changes

  • Updated dependencies [88a7650]
  • Updated dependencies [5ce3faa]
  • Updated dependencies [5eb0a43]
  • Updated dependencies [673e917]
  • Updated dependencies [74e36ef]
  • Updated dependencies [447d5b0]
    • @eigenpal/docx-editor-core@1.8.3
    • @eigenpal/docx-editor-agents@1.8.3
    • @eigenpal/docx-editor-i18n@1.8.3
16 hours ago
docx-editor

@eigenpal/docx-editor-core@1.8.3

Patch Changes

  • 88a7650: Support RTL tables with w:bidiVisual alignment.

  • 5ce3faa: Escape embedded font-family names before interpolating into the injected @font-face stylesheet, and build the print window via DOM APIs instead of document.write string concatenation. Prevents CSS injection and print-time XSS from crafted DOCX font names.

  • 5eb0a43: Allowlist URL schemes on hyperlink and image-hyperlink targets parsed from DOCX relationships and pasted HTML; javascript:, data:, and other non-web schemes are now dropped.

  • 673e917: Render RTL tables (w:bidiVisual) with their columns in visual right-to-left order, matching Word. The bidi flag was already parsed and round-tripped, but the on-page painter still drew columns left-to-right, so in a right-to-left table a label cell appeared on the wrong side of the field it labels.

    Fixes #734

  • 74e36ef: Build shape SVG via DOM APIs instead of innerHTML, preventing XSS from crafted DOCX shape attributes.

  • 447d5b0: Fix Japanese/CJK IME input garbling text in suggesting mode. Composed text was re-inserted via handleTextInput, duplicating surrounding content and marking it as a tracked change. Suggesting mode now stays out of the way during composition and marks the committed text once it settles.

16 hours ago
docx-editor

@eigenpal/nuxt-docx-editor@1.8.3

Patch Changes

  • @eigenpal/docx-editor-vue@1.8.3
1 days ago
next.js

v16.3.0-canary.59

Misc Changes

  • Upgrade to swc 70: #94814
  • [turbopack] Sort modules in chunks to reduce duplicates: #94961
  • router instrumentation: refactor client hook dispatch (1/7): #94755
  • [otel] Add more verbose-mode OTEL spans for App Router: #94894
  • Enforce route segment configs on metadata routes under Cache Components: #94962
  • typegen: default to Turbopack: #94952
  • router instrumentation: add transition start context (2/7): #94766
  • fix: after(callback) called after response end: #94974
  • fix: request APIs in promises passed to after() in actions/handlers: #94964

Credits

Huge thanks to @mischnic, @sampoder, @feedthejim, @unstubbable, @wbinnssmith, and @lubieowoce for helping!

1 days ago
drawio
1 days ago
apexcharts.js

💎 Version 5.15.2

Fixes

Draw-animation frame no longer touches a destroyed chart

An animated chart (e.g. an area chart) schedules a requestAnimationFrame during render() to run its mask-reveal / draw animation. If the chart was destroyed before that frame fired, the stale callback ran against already-cleared DOM and threw:

TypeError: Cannot read properties of null (reading 'node')   // in runMaskReveal

The classic trigger is React StrictMode, which mounts → unmounts → remounts a component in development: the first mount queues the animation frame, the unmount calls destroy() (which nulls w.dom.elDefs), and the queued frame then fires against the torn-down chart. Any sufficiently rapid unmount hit the same race.

The fix adds an internal isDestroyed flag, set by destroy() (but not by updates), that the deferred draw-animation callbacks - mask reveal, stroke draw, and bulk reveal - check and bail on before touching the DOM. The flag is cleared on the next render, so re-mounting re-arms animations normally.

This complements the detached-chart destroy() fix in 5.15.1; together they resolve the teardown crashes tracked in react-apexcharts#602.