Skip to content

Comments

Upgrade Deps#37

Open
HappyPaul55 wants to merge 2 commits intomainfrom
upgrade-deps-2026-07-01
Open

Upgrade Deps#37
HappyPaul55 wants to merge 2 commits intomainfrom
upgrade-deps-2026-07-01

Conversation

@HappyPaul55
Copy link
Contributor

@HappyPaul55 HappyPaul55 commented Jan 7, 2026

This pull request updates several dependencies in the package.json file to their latest minor or patch versions. These updates help ensure compatibility, improved features, and bug fixes across both runtime and development environments.

Dependency updates:

  • Updated core dependencies such as @deskpro/app-sdk, @deskpro/deskpro-ui, @sentry/react, @sentry/vite-plugin, @tanstack/react-query, react-router-dom, and styled-components to newer versions.

Development tooling updates:

  • Updated development dependencies including @swc/core, @swc/helpers, @testing-library/jest-dom, @types/react, @vitejs/plugin-react, jest-environment-jsdom, ts-jest, typescript, and vite to their latest versions.

Summary by Sourcery

Update application and tooling dependencies to newer minor and patch versions to keep the project current and compatible.

Enhancements:

  • Bump core runtime dependencies including Deskpro SDK/UI, Sentry packages, React Query, react-router-dom, and styled-components to newer minor/patch releases.
  • Upgrade development and testing tooling such as SWC, React type definitions, Testing Library, Jest environment, ts-jest, TypeScript, Vite, and related plugins to more recent versions.

@HappyPaul55 HappyPaul55 requested a review from Copilot January 7, 2026 14:16
@sourcery-ai
Copy link

sourcery-ai bot commented Jan 7, 2026

Reviewer's guide (collapsed on small PRs)

Reviewer's Guide

This PR strictly updates application and tooling dependencies in package.json (and the corresponding pnpm-lock.yaml) to newer compatible minor/patch versions, without changing any application code or scripts.

File-Level Changes

Change Details Files
Bump core runtime dependencies to newer minor/patch versions.
  • Update @deskpro/app-sdk from ^6.0.6 to ^6.0.8
  • Update @deskpro/deskpro-ui from ^8.3.1 to ^8.4.0
  • Update @sentry/react from ^9.38.0 to ^9.47.1
  • Update @sentry/vite-plugin from ^3.5.0 to ^3.6.1
  • Update @tanstack/react-query from ^4.40.1 to ^4.42.0
  • Update react-router-dom from ^6.30.1 to ^6.30.2
  • Update styled-components from ^6.1.19 to ^6.2.0
package.json
pnpm-lock.yaml
Bump build, test, and type-check tooling dependencies to newer minor/patch versions.
  • Update @swc/core from ^1.12.14 to ^1.15.8
  • Update @swc/helpers from ^0.5.17 to ^0.5.18
  • Update @testing-library/jest-dom from ^6.6.3 to ^6.9.1
  • Update @types/react from ^18.3.23 to ^18.3.27
  • Update @vitejs/plugin-react from ^4.6.0 to ^4.7.0
  • Update jest-environment-jsdom from ^30.0.5 to ^30.2.0
  • Update ts-jest from ^29.4.0 to ^29.4.6
  • Update typescript from ^5.8.3 to ^5.9.3
  • Update vite from ^6.3.6 to ^6.4.1
package.json
pnpm-lock.yaml

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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:61` </location>
<code_context>
-    "typescript": "^5.8.3",
-    "vite": "^6.3.6"
+    "ts-jest": "^29.4.6",
+    "typescript": "^5.9.3",
+    "vite": "^6.4.1"
   }
</code_context>

<issue_to_address>
**suggestion:** Consider alignment between the TypeScript version and the pinned @typescript-eslint tooling.

TypeScript is being upgraded while `@typescript-eslint/eslint-plugin` and `@typescript-eslint/parser` stay pinned at `6.20.0`. New TS 5.9.x syntax or flags might not be understood by that version. Please either confirm 6.20.0 officially supports TS 5.9 or bump the @typescript-eslint packages to a version that does.

Suggested implementation:

```
    "@typescript-eslint/eslint-plugin": "^8.0.0",

```

```
    "@typescript-eslint/parser": "^8.0.0",

```

```
    "ts-jest": "^29.4.6",
    "typescript": "^5.9.3",
    "vite": "^6.4.1"

```

1. After bumping `@typescript-eslint/*`, run `pnpm install` / `npm install` / `yarn install` as appropriate to update the lockfile.
2. Run the lint task (e.g. `pnpm lint`) to confirm there are no new config deprecations or rule name changes required by the newer `@typescript-eslint` major version.
3. If your repo pins `@typescript-eslint` versions in any shared config package or separate `package.json` (e.g., for tooling or examples), apply the same version bumps there for consistency.
</issue_to_address>

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

@openhands-ai
Copy link

openhands-ai bot commented Jan 7, 2026

Looks like there are a few issues preventing this PR from being merged!

  • GitHub Actions are failing:
    • Feature Build

If you'd like me to help, just leave a comment, like

@OpenHands please fix the failing actions on PR #37 at branch `upgrade-deps-2026-07-01`

Feel free to include any additional details that might help me get this PR into a better state.

You can manage your notification settings

Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This pull request upgrades multiple dependencies in the project to their latest minor or patch versions. The changes include updates to core runtime dependencies like Deskpro SDK packages, Sentry monitoring, and React Router, as well as development dependencies such as SWC compiler, testing libraries, TypeScript, and Vite.

Key changes:

  • Updated core runtime dependencies (Deskpro SDK, Sentry, React Query, React Router, styled-components)
  • Updated development tooling dependencies (SWC, testing libraries, TypeScript, Vite)
  • All updates appear to be minor or patch version increments without major version changes

Reviewed changes

Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.

File Description
package.json Updated version specifiers for 19 dependencies (10 runtime, 9 development)
pnpm-lock.yaml Updated lockfile with resolved versions and dependency trees for all upgraded packages

All dependency upgrades in this PR appear to be minor or patch version updates, which typically maintain backward compatibility. No breaking changes or problematic version updates were identified during the review.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant