Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,28 @@
"bumpManifestVer": "node ./bin/bumpManifestVer.js"
},
"dependencies": {
"@deskpro/app-sdk": "^6.0.6",
"@deskpro/deskpro-ui": "^8.3.1",
"@deskpro/app-sdk": "^6.0.8",
"@deskpro/deskpro-ui": "^8.4.0",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@fortawesome/react-fontawesome": "^0.2.6",
Copy link

Copilot AI Jan 7, 2026

Choose a reason for hiding this comment

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

The package "@fortawesome/react-fontawesome" at version "^0.2.6" is deprecated. The deprecation notice indicates that v0.2.x is no longer supported unless using FontAwesome 5, and recommends updating to v3.1.1 or greater. Consider upgrading to the latest v3.x version for continued support and compatibility.

Suggested change
"@fortawesome/react-fontawesome": "^0.2.6",
"@fortawesome/react-fontawesome": "^3.1.1",

Copilot uses AI. Check for mistakes.
"@heroicons/react": "1.0.6",
"@sentry/react": "^9.38.0",
"@sentry/vite-plugin": "^3.5.0",
"@sentry/react": "^9.47.1",
"@sentry/vite-plugin": "^3.6.1",
"date-fns": "^2.30.0",
"flatpickr": "^4.6.13",
"formik": "^2.4.6",
"javascript-time-ago": "^2.5.11",
"formik": "^2.4.9",
"javascript-time-ago": "^2.5.12",
"lodash": "^4.17.21",
"polished": "^4.3.1",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^17.0.2",
"react-resize-observer": "^1.1.1",
"react-router-dom": "^6.30.1",
"react-time-ago": "^7.3.3",
"react-router-dom": "^6.30.2",
"react-time-ago": "^7.3.5",
"showdown": "^2.1.0",
"simplebar": "^6.3.2",
"styled-components": "^6.1.19",
"simplebar": "^6.3.3",
"styled-components": "^6.2.0",
"tippy.js": "^6.3.7",
"ts-pattern": "^3.3.5",
"use-debounce": "^8.0.4",
Expand All @@ -46,8 +46,8 @@
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^12.1.5",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.20",
"@types/react": "^18.3.23",
"@types/lodash": "^4.17.21",
"@types/react": "^18.3.27",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.3.7",
"@types/showdown": "^2.0.6",
Expand All @@ -61,12 +61,12 @@
"eslint-config-prettier": "8.3.0",
"eslint-plugin-react-hooks": "4.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.5",
"jest-environment-jsdom": "^30.2.0",
Copy link

Choose a reason for hiding this comment

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

issue (testing): Align jest-environment-jsdom major version with Jest to avoid subtle test runtime issues.

Jest is still on ^29.7.0 while jest-environment-jsdom is on ^30.2.0. Since jest-environment-jsdom majors usually track Jest majors, this mismatch can cause subtle or breaking test behavior. Please either keep jest-environment-jsdom on a 29.x release or upgrade Jest to 30.x so their major versions stay aligned.

"prettier": "^2.8.8",
"rollup-plugin-copy": "3.4.0",
"slugify": "^1.6.6",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3",
"vite": "^6.3.6"
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
Copy link

Choose a reason for hiding this comment

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

suggestion (testing): Double‑check ts-jest compatibility with TypeScript 5.9.x.

Since TypeScript is upgraded to ^5.9.3 while ts-jest stays at ^29.4.6, please verify that this ts-jest version officially supports TS 5.9, or bump ts-jest to a release that does. Version skew here can cause hard-to-diagnose test compile/type errors.

Suggested implementation:

    "slugify": "^1.6.6",
    "ts-jest": "^29.5.0",
    "typescript": "^5.9.3",
    "vite": "^6.4.1"

  1. After bumping ts-jest, run npm install or yarn install to update the lockfile.
  2. Run the Jest test suite to confirm there are no new compilation or type errors introduced by the new ts-jest/TypeScript combination.
  3. If your actual supported version (per ts-jest's official compatibility table) is different from ^29.5.0, adjust the version in package.json accordingly.

"vite": "^6.4.1"
}
}
Loading
Loading