🔧 chore: bump Mantine, Next, and related dependencies to latest patch releases#11
🔧 chore: bump Mantine, Next, and related dependencies to latest patch releases#11
Conversation
gfazioli
commented
Feb 17, 2026
- Updated Mantine core, hooks, and code-highlight to 8.3.15.
- Bumped Next.js to 15.5.12 and aligned dev dependencies.
- Updated TypeScript, ESLint, and other tooling to latest patch releases.
- Ensures compatibility with latest features and security fixes.
… releases - Updated Mantine core, hooks, and code-highlight to 8.3.15. - Bumped Next.js to 15.5.12 and aligned dev dependencies. - Updated TypeScript, ESLint, and other tooling to latest patch releases. - Ensures compatibility with latest features and security fixes.
There was a problem hiding this comment.
Pull request overview
This PR updates development and documentation dependencies to their latest versions, primarily focusing on Mantine UI components and Next.js. The PR title and description claim these are "patch releases" but the changes actually include minor version bumps for several packages (typescript-eslint, @mantine-tests/core, and simple-git).
Changes:
- Updated Mantine packages (@mantine/core, @mantine/hooks, @mantine/code-highlight) from 8.3.14 to 8.3.15
- Updated Next.js from 15.5.11 to 15.5.12
- Updated TypeScript ESLint tooling from 8.54.0 to 8.56.0 (minor bump, not patch)
- Updated various type definitions and dev tooling to latest versions
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| package.json | Updates dev dependencies including Mantine, TypeScript ESLint, type definitions, and build tools |
| docs/package.json | Updates Mantine packages, Next.js, and type definitions to align with root package |
| yarn.lock | Reflects all direct and transitive dependency updates with valid checksums |
| "tsx": "^4.21.0", | ||
| "typescript": "5.9.3", | ||
| "typescript-eslint": "^8.54.0", | ||
| "typescript-eslint": "^8.56.0", |
There was a problem hiding this comment.
The PR description states "latest patch releases" but several updates are actually minor version bumps:
- typescript-eslint: 8.54.0 → 8.56.0 (minor)
- @mantine-tests/core: 2.0.0 → 2.1.0 (minor)
- simple-git: 3.30.0 → 3.31.1 (minor)
Additionally, the TypeScript ESLint update brings in eslint-visitor-keys v5 (a major version bump from v4), which is a transitive dependency change.
While these changes may be safe, the PR description should accurately reflect that this includes minor version bumps, not just patch releases. Consider updating the title and description to reflect the actual scope of changes.