Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

build(deps): bump jsdom from 16.2.2 to 16.7.0#30

Open
dependabot wants to merge1 commit intomaster
base:master
Choose a base branch
Loading
fromdependabot/npm_and_yarn/jsdom-16.7.0

Conversation

dependabot[bot]
Copy link

@dependabotdependabotbot commented on behalf ofgithubJun 23, 2022

Bumpsjsdom from 16.2.2 to 16.7.0.

Release notes

Sourced fromjsdom's releases.

Version 16.7.0

  • AddedAbortSignal.abort(). (ninevra)
  • Added dummyx andy properties to the return value ofgetBoundingClientRect(). (eiko)
  • Implemented wrapping fortextareaEl.value if thewrap="" attribute is specified. (ninevra)
  • Changed newline normalization in<textarea>s according torecent HTML Standard updates. (ninevra)
  • Fixed some bad cascade computation ingetComputedStyle(). (romain-trotard)

Version 16.6.0

  • AddedparentNode.replaceChildren(). (@​ninevra)
  • Fixed jsdom's handling of when code running inside the jsdom throwsnull orundefined as an exception. (@​mbest)
  • Removed the dependency on the deprecatedrequest package, in the process fixing several issues with theXMLHttpRequest implementation around header processing. Thanks go to@​tobyhinloopen,@​andrewaylett, and especially@​vegardbb, for completing this months-long effort!

Version 16.5.3

  • Fixed infinite recursion when usingMutationObservers to observe elements inside aMutationObserver callback.

Version 16.5.2

  • FixedAccess-Control-Allow-Headers: * to work withXMLHttpRequest. (silviot)
  • Fixedxhr.response to strip any leading BOM whenxhr.responseType is"json".
  • Fixednew Text() andnew Comment() constructors to properly set the resulting node'sownerDocument.
  • FixedcustomElements.whenDefined() to resolve its returned promise with the custom element constructor, per recent spec updates. (ExE-Boss)
  • Fixed parsing to ensure that<svg>\<template></template></svg> does not throw an exception, but instead correctly produces a SVG-namespace\<template> element.
  • FixeddomParser.parseFromString() to treat<noscript> elements appropriately.
  • Fixed form control validity checking when the control was outside the<form> element and instead associated using theform="" attribute.
  • FixedlegendEl.form to return the correct result based on its parent<fieldset>.
  • FixedoptionEl.text to exclude<script> descendants.
  • Fixed radio buttons and checkboxes to not fireinput andchange events when disconnected.
  • FixedinputEl.indeterminate to reset to its previous value when canceling aclick event on a checkbox or radio button.
  • Fixed the behavior of event handler attributes (e.g.onclick="...code...") when there were global variables namedelement orformOwner. (ExE-Boss)
  • On Node.js v14.6.0+ whereWeakRefs are available, fixedNodeIterator to no longer stop working when more than tenNodeIterator instances are created, and to use less memory due to inactiveNodeIterators sticking around. (ExE-Boss)

Version 16.5.1

  • Fixed a regression that brokecustomElements.get() in v16.5.0. (fdesforges)
  • Fixedwindow.event to have a setter which overwrites thewindow.event property with the given value, per the specification. This fixes an issue where after upgrading to jsdom v16.5.0 you would no longer be able to set a global variable namedevent in the jsdom context.

Version 16.5.0

  • Addedwindow.queueMicrotask().
  • Addedwindow.event.
  • AddedinputEvent.inputType. (diegohaz)
  • Removedondragexit fromWindow and friends, per a spec update.
  • Fixed the URL ofabout:blank iframes. 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 thehidden="" attribute to causedisplay: none per the user-agent stylesheet. (ph-fritsche)
  • Fixed thenew File() constructor to no longer convert/ to:, pera pending spec update.
  • Fixed mutation observer callbacks to be called with theMutationObserver instance as theirthis value.
  • Fixed<input type=checkbox> and<input type=radio> to be mutable even when disabled, pera spec update.
  • FixedXMLHttpRequest to not fire a redundant finalprogress event if aprogress event was previously fired with the sameloaded value. This would usually occur with small files.
  • FixedXMLHttpRequest to expose theContent-Length header on cross-origin responses.
  • Fixedxhr.response to returnnull for 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 aslocalStorage ordataset. (ExE-Boss)

