Conversation
There was a problem hiding this comment.
Pull request overview
This PR upgrades multiple npm dependencies to their latest minor/patch versions, aiming to incorporate bug fixes, security improvements, and new features from upstream packages. The changes affect both production and development dependencies across the stack, including UI libraries, testing tools, build tools, and type definitions.
Key changes:
- Updated 8 production dependencies including core libraries like
@sentry/react(9.38.0 → 9.47.1),react-hook-form(7.60.0 → 7.70.0), and@deskpro/deskpro-ui(8.3.1 → 8.4.0) - Updated 9 development dependencies including build tools like
vite(6.3.6 → 6.4.1),typescript(5.8.3 → 5.9.3), and@swc/core(1.12.14 → 1.15.8) - All updates are minor or patch version bumps, minimizing the risk of breaking changes
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "dependencies": { | ||
| "@deskpro/app-sdk": "6.0.3", | ||
| "@deskpro/deskpro-ui": "^8.3.1", | ||
| "@deskpro/deskpro-ui": "^8.4.0", |
There was a problem hiding this comment.
The pnpm-lock.yaml file appears to still reference the old version (@deskpro/deskpro-ui@8.3.1) rather than the updated version (^8.4.0). After updating dependency versions in package.json, you need to run pnpm install to update the lockfile. This ensures that the exact resolved versions and dependency tree are properly recorded, which is critical for reproducible builds across environments.
|
Build for commit 8748687 deployed to: https://click-up-pr-79.ci.next.deskprodemo.com URLs: |
This pull request updates several dependencies in the
package.jsonfile to their latest versions, both for production and development. The main goal is to keep the project up-to-date with the latest features, bug fixes, and security improvements from upstream packages.Dependency updates:
Production dependencies:
@deskpro/deskpro-uito^8.4.0,@sentry/reactto^9.47.1,@sentry/vite-pluginto^3.6.1,@tanstack/react-queryto^4.42.0,javascript-time-agoto^2.5.12,react-hook-formto^7.70.0,react-router-domto^6.30.2, andreact-time-agoto^7.3.5for improved features and bug fixes.Development dependencies:
@swc/coreto^1.15.8,@swc/helpersto^0.5.18,@types/lodashto^4.17.21,@types/reactto^18.3.27,jest-environment-jsdomto^30.2.0,styled-componentsto^6.2.0,ts-jestto^29.4.6,typescriptto^5.9.3, andviteto^6.4.1. [1] [2]