Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency happy-dom to v10 - autoclosed #552

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 5, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
happy-dom ^9.7.1 -> ^10.0.0 age adoption passing confidence

Release Notes

capricorn86/happy-dom (happy-dom)

v10.5.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes problem where HTMLIFrameElement fails to load page. The problem was most likely that some libraries overrides the Document.defaultView property somehow, making Document.defaultView.constructor not being the Window constructor. (#​992)

v10.5.0

Compare Source

🎨 Features
  • Fixes issue where CSS values with parentheses wasn't correctly parsed if the values also contained a comma. (#​976)
  • This fix should also fix a problem related to parsing a CSS string that ends with a variable setter. (#​670)

Thank you @​malko for your contribution!

v10.4.0

Compare Source

🎨 Features
  • Adds support for MouseEvent.movementX and MouseEvent.movementY. (#​953)

Thank you @​mertcan for your contribution!

v10.3.2

Compare Source

👷‍♂️ Patch fixes
  • Fixes problem with "?" in attribute names, not being parsed correctly in XMLParser. (#​984)
  • Fixes problem with single quoted attributes (') not being parsed correctly in XMLParser. (#​984)

v10.3.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes problem where lit-html is using special characters in attributes, causing the XMLParser not to be able to parse the attribute correctly. (#​982)

v10.3.0

Compare Source

🎨 Features
  • Adds support for HTMLInputElement.valueAsDate. (#​977)

Thank you @​malko for your contribution!

v10.2.0

Compare Source

🎨 Features
  • Adds support for Window.queueMicrotask(). (#​959)

v10.1.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes bug where Document.getRootNode() returned null, but should return the document. (#​950)

@​Schleuse thank you for your contribution!

v10.1.0

Compare Source

🎨 Features
  • Adds support for HTMLInputElement.valueAsNumber. (#​945)
  • Adds support for sanitizing values in input fields of type date, month, time and week in HTMLInputElement.value. (#​945)

Thank you @​malko for your contribution!

v10.0.7

Compare Source

v10.0.6

Compare Source

👷‍♂️ Patch fixes
  • Adds a timeout before dispatching the event in Window.postMessage() to better simulate the browser behavior. (#​948)

Thank you for your contribution @​DylanPiercey!

v10.0.5

Compare Source

👷‍♂️ Patch fixes
  • Fixes parsing of pseudo elements in CSS query selectors (e.g. "::-webkit-inner-spin-button"). (#​939)

Thank you @​btea for your contribution!

v10.0.4

Compare Source

v10.0.3

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue with importing CJS modules directly. (#​968)

v10.0.2

Compare Source

v10.0.1

Compare Source

v10.0.0

Compare Source

🎨 Features
  • Adds support for ESM. Happy DOM will still have support for CommonJS. (#​873)
  • Migrates to Vitest for unit tests internally. (#​963)
👷‍♂️ Patch fixes
  • Adds support for capturing errors when executing Javascript in HTMLScriptElement. It will log the errors in the console and trigger an error event instead of failing the entire execution. (#​816)
💣 Breaking Changes
  • Adding support for ESM may be a breaking change as it can potentially exist build environments that doesn't support this configuration. (#​873)

v9.20.3

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue where all properties didn't get copied from HTMLUnknownElement to a custom element that is replacing it when it is defined. (#​668)

v9.20.2

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue where CSS variable values where not returned by Window.getComputedStyle() when calling CSSStyleDeclaration.getPropertyValue(). (#​932)

v9.20.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes problem with querySelectorAll() where it didn't always return elements in document order. (#​928)

v9.20.0

Compare Source

🎨 Features
  • Adds support for disabling the simulation of rendering when calculating computed style. The rendering process converts units such as rem, em and cm to pixels, but it is very limited. (#​929)
  • Changes the behavior of converting percentage values to "0px" when calculating computed style (as it fails to convert) to just leave the values.

v9.19.2

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue where attribute selectors with an operator and with a value without quatation marks no longer worked (e.g. "[attr^=value]"). (#​923)

v9.19.1

Compare Source

👷‍♂️ Patch fixes
  • Adds support for the mime type "apng" to XMLHttpRequest

Thank you @​btea for your contribution!

v9.19.0

Compare Source

🎨 Features
  • Adds support for "rem", "em", "vw", "vh", "vmin", "vmax", "cm", "mm", "in", "pt", "pc", "Q" measurement values to Window.getComputedStyle() and Window.matchMedia() (#​921)
  • Adds support for "%" measurement values to Window.getComputedStyle() and Window.matchMedia() when setting font size (other properties will be set to "0px") (#​921)
  • Sets "font: 16px "Times new Roman"" as default font on the <html> when using Window.getComputedStyle() (#​921)
  • Adds support for "outline", "outline-color", "outline-style", "outline-width", "outline-offset", "letter-spacing", "word-spacing" and "text-indent" to CSSStyleDeclaration. (#​921)
  • Adds support for the media query rules "orientation", "prefers-color-scheme", "any-hover", "hover", "any-pointer", "pointer", "display-mode", "width", "height", "min-aspect-ratio", "max-aspect-ratio" and "aspect-ratio" (#​921)
  • Improves support for the media query rules "min-width", "max-width", "min-height" and "max-height" (#​921)
  • Adds support for media types "all", "screen" and "print" to media queries (#​921)
  • Adds support for the "only", "not", "and" and "or" operators to media queries (#​921)
  • Adds support for ranges to media queries (#​921)
  • Adds support for "@​-webkit-keyframes", "@​-webkit-container" and "@​-webkit-supports" to CSS parser (#​921)
👷‍♂️ Patch fixes
  • Adds support for ignoring unknown "@​" rules to the CSS parser. (#​921)
  • Adds support for the "height" property to CSSStyleDeclaration. Not having support for "height" was missed somehow, as we have support for "width". (#​922)

v9.18.3

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue where non-string values did not get converted to strings in CharacterData.data, CharacterData.nodeValue or CharacterData.textContent. (#​819)

v9.18.2

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue in the XML parser where it failed to parse comments including dash characters (-). (#​916)

Thank you @​gtm-nayan for your contribution!

v9.18.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue where attribute query selectors using "~" or "|" as operators for finding attributes containing a word did not match when there was only one word. (#​914)

v9.18.0

Compare Source

🎨 Features
  • Adds support for triggering an error event when attempting to fetch a CSS file or Javascript file when it has been disabled using "window.happyDOM.settings.*". (#​849)

v9.17.0

Compare Source

🎨 Features
  • Adds support for "i" and "s" modifiers to attribute query selectors. (#​911)

v9.16.0

Compare Source

🎨 Features
  • Adds support for encoding HTML entities to the XML parser. (#​908)
  • Adds support for escaping text to XMLSerializer.serializeToString(). (#​908)

v9.15.0

Compare Source

🎨 Features

Thank you @​crypto-scythe for your contribution!

v9.14.0

Compare Source

🎨 Features
  • Adds support for Document.links. (#​896)

Thank you @​btea for your contribution!

v9.13.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue related to "@​" CSS rules in (e.g. "@​-webkit-keyframes") causing an exception to be thrown in CSSStyleDeclaration. (#​889)

Thank you @​btea for your contribution!

v9.13.0

Compare Source

🎨 Features
  • Improves performance of Element.querySelectorAll(). The performance was decreased after the implementation of document sorting order, due to the fact that it relied on Object.assign() for each match, which is slower than iterating through all matches in the end. (#​909)

v9.12.0

Compare Source

🎨 Features
  • Adds support for the "of selector" to ":nth-child" and ":nth-last-child" query selectors. (#​905)
👷‍♂️ Patch fixes
  • Fixes bug but where "nth-*" query selectors didn't return the correct elements when prefixing "n" with "-". (#​905)

v9.11.0

Compare Source

🎨 Features
  • Refactors the XML parser, which fixes several issues related to parsing complex HTML (e.g. attributes containing ">"). (#​578)
  • Improves performance of XML parsing significantly. (#​578)

v9.10.9

Compare Source

👷‍♂️ Patch fixes
  • Adds support for Request.formData(). (#​892)

Thank you @​rolandjohann for your contribution!

v9.10.8

Compare Source

👷‍♂️ Patch fixes
  • Fixes an issue where HTMLAnchorElement.toString() returned "HTMLElement.outerHTML", but should return "HTMLAnchorElement.href" according to spec. (#​890)

Thank you @​Schleuse for your contribution!

v9.10.7

Compare Source

👷‍♂️ Patch fixes
  • Fix for parsing CSS comments with asterisks. (#​887)

Thank you for your contribution @​htuomola!

v9.10.6

Compare Source

👷‍♂️ Patch fixes
  • Fixes bug where errors where not handled correctly when performing a synchronous request with XMLHttpRequest. (#​795)
  • Adds support for XMLHttpRequest.response. (#​788)

Thank you @​Mas0nShi for your contribution!

v9.10.5

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue in HTMLCollection and HTMLFormControlsCollection related to id/name of elements colliding with class properties and methods. (#​875)

v9.10.4

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue related to query selection for attributes not using apostrophe for the value. This caused an issue with finding elements by text in Testing Library. (#​883)

v9.10.3

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue where React "onChange" listeners never got executed when triggering a click(). (#​880)
  • Fixes issue where it was not possible to use multiple pseudo query selectors (e.g. "input:not([type]):not([list])"). This solves a problem in Testing Library where it failed to find elements by role "checkbox". (#​880)

v9.10.2

Compare Source

👷‍♂️ Patch fixes
  • Fixes issue related to query selection for attributes with empty value (e.g. '[attr1=""]'). (#​881)

v9.10.1

Compare Source

👷‍♂️ Patch fixes
  • Adds support for using escaped characters to ID:s in query selectors (e.g. "#\\:id"). (#​877)

v9.10.0

Compare Source

🎨 Features
  • Refactors the internal logic of how query selection works to improve performance and make maintenance easier. (#​792)
  • Adds support for adjacent sibling to query selectors (e.g. ".a + .b"). (#​792)
👷‍♂️ Patch fixes
  • Fixes issue where *.querySelectorAll() did not return elements in document order. (#​285)

v9.9.2

Compare Source

👷‍♂️ Patch fixes
  • Adds a check for arguments.length to Node.insertBefore() instead of a check for "null" specific, as the browsers support sending in "undefined", even though it should only allow "null" according to spec. (#​827)

Thank you @​btea for your contribution!

v9.9.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes bug where HTML entities didn't include semicolon. (#​870)

Thank you @​btea for your contribution!

v9.9.0

Compare Source

🎨 Features
  • Adds support for SVGElement.focus(), SVGElement.blur() and SVGElement.tabIndex. (#​699)

v9.8.4

Compare Source

👷‍♂️ Patch fixes
  • Fixes bug related to adding multiple event listeners with the "once" option, which would cause the listener loop to go out of bounds. (#​805)

Thank you @​btea for your contribution!

v9.8.3

Compare Source

👷‍♂️ Patch fixes
  • Adds validation for if the node to insert is an ancestor in Node.appendChild()and Node.insertBefore(). (#​643)

Thank you @​btea for your contribution!

v9.8.2

Compare Source

👷‍♂️ Patch fixes
  • Fixes problem with event cycle (none, capture, atTarget, bubbling) that was was caused by adding support for capture event listeners in v9.7.0. (#​866)

v9.8.1

Compare Source

👷‍♂️ Patch fixes
  • Adds unit tests for inserting a <main> element with a "data" attribute to the body. (#​493)

Thank you @​danielrentz for your contribution!

v9.8.0

Compare Source

🎨 Features
  • Makes it possible to send in "null" to Ǹode.contains(). (#​865)

Thank you @​btea for your contribution!


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title chore(deps): update dependency happy-dom to v10 chore(deps): update dependency happy-dom to v10 - autoclosed Sep 6, 2023
@renovate renovate bot closed this Sep 6, 2023
@renovate renovate bot deleted the renovate/happy-dom-10.x branch September 6, 2023 20:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants