Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions AUDIT.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@ desktop and mobile, adds layout diagnostics without arbitrary delays, and preser
reports, traces, screenshots, and diffs when protected CI or trusted publishing detects a visual
change.

Version 1.1.3 tightens visual comparisons to an absolute 500-pixel budget and explicitly denies
install scripts for every resolved `fsevents` version, keeping the visual and dependency policies
precise as the toolchain evolves.

The repository now validates Node 24 and 26 with real FFmpeg on Linux, macOS, and Windows, uses
private vulnerability reporting, required pull-request checks, immutable Action references, and npm
trusted publishing with provenance. Representative downstream media corpora and high-volume service
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.1.3 - 2026-08-21

### Testing and supply-chain hardening

- Replaced the one-percent visual tolerance with an absolute 500-pixel limit for full-page snapshots
- Explicitly disabled install scripts for Playwright's nested `fsevents@2.3.2` dependency
- Kept the existing `fsevents@2.3.3` denial so the install-script policy covers the complete dependency tree

## 1.1.2 - 2026-08-21

### Testing and release engineering
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ffmpeg",
"version": "1.1.2",
"version": "1.1.3",
"description": "A modern, typed Node.js API for processing media with FFmpeg",
"keywords": [
"ffmpeg",
Expand Down Expand Up @@ -88,6 +88,7 @@
},
"allowScripts": {
"esbuild@0.28.1": true,
"fsevents@2.3.2": false,
"fsevents@2.3.3": false
}
}
2 changes: 1 addition & 1 deletion test/browser/landing-page.pw.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ test('landing page matches its full-page visual baseline', async ({ page }) => {
animations: 'disabled',
caret: 'hide',
fullPage: true,
maxDiffPixelRatio: 0.01,
maxDiffPixels: 500,
scale: 'css',
});

Expand Down
Loading