chore(deps-dev): bump @types/node from 22.13.14 to 25.5.0#363
Closed
dependabot[bot] wants to merge 1 commit intomainfrom
Closed
chore(deps-dev): bump @types/node from 22.13.14 to 25.5.0#363dependabot[bot] wants to merge 1 commit intomainfrom
dependabot[bot] wants to merge 1 commit intomainfrom
Conversation
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 22.13.14 to 25.5.0. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-version: 25.5.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
❌ Deploy Preview for graypaper-reader failed. Why did it fail? →
|
Contributor
Visual Regression Test Report ❌ FailedGithub run id: 23463850048 🔗 Artifacts: Download |
Member
|
Closing in favor of a single combined dependency update PR. |
Contributor
Author
|
OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting If you change your mind, just re-open this PR and I'll resolve any conflicts on it. |
tomusdrw
added a commit
that referenced
this pull request
Mar 25, 2026
Update all project dependencies including major version bumps: - @biomejs/biome 1.8.3 → 2.4.8 (with config migration) - vite 6.3.6 → 8.0.2, @vitejs/plugin-react 5.0.1 → 6.0.1 - typescript 5.8.3 → 6.0.2, vitest 3.1.2 → 4.1.1 - pdfjs-dist 4.5.136 → 5.5.207 (API change: canvas param now required) - jspdf 3.0.1 → 4.2.1 (removed @types/jspdf stub) - lucide-react 0.554.0 → 1.6.0 - react 19.1.0 → 19.2.4, react-dom 19.2.0 → 19.2.4 - @commitlint/cli 19.8.1 → 20.5.0 - tailwindcss/postcss/vite 4.1.x → 4.2.2 - @types/node 22.x → 25.x across workspace packages - All other dependencies bumped to latest Also removes unused dependencies: @fluffylabs/migrate-selection, @fluffylabs/synctex-store, @fluffylabs/types, @types/jspdf. Closes #368, #364, #363, #318, #206, #204. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
5 tasks
tomusdrw
added a commit
that referenced
this pull request
Mar 25, 2026
* chore(deps): update all dependencies to latest versions Update all project dependencies including major version bumps: - @biomejs/biome 1.8.3 → 2.4.8 (with config migration) - vite 6.3.6 → 8.0.2, @vitejs/plugin-react 5.0.1 → 6.0.1 - typescript 5.8.3 → 6.0.2, vitest 3.1.2 → 4.1.1 - pdfjs-dist 4.5.136 → 5.5.207 (API change: canvas param now required) - jspdf 3.0.1 → 4.2.1 (removed @types/jspdf stub) - lucide-react 0.554.0 → 1.6.0 - react 19.1.0 → 19.2.4, react-dom 19.2.0 → 19.2.4 - @commitlint/cli 19.8.1 → 20.5.0 - tailwindcss/postcss/vite 4.1.x → 4.2.2 - @types/node 22.x → 25.x across workspace packages - All other dependencies bumped to latest Also removes unused dependencies: @fluffylabs/migrate-selection, @fluffylabs/synctex-store, @fluffylabs/types, @types/jspdf. Closes #368, #364, #363, #318, #206, #204. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix(ci): update Playwright Docker image and add Node version constraint - Bump Playwright Docker image from v1.55.1 to v1.58.2 to match @playwright/test dependency - Add .node-version file (Node 22) for Netlify deploy compatibility with Vite 8 (requires Node 20.19+ or 22.12+) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * test: update visual regression snapshots for dependency updates Regenerated all 30 Linux snapshots to match rendering changes from updated dependencies (pdfjs-dist 5, lucide-react 1.x, radix-ui, tailwindcss 4.2, Playwright 1.58). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * chore: add Node.js engine constraint for Vite 8 compatibility Vite 8 requires Node.js 20.19+ or 22.12+. Declare this in engines so npm warns on incompatible runtimes. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: rename .sidebar class to avoid pdfjs-dist v5 CSS clash pdfjs-dist v5 ships a global .sidebar class with border, background, box-shadow, border-radius, backdrop-filter, and fixed width — all of which override our sidebar layout. Rename to .gp-sidebar to avoid the conflict. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * test: regenerate visual snapshots after sidebar CSS fix Clean Docker rebuild to ensure .gp-sidebar rename is reflected in all snapshot baselines. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * test: regenerate snapshots on linux/amd64 to match CI Previous snapshots were generated on aarch64 (ARM), causing font rendering differences vs CI's amd64 runners. Rebuilt with --platform linux/amd64 for pixel-perfect match. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * ci: auto-update visual snapshots on PRs before verification On PRs, run --update-snapshots first to regenerate baselines on native amd64, commit if changed, then run verification. This avoids architecture-dependent rendering differences when generating snapshots on ARM Macs with Docker emulation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * test: auto-update visual regression snapshots * fix(ci): mount tests dir in verification step for updated snapshots The verification step was using snapshots baked into the Docker image (from before the update), not the freshly updated ones on the host. Mount the tests directory so verification uses the correct baselines. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
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.
Bumps @types/node from 22.13.14 to 25.5.0.
Commits
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)