... (truncated)

Changelog

Sourced fromjsdom's changelog.

16.7.0

  • AddedAbortSignal.abort(). (ninevra)
  • Added dummyx andy properties to the return value ofgetBoundingClientRect(). (eiko)
  • Implemented wrapping fortextareaEl.value if thewrap="" attribute is specified. (ninevra)
  • Changed newline normalization in<textarea>s according torecent HTML Standard updates. (ninevra)
  • Fixed some bad cascade computation ingetComputedStyle(). (romain-trotard)

16.6.0

  • AddedparentNode.replaceChildren(). (ninevra)
  • Fixed jsdom's handling of when code running inside the jsdom throwsnull orundefined as an exception. (mbest)
  • Removed the dependency on the deprecatedrequest package, in the process fixing several issues with theXMLHttpRequest implementation around header processing. Special thanks to vegardbb for completing this months-long effort!

16.5.3

  • Fixed infinite recursion when usingMutationObservers to observe elements inside aMutationObserver callback.

16.5.2

  • FixedAccess-Control-Allow-Headers: * to work withXMLHttpRequest. (silviot)
  • Fixedxhr.response to strip any leading BOM whenxhr.responseType is"json".
  • Fixednew Text() andnew Comment() constructors to properly set the resulting node'sownerDocument.
  • FixedcustomElements.whenDefined() to resolve its returned promise with the custom element constructor, per recent spec updates. (ExE-Boss)
  • Fixed parsing to ensure that<svg>\<template></template></svg> does not throw an exception, but instead correctly produces a SVG-namespace\<template> element.
  • FixeddomParser.parseFromString() to treat<noscript> elements appropriately.
  • Fixed form control validity checking when the control was outside the<form> element and instead associated using theform="" attribute.
  • FixedlegendEl.form to return the correct result based on its parent<fieldset>.
  • FixedoptionEl.text to exclude<script> descendants.
  • Fixed radio buttons and checkboxes to not fireinput andchange events when disconnected.
  • FixedinputEl.indeterminate to reset to its previous value when canceling aclick event on a checkbox or radio button.
  • Fixed the behavior of event handler attributes (e.g.onclick="...code...") when there were global variables namedelement orformOwner. (ExE-Boss)
  • On Node.js v14.6.0+ whereWeakRefs are available, fixedNodeIterator to no longer stop working when more than tenNodeIterator instances are created, and to use less memory due to inactiveNodeIterators sticking around. (ExE-Boss)

16.5.1

  • Fixed a regression that brokecustomElements.get() in v16.5.0. (fdesforges)
  • Fixedwindow.event to have a setter which overwrites thewindow.event property with the given value, per the specification. This fixes an issue where after upgrading to jsdom v16.5.0 you would no longer be able to set a global variable namedevent in the jsdom context.

16.5.0

  • Addedwindow.queueMicrotask().
  • Addedwindow.event.
  • AddedinputEvent.inputType. (diegohaz)
  • Removedondragexit fromWindow and friends, per a spec update.
  • Fixed the URL ofabout:blank iframes. 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 thehidden="" attribute to causedisplay: none per the user-agent stylesheet. (ph-fritsche)
  • Fixed thenew File() constructor to no longer convert/ to:, pera pending spec update.
  • Fixed mutation observer callbacks to be called with theMutationObserver instance as theirthis value.

... (truncated)

Commits

Dependabot compatibility score

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)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will 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 theSecurity Alerts page.

Bumps [jsdom](https://github.com/jsdom/jsdom) from 16.2.2 to 16.7.0.- [Release notes](https://github.com/jsdom/jsdom/releases)- [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md)- [Commits](jsdom/jsdom@16.2.2...16.7.0)---updated-dependencies:- dependency-name: jsdom  dependency-type: indirect...Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotbot added the dependenciesPull requests that update a dependency file labelJun 23, 2022
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers
No reviews
Assignees
No one assigned
Labels
dependenciesPull requests that update a dependency file
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

0 participants

[8]ページ先頭

©2009-2025 Movatter.jp