This release includes 1 breaking change for platform teams planning a safe upgrade.
✓ No known CVEs patched in this version
Topics
+7 more
ReleasePort's take
Light signalVersion 1.1.0 of @eigenpal/docx-editor-core adds custom‑font registration and improves suggesting‑mode change tracking, while fixing several DOCX parsing bugs.
Why it matters: The new `fonts` prop lets developers declare custom fonts declaratively; enhanced revision APIs capture structural edits as OOXML revisions in suggesting mode, improving collaboration workflows. Bug fixes prevent malformed tables and XML parse failures when stray ampersands appear.
Summary
AI summaryUpdates Minor Changes, Patch Changes, and bf11ee8 across a mixed release.
Changes in this release
| Type | Severity | Summary | CVE |
|---|---|---|---|
| Feature | Medium |
Adds `fonts` prop on `<DocxEditor>` for declarative custom‑font registration. Adds `fonts` prop on `<DocxEditor>` for declarative custom‑font registration. Source: llm_adapter@2026-05-30 Confidence: high |
— |
| Feature | Medium |
Routes font‑load failures through React `onError` prop and Vue `error` event; adds `onFontError(callback)` utility. Routes font‑load failures through React `onError` prop and Vue `error` event; adds `onFontError(callback)` utility. Source: llm_adapter@2026-05-30 Confidence: high |
— |
| Feature | Medium |
Tracks structural edits (paragraph breaks, properties, table rows/cells) as OOXML revisions in suggesting mode; adds `acceptChangeById`, `rejectChangeById`, and enhanced bulk accept/reject APIs. Tracks structural edits (paragraph breaks, properties, table rows/cells) as OOXML revisions in suggesting mode; adds `acceptChangeById`, `rejectChangeById`, and enhanced bulk accept/reject APIs. Source: llm_adapter@2026-05-30 Confidence: high |
— |
| Feature | Medium |
Tracks inserted and deleted images as real tracked changes in suggesting mode, with revision outlines and review cards. Tracks inserted and deleted images as real tracked changes in suggesting mode, with revision outlines and review cards. Source: llm_adapter@2026-05-30 Confidence: high |
— |
| Dependency | Medium |
Raises prosemirror-history peer dependency to >= 1.5.0. Raises prosemirror-history peer dependency to >= 1.5.0. Source: llm_adapter@2026-05-30 Confidence: high |
— |
| Bugfix | Medium |
Tracks list/numbering changes made in suggesting mode; rejecting them cleanly reverts both items and numbering. Tracks list/numbering changes made in suggesting mode; rejecting them cleanly reverts both items and numbering. Source: llm_adapter@2026-05-30 Confidence: high |
— |
| Bugfix | Medium |
Handles DOCX tables with fully covered vertical‑merge rows without creating invalid empty table rows. Handles DOCX tables with fully covered vertical‑merge rows without creating invalid empty table rows. Source: llm_adapter@2026-05-30 Confidence: high |
— |
| Bugfix | Medium |
Tolerates stray unescaped `&` in DOCX XML parts, escaping it before parsing and including error context snippets. Tolerates stray unescaped `&` in DOCX XML parts, escaping it before parsing and including error context snippets. Source: llm_adapter@2026-05-30 Confidence: high |
— |
| Bugfix | Medium |
Aligns header/footer editing behavior to match body editing (click, drag, selection, right‑click, image select, hyperlinks, table resizing, PAGE/NUMPAGES field inserts). Aligns header/footer editing behavior to match body editing (click, drag, selection, right‑click, image select, hyperlinks, table resizing, PAGE/NUMPAGES field inserts). Source: llm_adapter@2026-05-30 Confidence: high |
— |
| Bugfix | Low |
Fixes undo in suggesting mode marking an existing character as inserted and correctly removes paragraph breaks without stray insertions. Fixes undo in suggesting mode marking an existing character as inserted and correctly removes paragraph breaks without stray insertions. Source: granite4.1:30b@2026-05-30-audit Confidence: low |
— |
Full changelog
Minor Changes
- 9d7138e: Add a
fontsprop on<DocxEditor>for declarative custom-font registration — each entry injects an@font-facefrom the URL you provide, and entries sharing afamilyregister different weights. Also exposesloadFontFromUrl,loadFontDefinitions, and theFontDefinitiontype from@eigenpal/docx-editor-core/utils. Fixes #620. - bf11ee8: Fix undo in suggesting mode marking an existing character as inserted. Undoing a tracked paragraph break (Enter) now only removes the break, without stamping a stray insertion on the boundary character. Raises the prosemirror-history peer dependency to >= 1.5.0. Fixes #633
- 9d7138e: Font-load failures now route through the React
onErrorprop and the Vueerrorevent instead of the console, so you can forward them to your own error tracker; with no subscriber attached they fall back toconsole.warn. AddsonFontError(callback)to@eigenpal/docx-editor-core/utilsfor non-adapter hosts. - 42ea72d: Track structural edits as OOXML revisions in suggesting mode. Paragraph-break insert/delete, paragraph-property changes, and table row/cell insert/delete/merge are now recorded, round-tripped through DOCX, and shown in the tracked-changes sidebar (React and Vue, localized). Adds
acceptChangeById(id)/rejectChangeById(id), andacceptAllChanges/rejectAllChangesnow resolve every revision type rather than inline marks only. Fixes #614. - 137d5de: Track inserted and deleted images as real tracked changes in suggesting mode. A picture added (or removed) while suggesting now carries the insertion/deletion mark, paints with a revision outline, shows a review card, and is accepted/rejected with the rest of the change — and round-trips to
<w:ins>/<w:del>like Word. The mechanism is generic to inline atom nodes, so other elements (shapes, …) plug in the same way.
Patch Changes
- 7e77654: Track list/numbering changes made in suggesting mode so rejecting them reverts cleanly. Applying a list to a paragraph now records a tracked paragraph-property change (
w:pPrChange, matching Word), and rejecting the suggestion removes both the typed items and the numbering instead of stranding an empty list item. Fixes #634 - 30c1931: Handle DOCX tables with fully covered vertical-merge rows without creating invalid empty table rows.
- ebb85a5: Tolerate a stray unescaped
&in DOCX XML parts (document, headers, footers, comments) instead of failing the whole parse with "Invalid character in entity name". Stray ampersands are escaped before parsing, and any remaining parse error now includes a snippet of the bytes around the offending column. - e5e0997: Header/footer editing now matches the body: click, drag, multi-click, selection, right-click, image select, hyperlinks, table row/column/edge resize, and PAGE/NUMPAGES field inserts all behave the same as in the document body. Fixes #468.
Breaking Changes
- Raises the prosemirror-history peer dependency to >= 1.5.0 (bf11ee8)
Weekly OSS security release digest.
The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.
No spam, unsubscribe anytime.
Share this release
About Docx Editor
All releases →Related context
Related tools
Earlier breaking changes
- v@eigenpal/[email protected] Shared i18n package extracted into @eigenpal/docx-editor-i18n.
- v@eigenpal/[email protected] `showPrintButton` prop removed from `<DocxEditor>` and toolbar components.
- v@eigenpal/[email protected] Toolbar naming unified across React and Vue adapters; classic toolbar removed.
- v@eigenpal/[email protected] Agent UI components relocated to new agent packages and API changed.
- v@eigenpal/[email protected] Shared i18n package extracted from adapters into dedicated locale bundle.
Beta — feedback welcome: [email protected]