v1.4.469
danielmiessler/Fabricv1.4.469Aug 3, 2026by github-actions[bot]
AI Summary
Replaces the legacy PDF.js processing pipeline with a new `pdf-inspector-wasm` worker to improve performance and manageability, while also fixing file attachment behavior and adding robust error handling.
Key Highlights
- Replaced PDF.js with pdf-inspector WASM worker
- Added worker error handling with crash recovery
- Fixed file attachment behavior to use single stream calls
- Removed legacy PDF dependencies
- Simplified codebase and removed dead code
Breaking Changes
- Removed legacy PDF dependency chain (pdf-to-markdown-core, pdfjs-dist, pdf-config.ts)
New Features
- pdf-inspector.worker.ts implementation
- Integration of @firecrawl/pdf-inspector-wasm
- Worker crash rejection mechanism
Full Release Notes
## Changes ### PR [#2185](https://github.com/danielmiessler/Fabric/pull/2185) by [ksylvan](https://github.com/ksylvan): feat(web): replace PDF.js pipeline with pdf-inspector WASM worker - Replaced the PDF.js processing pipeline with the new `pdf-inspector.worker.ts`, backed by `@firecrawl/pdf-inspector-wasm`. The worker initializes WASM one time and processes transferred ArrayBuffers. - Added worker error handling. A worker crash now rejects all pending requests with a clear error and terminates the worker. The next request starts a new worker. - Fixed the file attachment behavior. The app now parses each file and stores its content without a chat request. One submit sends exactly one `streamChat` call, not one call for each attached file. - Removed the legacy PDF dependency chain: `pdf-to-markdown-core`, `pdfjs-dist`, `pdf-config.ts`, and the related build configuration. `@firecrawl/pdf-inspector-wasm` is now the only PDF dependency. - Simplified the worker boundary in follow-up refactors: merged redundant methods, removed dead code, and inlined a single-use interface. The full test suite continued to pass.