Update dependency jsdom to v27 - autoclosed
This MR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| jsdom | devDependencies | major | 26.1.0 -> 27.0.0 |
Release Notes
jsdom/jsdom (jsdom)
v27.0.0
Changes since 26.1.0
- Node.js v20 is now the minimum supported version.
- Added a variety of event constructors, even though we do not implement their associated specifications or ever fire them:
BeforeUnloadEvent,BlobEvent,DeviceMotionEvent(omittingrequestPermission()),DeviceOrientationEvent(omittingrequestPermission()),PointerEvent,PromiseRejectionEvent, andTransitionEvent. - Added
movementXandmovementYtoMouseEvent. (These are from the Pointer Lock specification, the rest of which is not implemented.) - Added
customElements.getName(). (mash-graz) - Updated the virtual console:
-
"jsdomError"events are now documented, with specifictypeproperties and other properties that depend on the type. -
sendTo()was renamed toforwardTo(). - The
jsdomErrorsoption toforwardTo()can be used to control which errors are sent to the Node.js console. This replaces the previousomitJSDOMErrorsboolean option. -
"jsdomError"s for failedXMLHttpRequestfetches are no longer emitted. - The values that are printed when forwarding
"jsdomError"s to the Node.js console are streamlined.
-
- Switched our CSS selector engine from
nwsapito@asamuzakjp/dom-selector, closing over 20 selector-related bugs. - Upgraded
tough-cookie, which now considers URLs likehttp://localhost/to be secure contexts (per the spec), and thus will returnSecure-flagged cookies for such URLs. (colincasey) - Upgraded
cssstyle, which brings along many improvements and fixes to theCSSStyleDeclarationobject and its properties. - Updated the user agent stylesheet to be derived from the HTML Standard, instead of from an old revision of Chromium.
- Changed
element.click()to fire aPointerEventinstead of aMouseEvent. - Changed certain events to be passive by default.
- Changed the
<input>element'spattern=""attribute to use thevregular expression flag, instead ofu. - Fixed many specification conformance issues with the
Windowobject, including named properties and changing various data properties to accessor properties. - Fixed
document.createEvent()to accept a more correct set of event names. - Fixed the
ElementInternalsaccessibility getters and setters. (They were introduced in v23.1.0, but due to inadequate test coverage never actually worked.) - Fixed using
Object.defineProperty()on certain objects, such asHTMLSelectElementinstances. - Fixed
jsdom.reconfigure({ url })not updatingdocument.baseURIor properties derived from it. (This regressed in v26.1.0.) - Fixed CSS system colors, as well as the
initial,inherit, andunsetkeywords, to resolve correctly. (asamuzaK) - Fixed CSS
displaystyle resolution. (asamuzaK)
Changes since 27.0.0-beta.3
- Upgraded
cssstyle, which brings along various CSS parsing fixes.
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.