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 v9 #94

Merged
merged 1 commit into from
Apr 15, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 1, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
happy-dom ^8.2.6 -> ^9.0.0 age adoption passing confidence

Release Notes

capricorn86/happy-dom

v9.6.1

Compare Source

👷‍♂️ Patch fixes
  • Improve type checking in unit tests. (#​860)

Thank you @​danielrentz for your contribution!

v9.6.0

Compare Source

🎨 Features
  • Adds support for Node.normalize(). (#​300)

Thank you @​danielrentz for your contribution!

v9.5.1

Compare Source

👷‍♂️ Patch fixes
  • Throw DOMException in Text.splitText() when offset is lower than 0. (#​857)

Thank you @​danielrentz for your contribution!

v9.5.0

Compare Source

🎨 Features
  • Adds support for SubmitEvent. (#​820)

Thank you @​danielrentz for your contribution!

v9.4.0

Compare Source

🎨 Features
  • Fixes issue that caused an exception to be thrown in Range.cloneContents(). (#​853)

Thank you @​danielrentz for your contribution!

v9.3.2

Compare Source

👷‍♂️ Patch fixes
  • Adds support for decoding HTML entities to Element.textContent. (#​818)

Thank you @​btea for your contribution!

v9.3.1

Compare Source

👷‍♂️ Patch fixes
  • Makes it possible to assign a relative URL to Location.href, Location.replace() and Location.assign(). Please note that the default URL in Happy DOM is "about:blank" and it is not possible to construct a URL with it as base. It has to be set to another absolute URL first. (#​678)

Thank you @​Mas0nShi for your contribution!

v9.3.0

Compare Source

🎨 Features
  • Adds support for Document.createNodeIterator(). (#​297)

Thank you @​danielrentz for your contribution!

v9.2.1

Compare Source

👷‍♂️ Patch fixes
  • Fixes bug where Element.insertBefore() did not update the Element.children property correctly after inserting an element before a non-element node. (#​846)

Thank you @​btea for your contribution!

v9.2.0

Compare Source

🎨 Features
  • Adds support for SVGElement.dataset. (#​841)

Thank you @​danielrentz for your contribution!

v9.1.10

Compare Source

👷‍♂️ Patch fixes
  • Fixes problem with HttpOnly cookies not being sent in XMLHttpRequest and window.fetch(). (#​836)
  • Fixes problem with using cookie names without a value (e.g. "cookie_name" and "cookie_name=" should be handled as separate cookies). (#​836)
🎨 Features
  • Adds support for CORS handling when sending and receiving cookies from HTTP requests/responses. (#​836)

v9.1.9

Compare Source

🎨 Features
  • Adds support for Typescript declaration maps, allowing "Go to definition" to go to the actual source code, instead of only the type definition. To see the types, "Go to type definition" will still work. (#​842)

Thank you @​ekwoka for your contribution!

v9.1.8

Compare Source

👷‍♂️ Patch fixes
  • Fixes an issue where number values in "name" and "id" attributes caused a collision with index properties in HTMLCollection. (#​840)

v9.1.7

Compare Source

👷‍♂️ Patch fixes
  • Fixes SVGElement.ownerSVGElement, so that it doesn't end up in an infinity loop. (#​811)

Thank you @​linghaoSu for your contribution!

v9.1.6

Compare Source

👷‍♂️ Patch fixes
  • Fix for @happy-dom/jest-environment, so that is will use the configured URL of the jest config. (#​800)

Thank you @​CSchulz for your contribution!

v9.1.5

Compare Source

👷‍♂️ Patch fixes
  • Fix for handling "null", "undefined" or empty string query selectors according to spec. (#​642)

Thank you @​btea for your contribution!

v9.1.4

Compare Source

👷‍♂️ Patch fixes
  • Changes the behavior DOMTokenList.supports(), so that it always returns false instead of throwing an exception. This will fix problems with integration in frameworks such as SolidJS. (#​822)

Thank you @​ekwoka for your contribution!

v9.1.3

Compare Source

👷‍♂️ Patch fixes
  • Unset previous cookie. (#​813)
  • Fixes issue with parsing a form containing fields using the same name (other than checkbox and radio) in FormData. (#​835)
  • Fixes issue related to parsing <template> tags in XMLParser. (#​834)
  • Fixes issue related to element not be removed from previous parent Element.children collection when inserted into a new parent. (#​834)
  • Fixes issue related to HTMLTemplateElement.previousSibling and HTMLTemplateElement.nextSibling always being null. (#​834)
  • Fixes issue with the property 'border-bottom-left-radius' having a typo, causing the parsing of CSS to be wrong for this property. (#​834)
  • Adds check that disables the possibility to prevent default behavior of events when the listener is passive. (#​834)
🎨 Features
  • Adds support for Event.cancelBubble. (#​834)

Thank you @​ekwoka and @​btea for your contributions!

v9.1.0

Compare Source

🎨 Features
  • Adds support for HTMLTextAreaElement.select(). (#​691)

v9.0.1

Compare Source

👷‍♂️ Patch fixes
  • Adds support for triggering submit or reset of form when clicking on a button. (#​527)

v9.0.0

Compare Source

💣 Breaking Changes
  • This release doesn't contain any expected breaking changes, but as it contains many major internal changes and there is a risk that it introduces bugs, it felt safer to release it with a major version number.
🎨 Features
  • Implements Window.fetch(), Window.Request, Window.Response and Window.Headers in Happy DOM, instead of using the "node-fetch" library. The code is based on "node-fetch". This improves the integration for functionality such as FormData, Blob, AbortController and AbortSignal with Window.fetch(). It will also make it possible to add support for ESM while still keeping support for CommonJS.
  • Adds support for FormData. (#​585)
  • Adds support for AbortController and AbortSignal. (#​470)
  • Adds full support for ValidityState
  • Adds support for the :checked pseudo selector to query selector. (#​695)
  • Changes internal logic to favor Element.setAttribute() and Element.removeAttribute() instead of Element.setAttributeNS() and Element.removeAttributeNS() to improve performance
  • Adds support for element name and id as property to HTMLCollection
  • Adds support for HTMLCollection.namedItem()
  • Adds support for HTMLButtonElement.name
  • Adds support for HTMLButtonElement.form
  • Adds support for HTMLButtonElement.checkValidity()
  • Adds support for HTMLFormControlsCollection
  • Improves support for HTMLFormElement.elements
  • Adds support for form element name and id as property to HTMLFormElement
  • Adds support for HTMLFormElement.checkValidity(). It previously just returned "true".
  • Adds support for HTMLFormElement.reportValidity().
  • Adds support for HTMLFormElement.submit().
  • Adds support for HTMLFormElement.reset().
  • Adds support for RadioNodeList.
  • Improves support for HTMLInputElement.checked
  • Adds support for HTMLInputElement.labels
  • Improves performance of HTMLInputElement.form
  • Adds support for HTMLInputElement.checkValidity(). It previously just returned "true".
  • Adds support for HTMLInputElement.reportValidity()
  • Adds support triggering a "click" event on HTMLInputElement to trigger functionality on checkboxes, radio buttons, submit buttons and reset buttons.
  • Improves performance of HTMLLabelElement.form
  • Improves support for HTMLSelectElement.options
  • Adds support for HTMLSelectElement.labels
  • Improves support option index properties in HTMLSelectElement
  • Adds support for HTMLSelectElement.checkValidity().
  • Adds support for HTMLSelectElement.reportValidity()
  • Improves performance of HTMLSelectElement.form
  • Adds support for HTMLSelectElement.validity
  • Adds support for HTMLInputElement.validity
  • Adds support for HTMLInputElement.reportValidity()
  • Adds support for HTMLButtonElement.form
  • Adds support for HTMLButtonElement.labels
  • Adds support for HTMLButtonElement.validity
  • Adds support for HTMLButtonElement.required
  • Adds support for HTMLButtonElement.validationMessage
  • Adds support for HTMLButtonElement.checkValidity()
  • Adds support for HTMLButtonElement.reportValidity()
  • Adds support for HTMLButtonElement.setCustomValidatiy()
  • Adds support for HTMLTextAreaElement.form
  • Adds support for HTMLTextAreaElement.labels
  • Adds support for HTMLTextAreaElement.validity
  • Adds support for HTMLTextAreaElement.validationMessage
  • Adds support for HTMLTextAreaElement.checkValidity()
  • Adds support for HTMLTextAreaElement.reportValidity()
  • Adds support for HTMLTextAreaElement.setCustomValidatiy()

I know many of you have been waiting for several of the features in this release. It turned out to be much bigger and more time-consuming than originally anticipated, but now it's finally out. Enjoy 🥳


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 force-pushed the renovate/happy-dom-9.x branch 2 times, most recently from b3bdeed to b89dbee Compare April 15, 2023 07:27
@sshyam-gupta sshyam-gupta merged commit 528c507 into main Apr 15, 2023
@renovate renovate bot deleted the renovate/happy-dom-9.x branch April 15, 2023 07:31
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.

None yet

1 participant