Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

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
Appearance settings

Bump jsdom from 6.5.1 to 16.5.0#1124

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

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabotdependabotbot commented on behalf ofgithubJun 23, 2022
edited
Loading

Bumpsjsdom from 6.5.1 to 16.5.0.

Release notes

Sourced fromjsdom's releases.

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)
  • 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 togetComputedStyle(), unless you pass a::part or::slotted pseudo-element, in which case we throw an error per the spec. (ExE-Boss)
  • Improved the performance of repeated access toel.tagName, which also indirectly improves performance of selector matching and style computation. (eps1lon)
  • Fixedform.elements to respect theform="" attribute, so that it can contain non-descendant form controls. (ccwebdesign)
  • Fixedel.focus() to do nothing on disconnected elements. (eps1lon)
  • Fixedel.focus() to work on SVG elements. (zjffun)
  • Fixed removing the currently-focused element to move focus to the<body> element. (eps1lon)
  • FixedimgEl.complete to return true for<img> elements with empty or unsetsrc="" attributes. (strager)
  • FixedimgEl.complete to return true if an error occurs loading the<img>, when canvas is enabled. (strager)
  • FixedimgEl.complete to return false if the<img> element'ssrc="" attribute is reset. (strager)
  • Fixed thevalueMissing validation check for<input type="radio">. (zjffun)
  • Fixedtranslate="" anddraggable="" attribute processing to use ASCII case-insensitivity, instead of Unicode case-insensitivity. (zjffun)

Version 16.3.0

  • Added firing offocusin andfocusout when usingel.focus() andel.blur(). (trueadm)
  • Fixed elements with thecontenteditable="" attribute to be considered as focusable. (jamieliu386)
  • Fixedwindow.NodeFilter to be per-Window, instead of shared across allWindows. (ExE-Boss)
  • Fixed edge-case behavior involving use of objects withhandleEvent properties as event listeners. (ExE-Boss)
  • Fixed a second failing image load sometimes firing aload event instead of anerror event, when thecanvas package is installed. (strager)
  • Fixed drawing an empty canvas into another canvas. (zjffun)

Version 16.2.2

  • UpdatedStyleSheetList for better spec compliance; notably it no longer inherits fromArray.prototype. (ExE-Boss)
  • FixedrequestAnimationFrame() from preventing process exit. This likely regressed in v16.1.0.
  • FixedsetTimeout() 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 callingclick() on a<label> element, or one of its descendants.
  • FixedgetComputedStyle() 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 updatingselectEl.value would not invalidate properties such asselectEl.selectedOptions. (ExE-Boss)
  • Fixed<input>'ssrc property, and<ins>/<del>'scite property, to properly reflect as URLs.
  • Fixedwindow.addEventLister,window.removeEventListener, andwindow.dispatchEvent to 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 toaddEventListener.

... (truncated)

Changelog

Sourced fromjsdom's changelog.

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.
  • 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)
  • 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 togetComputedStyle(), unless you pass a::part or::slotted pseudo-element, in which case we throw an error per the spec. (ExE-Boss)
  • Improved the performance of repeated access toel.tagName, which also indirectly improves performance of selector matching and style computation. (eps1lon)
  • Fixedform.elements to respect theform="" attribute, so that it can contain non-descendant form controls. (ccwebdesign)
  • Fixedel.focus() to do nothing on disconnected elements. (eps1lon)
  • Fixedel.focus() to work on SVG elements. (zjffun)
  • Fixed removing the currently-focused element to move focus to the<body> element. (eps1lon)
  • FixedimgEl.complete to return true for<img> elements with empty or unsetsrc="" attributes. (strager)
  • FixedimgEl.complete to return true if an error occurs loading the<img>, when canvas is enabled. (strager)
  • FixedimgEl.complete to return false if the<img> element'ssrc="" attribute is reset. (strager)
  • Fixed thevalueMissing validation check for<input type="radio">. (zjffun)
  • Fixedtranslate="" anddraggable="" attribute processing to use ASCII case-insensitivity, instead of Unicode case-insensitivity. (zjffun)

16.3.0

  • Added firing offocusin andfocusout when usingel.focus() andel.blur(). (trueadm)
  • Fixed elements with thecontenteditable="" attribute to be considered as focusable. (jamieliu386)
  • Fixedwindow.NodeFilter to be per-Window, instead of shared across allWindows. (ExE-Boss)
  • Fixed edge-case behavior involving use of objects withhandleEvent properties as event listeners. (ExE-Boss)
  • Fixed a second failing image load sometimes firing aload event instead of anerror event, when thecanvas package is installed. (strager)
  • Fixed drawing an empty canvas into another canvas. (zjffun)

16.2.2

  • UpdatedStyleSheetList for better spec compliance; notably it no longer inherits fromArray.prototype. (ExE-Boss)

... (truncated)

Commits
  • 2d82763 Version 16.5.0
  • 9741311 Fix loading of subresources with Unicode filenames
  • 5e46553 Use domenic's ESLint config as the base
  • 19b35da Fix the URL of about:blank iframes
  • 017568e Support inputType on InputEvent
  • 29f4fdf Upgrade dependencies
  • e2f7639 Refactor create‑event‑accessor.js to remove code duplication
  • ff69a75 Convert JSDOM to use callback functions
  • 19df6bc Update links in contributing guidelines
  • 1e34ff5 Test triage
  • Additional commits viewable incompare view

Dependabot compatibility score

You can trigger a rebase of this PR 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.

> **Note**> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabotdependabotbot added the dependenciesPull requests that update a dependency file labelJun 23, 2022
@dependabotdependabotbotforce-pushed thedependabot/npm_and_yarn/jsdom-16.5.0 branch from34c174f to451403aCompareJuly 5, 2022 16:18
@itsmichaeldiego
Copy link
Member

@dependabot rebase

dependabot[bot] reacted with thumbs up emoji

@dependabotdependabotbotforce-pushed thedependabot/npm_and_yarn/jsdom-16.5.0 branch from451403a toff4823dCompareDecember 28, 2022 00:12
@itsmichaeldiego
Copy link
Member

@dependabot rebase

dependabot[bot] reacted with thumbs up emoji

@dependabotdependabotbotforce-pushed thedependabot/npm_and_yarn/jsdom-16.5.0 branch fromff4823d to347b321CompareMay 14, 2023 16:39
Bumps [jsdom](https://github.com/jsdom/jsdom) from 6.5.1 to 16.5.0.- [Release notes](https://github.com/jsdom/jsdom/releases)- [Changelog](https://github.com/jsdom/jsdom/blob/master/Changelog.md)- [Commits](jsdom/jsdom@6.5.1...16.5.0)---updated-dependencies:- dependency-name: jsdom  dependency-type: direct:development...Signed-off-by: dependabot[bot] <support@github.com>
@dependabotdependabotbotforce-pushed thedependabot/npm_and_yarn/jsdom-16.5.0 branch from347b321 to36e5d20CompareMay 14, 2023 16:40
@itsmichaeldiegoitsmichaeldiego merged commit6fe7e11 intomasterMay 14, 2023
@dependabotdependabotbot deleted the dependabot/npm_and_yarn/jsdom-16.5.0 branchMay 14, 2023 16:47
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.

1 participant
@itsmichaeldiego

[8]ページ先頭

©2009-2025 Movatter.jp