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
6 changes: 6 additions & 0 deletions workspaces/acs/.changeset/renovate-5351935.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@backstage-community/plugin-acs': patch
---

Updated dependency `@types/jest` to `^30.0.0`.
Updated dependency `jest` to `^30.0.0`.
2 changes: 1 addition & 1 deletion workspaces/acs/plugins/acs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/jest": "^29.5.14",
"@types/jest": "^30.0.0",

Copilot AI Apr 28, 2026

Copy link

Choose a reason for hiding this comment

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

@types/jest has been bumped to v30, but this workspace still resolves jest@29.7.0 (see workspaces/acs/yarn.lock). Mixing major versions can lead to incorrect typings in tests that use jest globals. Consider aligning the versions by upgrading jest to v30 here as well, or keeping @types/jest on the v29 line until jest is upgraded.

Suggested change
"@types/jest": "^30.0.0",
"@types/jest": "^29.5.14",

Copilot uses AI. Check for mistakes.
"msw": "^1.0.0",
"react": "^17.0.0 || ^18.0.0"
Comment on lines 68 to 72
Comment on lines 68 to 72

Copilot AI Apr 29, 2026

Copy link

Choose a reason for hiding this comment

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

The PR/changeset intent is to upgrade Jest to v30, but this package only bumps @types/jest (and does not declare jest at all). If this workspace relies on a shared Jest version elsewhere, consider updating that Jest dependency/range in the same PR (or keep @types/jest aligned with the Jest runtime version) to avoid type/runtime mismatches.

Copilot uses AI. Check for mistakes.
},
Expand Down
Loading
Loading