redux-form-material-ui
redux-form-material-ui copied to clipboard
Bump jsdom from 11.2.0 to 16.5.0
Bumps jsdom from 11.2.0 to 16.5.0.
Release notes
Sourced from jsdom's releases.
Version 16.5.0
- Added
window.queueMicrotask().- Added
window.event.- Added
inputEvent.inputType. (diegohaz)- Removed
ondragexitfromWindowand friends, per a spec update.- Fixed the URL of
about:blankiframes. Previously it was getting set to the parent's URL. (SimonMueller)- Fixed the loading of subresources from the filesystem when they had non-ASCII filenames.
- Fixed the
hidden=""attribute to causedisplay: noneper the user-agent stylesheet. (ph-fritsche)- Fixed the
new File()constructor to no longer convert/to:, per a pending spec update.- Fixed mutation observer callbacks to be called with the
MutationObserverinstance as theirthisvalue.- Fixed
<input type=checkbox>and<input type=radio>to be mutable even when disabled, per a spec update.- Fixed
XMLHttpRequestto not fire a redundant finalprogressevent if aprogressevent was previously fired with the sameloadedvalue. This would usually occur with small files.- Fixed
XMLHttpRequestto expose theContent-Lengthheader on cross-origin responses.- Fixed
xhr.responseto returnnullfor failures that occur during the middle of the download.- Fixed edge cases around passing callback functions or event handlers. (ExE-Boss)
- Fixed edge cases around the properties of proxy-like objects such as
localStorageordataset. (ExE-Boss)- Fixed a potential memory leak with custom elements (although we could not figure out how to trigger it). (soncodi)
Version 16.4.0
- Added a not-implemented warning if you try to use the second pseudo-element argument to
getComputedStyle(), unless you pass a::partor::slottedpseudo-element, in which case we throw an error per the spec. (ExE-Boss)- Improved the performance of repeated access to
el.tagName, which also indirectly improves performance of selector matching and style computation. (eps1lon)- Fixed
form.elementsto respect theform=""attribute, so that it can contain non-descendant form controls. (ccwebdesign)- Fixed
el.focus()to do nothing on disconnected elements. (eps1lon)- Fixed
el.focus()to work on SVG elements. (zjffun)- Fixed removing the currently-focused element to move focus to the
<body>element. (eps1lon)- Fixed
imgEl.completeto return true for<img>elements with empty or unsetsrc=""attributes. (strager)- Fixed
imgEl.completeto return true if an error occurs loading the<img>, when canvas is enabled. (strager)- Fixed
imgEl.completeto return false if the<img>element'ssrc=""attribute is reset. (strager)- Fixed the
valueMissingvalidation check for<input type="radio">. (zjffun)- Fixed
translate=""anddraggable=""attribute processing to use ASCII case-insensitivity, instead of Unicode case-insensitivity. (zjffun)Version 16.3.0
- Added firing of
focusinandfocusoutwhen usingel.focus()andel.blur(). (trueadm)- Fixed elements with the
contenteditable=""attribute to be considered as focusable. (jamieliu386)- Fixed
window.NodeFilterto be per-Window, instead of shared across allWindows. (ExE-Boss)- Fixed edge-case behavior involving use of objects with
handleEventproperties as event listeners. (ExE-Boss)- Fixed a second failing image load sometimes firing a
loadevent instead of anerrorevent, when thecanvaspackage is installed. (strager)- Fixed drawing an empty canvas into another canvas. (zjffun)
Version 16.2.2
- Updated
StyleSheetListfor better spec compliance; notably it no longer inherits fromArray.prototype. (ExE-Boss)- Fixed
requestAnimationFrame()from preventing process exit. This likely regressed in v16.1.0.- Fixed
setTimeout()to no longer leak the closures passed in to it. This likely regressed in v16.1.0. (AviVahl)- Fixed infinite recursion that could occur when calling
click()on a<label>element, or one of its descendants.- Fixed
getComputedStyle()to consider inlinestyle=""attributes. (eps1lon)- Fixed several issues with
<input type="number">'sstepUp()andstepDown()functions to be properly decimal-based, instead of floating point-based.- Fixed various issues where updating
selectEl.valuewould not invalidate properties such asselectEl.selectedOptions. (ExE-Boss)- Fixed
<input>'ssrcproperty, and<ins>/<del>'sciteproperty, to properly reflect as URLs.- Fixed
window.addEventLister,window.removeEventListener, andwindow.dispatchEventto properly be inherited fromEventTarget, instead of being distinct functions. (ExE-Boss)- Fixed errors that would occur if attempting to use a DOM object, such as a custom element, as an argument to
addEventListener.
... (truncated)
Changelog
Sourced from jsdom's changelog.
16.5.0
- Added
window.queueMicrotask().- Added
window.event.- Added
inputEvent.inputType. (diegohaz)- Removed
ondragexitfromWindowand friends, per a spec update.- Fixed the URL of
about:blankiframes. Previously it was getting set to the parent's URL. (SimonMueller)- Fixed the loading of subresources from the filesystem when they had non-ASCII filenames.
- Fixed the
hidden=""attribute to causedisplay: noneper the user-agent stylesheet. (ph-fritsche)- Fixed the
new File()constructor to no longer convert/to:, per a pending spec update.- Fixed mutation observer callbacks to be called with the
MutationObserverinstance as theirthisvalue.- Fixed
<input type=checkbox>and<input type=radio>to be mutable even when disabled, per a spec update.- Fixed
XMLHttpRequestto not fire a redundant finalprogressevent if aprogressevent was previously fired with the sameloadedvalue. This would usually occur with small files.- Fixed
XMLHttpRequestto expose theContent-Lengthheader on cross-origin responses.- Fixed
xhr.responseto returnnullfor failures that occur during the middle of the download.- Fixed edge cases around passing callback functions or event handlers. (ExE-Boss)
- Fixed edge cases around the properties of proxy-like objects such as
localStorageordataset. (ExE-Boss)- Fixed a potential memory leak with custom elements (although we could not figure out how to trigger it). (soncodi)
16.4.0
- Added a not-implemented warning if you try to use the second pseudo-element argument to
getComputedStyle(), unless you pass a::partor::slottedpseudo-element, in which case we throw an error per the spec. (ExE-Boss)- Improved the performance of repeated access to
el.tagName, which also indirectly improves performance of selector matching and style computation. (eps1lon)- Fixed
form.elementsto respect theform=""attribute, so that it can contain non-descendant form controls. (ccwebdesign)- Fixed
el.focus()to do nothing on disconnected elements. (eps1lon)- Fixed
el.focus()to work on SVG elements. (zjffun)- Fixed removing the currently-focused element to move focus to the
<body>element. (eps1lon)- Fixed
imgEl.completeto return true for<img>elements with empty or unsetsrc=""attributes. (strager)- Fixed
imgEl.completeto return true if an error occurs loading the<img>, when canvas is enabled. (strager)- Fixed
imgEl.completeto return false if the<img>element'ssrc=""attribute is reset. (strager)- Fixed the
valueMissingvalidation check for<input type="radio">. (zjffun)- Fixed
translate=""anddraggable=""attribute processing to use ASCII case-insensitivity, instead of Unicode case-insensitivity. (zjffun)16.3.0
- Added firing of
focusinandfocusoutwhen usingel.focus()andel.blur(). (trueadm)- Fixed elements with the
contenteditable=""attribute to be considered as focusable. (jamieliu386)- Fixed
window.NodeFilterto be per-Window, instead of shared across allWindows. (ExE-Boss)- Fixed edge-case behavior involving use of objects with
handleEventproperties as event listeners. (ExE-Boss)- Fixed a second failing image load sometimes firing a
loadevent instead of anerrorevent, when thecanvaspackage is installed. (strager)- Fixed drawing an empty canvas into another canvas. (zjffun)
16.2.2
- Updated
StyleSheetListfor better spec compliance; notably it no longer inherits fromArray.prototype. (ExE-Boss)- Fixed
requestAnimationFrame()from preventing process exit. This likely regressed in v16.1.0.- Fixed
setTimeout()to no longer leak the closures passed in to it. This likely regressed in v16.1.0. (AviVahl)- Fixed infinite recursion that could occur when calling
click()on a<label>element, or one of its descendants.- Fixed
getComputedStyle()to consider inlinestyle=""attributes. (eps1lon)- Fixed several issues with
<input type="number">'sstepUp()andstepDown()functions to be properly decimal-based, instead of floating point-based.
... (truncated)
Commits
2d82763Version 16.5.09741311Fix loading of subresources with Unicode filenames5e46553Use domenic's ESLint config as the base19b35daFix the URL of about:blank iframes017568eSupport inputType on InputEvent29f4fdfUpgrade dependenciese2f7639Refactor create‑event‑accessor.js to remove code duplicationff69a75Convert JSDOM to use callback functions19df6bcUpdate links in contributing guidelines1e34ff5Test triage- Additional commits viewable in compare view
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.