You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Jest packages jest-environment-jsdom-abstract and jest-environment-jsdom currently depend on jsdom version 22. This version of jsdom depends on abab and domexception, which have both been deprecated, and are not present in jsdom 24
Motivation
By eliminating deprecated packages, jest can avoid serving old packages to its 23 million weekly downloaders.
Example
//-- package.jsondependencies{jsdom: 24}
Pitch
Deprecated packages are an eyesore in npm install output and also risk containing unnoticed security vulnerabilities. Given that abab and domexception aren't being used in the latest version of jsdom, Jest should upgrade to jsdom 24 before jest 30 is released.
The text was updated successfully, but these errors were encountered:
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Please note this issue tracker is not a help forum. We recommend using StackOverflow or our discord channel for questions.
🚀 Feature Proposal
Jest packages
jest-environment-jsdom-abstract
andjest-environment-jsdom
currently depend onjsdom
version 22. This version ofjsdom
depends onabab
anddomexception
, which have both been deprecated, and are not present in jsdom 24Motivation
By eliminating deprecated packages, jest can avoid serving old packages to its 23 million weekly downloaders.
Example
Pitch
Deprecated packages are an eyesore in
npm install
output and also risk containing unnoticed security vulnerabilities. Given thatabab
anddomexception
aren't being used in the latest version ofjsdom
, Jest should upgrade to jsdom 24 before jest 30 is released.The text was updated successfully, but these errors were encountered: