Upgrade Deps#73
Conversation
There was a problem hiding this comment.
Pull request overview
This pull request attempts to upgrade multiple dependencies and devDependencies to newer versions. However, there are several critical issues that must be addressed before this PR can be merged:
- Updated dependency versions in package.json for both runtime and development dependencies
- Upgrades include UI libraries (@deskpro/deskpro-ui), monitoring tools (@sentry/react), state management (@tanstack/react-query), forms (react-hook-form), routing (react-router-dom), styling (styled-components), and build tools (vite, typescript, @swc/core)
- Critical Issue: The pnpm-lock.yaml file has not been regenerated to reflect these changes
- Critical Issue: Invalid TypeScript version specified (5.9.3 does not exist)
- Critical Issue: jest-environment-jsdom version incompatible with jest version
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "intersection-observer": "^0.12.2", | ||
| "jest": "^29.7.0", | ||
| "jest-environment-jsdom": "^30.0.5", | ||
| "jest-environment-jsdom": "^30.2.0", |
There was a problem hiding this comment.
The jest-environment-jsdom version 30.2.0 is incompatible with the jest version 29.7.0 currently in use. The major version of jest-environment-jsdom should match the major version of jest. Please downgrade jest-environment-jsdom to a version in the 29.x range (e.g., ^29.7.0) to ensure compatibility with jest 29.7.0.
| "jest-environment-jsdom": "^30.2.0", | |
| "jest-environment-jsdom": "^29.7.0", |
|
Build for commit d11f3e1 deployed to: https://basecamp-pr-73.ci.next.deskprodemo.com URLs: |
This pull request updates several dependencies and devDependencies in the
package.jsonfile to their latest minor or patch versions. These updates help ensure compatibility, improved performance, and access to the latest features and bug fixes.Dependency updates:
@deskpro/deskpro-ui,@sentry/react,@tanstack/react-query,react-hook-form,react-router-dom,styled-components, and others to their latest minor or patch versions.javascript-time-ago,react-time-ago, andturndownto newer versions.DevDependency updates:
@swc/core,@types/lodash,@types/react,jest-environment-jsdom,ts-jest,typescript, andviteto their latest releases. [1] [2]