Added support for the submitter argument to the FormData constructor. (jenseng)
Improved getComputedStyle()'s results for color-based properties, to resolve named colors and attempt to provide initial inheritance support. (hoekz-wwt)
Updated Window's event handler properties (e.g. oncopy, ontouchstart, etc.) to reflect the latest list from the standard.
Fixed DOMParser-created documents to inherit their URL from the creating document.
Fixed setRangeText() used on <input> and <textarea> elements to calculate the new end index correctly. (pmstss)
Fixed pageX, pageY, offsetX, and offsetY on MouseEvents during dispatch. (jenseng)
Upgraded nwsapi to v2.2.4, bringing along various fixes to our selector engine.
Version 21.1.1
Fixed jsdom.reconfigure() to also adjust the URL as seen by the history API, so that e.g. history.replaceState(null, "") would not mess up the URL. (jdufresne)
Fixed location.hash = "" to leave any # in location.href.
Fixes a few bugs with CSS parsing by replacing cssom with rweb-cssom, since the latter is maintained. (seanparmelee)
Version 21.1.0
Added x, y, pageX, pageY, offsetX, and offsetY to MouseEvent. (jenseng, ViniciusFXavier)
Added support for unset with getComputedStyle(). (jsnajdr)
Added the submitter property to SubmitEvent. (jenseng)
Fixed MouseEvent's screenX and screenY to no longer coerce to integers, allowing fractional values. (jenseng)
Fixed formEl.submit() to not longer fire submit events. (jenseng)
Fixed stylesheets to no longer affect the document after their corresponding <link> is removed. (jsnajdr)
Fixed pointer-events to inherit when used with getComputedStyle(). (jsnajdr)
Fixed <script> elements with no src="" to no longer fire load events. (t1ger2080)
Improved getComputedStyle() to cache its results, which should make it much faster. (jsnajdr)
Version 21.0.0
A potentially-breaking bug fix:
Fixed the window, document, location, and top properties of Window to be non-configurable. (ExE-Boss)
Other changes:
Added support for <input type=image> submitting forms. (jenseng)
Added the location setter to the Window object, which forwards to the location.href setter. Setting the URL is still only implemented for fragment navigations, however. (ExE-Boss)
Fixed defer=""<script> elements that are added after DOMContentLoaded to execute, instead of being skipped.
Fixed selectElement.selectedOptions being incorrect when optionElement.selected is set. This was a regression introduced in v20.0.1. Unfortunately this also reverts the performance improvement when appending <option> elements that was introduced then. (eps1lon)
Fixed the self, locationbar, menubar, personalbar, scrollbars, statusbar, toolbar, frames, parent, external, length, and screen properties of Window to be replaceable: that is, setting them will override their values, instead of having the new value be ignored. (ExE-Boss)
Fixed a few issues with JSDOM.fromURL() in the browser build of jsdom. (LungZeno)
Added support for the submitter argument to the FormData constructor. (jenseng)
Improved getComputedStyle()'s results for color-based properties, to resolve named colors and attempt to provide initial inheritance support. (hoekz-wwt)
Updated Window's event handler properties (e.g. oncopy, ontouchstart, etc.) to reflect the latest list from the standard.
Fixed DOMParser-created documents to inherit their URL from the creating document.
Fixed setRangeText() used on <input> and <textarea> elements to calculate the new end index correctly. (pmstss)
Fixed pageX, pageY, offsetX, and offsetY on MouseEvents during dispatch. (jenseng)
Upgraded nwsapi to v2.2.4, bringing along various fixes to our selector engine.
21.1.1
Fixed jsdom.reconfigure() to also adjust the URL as seen by the history API, so that e.g. history.replaceState(null, "") would not mess up the URL. (jdufresne)
Fixed location.hash = "" to leave any # in location.href.
Fixes a few bugs with CSS parsing by replacing cssom with rweb-cssom, since the latter is maintained. (seanparmelee)
21.1.0
Added x, y, pageX, pageY, offsetX, and offsetY to MouseEvent. (jenseng, ViniciusFXavier)
Added support for unset with getComputedStyle(). (jsnajdr)
Added the submitter property to SubmitEvent. (jenseng)
Fixed MouseEvent's screenX and screenY to no longer coerce to integers, allowing fractional values. (jenseng)
Fixed formEl.submit() to not longer fire submit events. (jenseng)
Fixed stylesheets to no longer affect the document after their corresponding <link> is removed. (jsnajdr)
Fixed pointer-events to inherit when used with getComputedStyle(). (jnajdr)
Fixed <script> elements with no src="" to no longer fire load events. (t1ger2080)
Improved getComputedStyle() to cache its results, which should make it much faster. (jsnajdr)
21.0.0
A potentially-breaking bug fix:
Fixed the window, document, location, and top properties of Window to be non-configurable. (ExE-Boss)
Other changes:
Added support for <input type=image> submitting forms. (jenseng)
Added the location setter to the Window object, which forwards to the location.href setter. Setting the URL is still only implemented for fragment navigations, however. (ExE-Boss)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Bumps jsdom from 16.6.0 to 22.1.0.
Release notes
Sourced from jsdom's releases.
... (truncated)
Changelog
Sourced from jsdom's changelog.
... (truncated)
Commits
2ed1d4b
Version 22.1.05857f25
Update GlobalEventHandlers lista8b03af
Implement getComputedStyle() for named colors (#3560)f369ca1
Disable flaky XHR upload progress teste134f68
Include Node.js v20 in CIcda0802
Implement some AbortSignal methodsd2103e4
Implement FormData constructor's submitter argumentc9d6b72
Implement DOMRect and DOMRectReadOnly8d7155a
Implement crypto.randomUUID()35259cc
Fix DOMParser URL inheritanceDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show