xicons
xicons copied to clipboard
build(deps-dev): bump jsdom from 19.0.0 to 21.1.0 in /packages/v2icons-utils
Bumps jsdom from 19.0.0 to 21.1.0.
Release notes
Sourced from jsdom's releases.
Version 21.1.0
- Added
x
,y
,pageX
,pageY
,offsetX
, andoffsetY
toMouseEvent
. (jenseng, ViniciusFXavier)- Added support for
unset
withgetComputedStyle()
. (jsnajdr)- Added the
submitter
property toSubmitEvent
. (jenseng)- Fixed
MouseEvent
'sscreenX
andscreenY
to no longer coerce to integers, allowing fractional values. (jenseng)- Fixed
formEl.submit()
to not longer firesubmit
events. (jenseng)- Fixed stylesheets to no longer affect the document after their corresponding
<link>
is removed. (jsnajdr)- Fixed
pointer-events
to inherit when used withgetComputedStyle()
. (jsnajdr)- Fixed
<script>
elements with nosrc=""
to no longer fireload
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
, andtop
properties ofWindow
to be non-configurable. (ExE-Boss)Other changes:
- Added support for
<input type=image>
submitting forms. (jenseng)- Added the
location
setter to theWindow
object, which forwards to thelocation.href
setter. Setting the URL is still only implemented for fragment navigations, however. (ExE-Boss)- Fixed
defer=""
<script>
elements that are added afterDOMContentLoaded
to execute, instead of being skipped.- Fixed
selectElement.selectedOptions
being incorrect whenoptionElement.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
, andscreen
properties ofWindow
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
JSOM.fromURL()
in the browser build of jsdom. (LungZeno)Version 20.0.3
- Updated dependencies, notably
w3c-xmlserializer
, which fixes usingDOMParser
on XML documents containing emoji.Version 20.0.2
- Fixed
xhr.abort()
to no longer give an exception when the constructedXMLHttpRequest
was invalid. (whamtet)- Fixed
event.getModifierState()
onMouseEvent
andKeyboardEvent
instances to properly consult thectrlKey
,altKey
,metaKey
, andshiftKey
properties of the event. (juzerzarif)- Fixed custom element creation to not be affected by any modifications to the
window.customElements
property. (bicknellr)Version 20.0.1
- Improved the performance of appending
<option>
elements to<select>
elements. (TheHound)- Fixed
location.pathname
getter to not crash when theJSDOM
instance was created using an opaque-path URL, including the default URL ofabout:blank
.- Fixed
crypto.getRandomValues()
to accept typed array subclasses. (sebamarynissen)- Updated various dependency minor versions. Notably,
nwsapi
fixed some selectors bugs, andtough-cookie
fixed some cookie bugs.Version 20.0.0
- Node.js v14 is now the minimum supported version.
- Added
crypto.getRandomValues()
. (sjrd)- Added
HTMLFormControlsCollection
andRadioNodeList
, soformEl.elements
now behaves correctly. (UndefinedBehavior)- Added the
signal
option toaddEventListener()
. (cheap-glitch)- Fixed the
:root
pseudoclass to work correctly. (hughs-ch)- Updated
parse5
, bringing along some HTML parsing and serialization fixes. (fb55)
Changelog
Sourced from jsdom's changelog.
21.1.0
- Added
x
,y
,pageX
,pageY
,offsetX
, andoffsetY
toMouseEvent
. (jenseng, ViniciusFXavier)- Added support for
unset
withgetComputedStyle()
. (jsnajdr)- Added the
submitter
property toSubmitEvent
. (jenseng)- Fixed
MouseEvent
'sscreenX
andscreenY
to no longer coerce to integers, allowing fractional values. (jenseng)- Fixed
formEl.submit()
to not longer firesubmit
events. (jenseng)- Fixed stylesheets to no longer affect the document after their corresponding
<link>
is removed. (jsnajdr)- Fixed
pointer-events
to inherit when used withgetComputedStyle()
. (jnajdr)- Fixed
<script>
elements with nosrc=""
to no longer fireload
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
, andtop
properties ofWindow
to be non-configurable. (ExE-Boss)Other changes:
- Added support for
<input type=image>
submitting forms. (jenseng)- Added the
location
setter to theWindow
object, which forwards to thelocation.href
setter. Setting the URL is still only implemented for fragment navigations, however. (ExE-Boss)- Fixed
defer=""
<script>
elements that are added afterDOMContentLoaded
to execute, instead of being skipped.- Fixed
selectElement.selectedOptions
being incorrect whenoptionElement.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
, andscreen
properties ofWindow
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
JSOM.fromURL()
in the browser build of jsdom. (LungZeno)20.0.3
- Updated dependencies, notably
w3c-xmlserializer
, which fixes usingDOMParser
on XML documents containing emoji.20.0.2
- Fixed
xhr.abort()
to no longer give an exception when the constructedXMLHttpRequest
was invalid. (whamtet)- Fixed
event.getModifierState()
onMouseEvent
andKeyboardEvent
instances to properly consult thectrlKey
,altKey
,metaKey
, andshiftKey
properties of the event. (juzerzarif)- Fixed custom element creation to not be affected by any modifications to the
window.customElements
property. (bicknellr)20.0.1
- Improved the performance of appending
<option>
elements to<select>
elements. (TheHound)- Fixed
location.pathname
getter to not crash when theJSDOM
instance was created using an opaque-path URL, including the default URL ofabout:blank
.- Fixed
crypto.getRandomValues()
to accept typed array subclasses. (sebamarynissen)- Updated various dependency minor versions. Notably,
nwsapi
fixed some selectors bugs, andtough-cookie
fixed some cookie bugs.20.0.0
- Node.js v14 is now the minimum supported version.
- Added
crypto.getRandomValues()
. (sjrd)- Added
HTMLFormControlsCollection
andRadioNodeList
, soformEl.elements
now behaves correctly. (UndefinedBehavior)- Added the
signal
option toaddEventListener()
. (cheap-glitch)
... (truncated)
Commits
8e3a568
Version 21.1.0026ceb5
Do not fire "load" on <script> without src=""a5204df
Add inheritance for pointer-events to getComputedStyle()709f33a
Cache element styles for getComputedStyle()980c6f6
Remove stylesheet from document when <link> is removedecce8bc
Don't fire submit event from form.submit()79c351b
Add SubmitEvent's submitter8a43fd5
Add support for unset CSS keyword to getComputedStyle()eb82a27
Add CSSOM View extensions to MouseEventa7c8545
Version 21.0.0- 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 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 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)