Conversation
Reviewer's GuideUpgrade runtime and development dependencies in package.json (and corresponding pnpm-lock.yaml) to newer minor/patch versions for UI, monitoring, data fetching, forms, routing, styling, build, test, lint, formatting, and TypeScript tooling. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Hey - I've found 1 issue
Prompt for AI Agents
Please address the comments from this code review:
## Individual Comments
### Comment 1
<location> `package.json:63` </location>
<code_context>
"jest": "^29.7.0",
- "jest-environment-jsdom": "^30.0.5",
- "prettier": "^3.6.2",
+ "jest-environment-jsdom": "^30.2.0",
+ "prettier": "^3.7.4",
"react-resize-observer": "^1.1.1",
</code_context>
<issue_to_address>
**issue (bug_risk):** Check compatibility between jest-environment-jsdom 30.x and Jest 29.x.
jest-environment-jsdom 30.x is meant for Jest 30, while we’re still on Jest 29.7.0. This mismatch can cause subtle runtime issues. Either keep jest-environment-jsdom on a 29.x version or upgrade Jest to 30.x in the same change to keep them in sync.
</issue_to_address>Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
There was a problem hiding this comment.
Pull request overview
This pull request updates multiple dependencies and devDependencies to their latest minor or patch versions, improving security, bug fixes, and compatibility. The updates span core application dependencies, testing libraries, build tools, and type definitions.
Key changes:
- Core library updates: @deskpro/deskpro-ui (8.3.1→8.4.0), @sentry/react (9.38.0→9.47.1), @tanstack/react-query (4.40.1→4.42.0), styled-components (6.1.19→6.2.0)
- Build tooling improvements: TypeScript (5.8.3→5.9.3), Vite (6.3.6→6.4.1), @swc/core (1.12.14→1.15.8)
- Testing infrastructure updates: @testing-library/jest-dom (6.6.3→6.9.1), jest-environment-jsdom (30.0.5→30.2.0)
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| package.json | Updates version specifiers for 20+ dependencies across runtime and development packages |
| pnpm-lock.yaml | Synchronizes lockfile with package.json changes, including transitive dependency resolution updates |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
Build for commit d72ada9 deployed to: https://sellsy-pr-62.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 keep the project up-to-date with security patches, bug fixes, and new features.Dependency updates:
@deskpro/deskpro-ui,@sentry/react,@tanstack/react-query,react-hook-form,react-router-dom, andstyled-componentsto newer versions.Development tooling updates:
@swc/core,@swc/helpers,@testing-library/jest-dom,@types/lodash,@types/react,@vitejs/plugin-react,eslint-config-prettier,jest-environment-jsdom,prettier,ts-jest,typescript, andviteto their latest minor or patch releases.Summary by Sourcery
Update application and tooling dependencies to newer minor and patch versions to keep the project current and maintain compatibility.
Build: