Skip to content

Commit

Permalink
Version 16.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
domenic committed Mar 7, 2021
1 parent 9741311 commit 2d82763
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 1 deletion.
1 change: 1 addition & 0 deletions .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Jeff Carpenter <[email protected]>
Sebastian Mayr <[email protected]> <[email protected]>
Sebastian Mayr <[email protected]> <[email protected]>
Sebastian Mayr <[email protected]> <[email protected]>
Sebastian Mayr <[email protected]> <[email protected]>
Pierre-Marie Dartus <[email protected]> <[email protected]>
Martin Naumann <[email protected]> <[email protected]>
Christoph Pojer <[email protected]>
Expand Down
5 changes: 5 additions & 0 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Aleksei Tsikov <[email protected]>
Alex Coles <[email protected]>
Alex Pearson <[email protected]>
Alex Rattray <[email protected]>
Alex Soncodi <[email protected]>
Alexander Flatter <[email protected]>
Alexis CHAPPRON <[email protected]>
Alistair Brown <[email protected]>
Expand Down Expand Up @@ -100,6 +101,7 @@ Gianluca Guarini <[email protected]>
Godmar Back <[email protected]>
Gord Tanner <[email protected]>
gregory80 <[email protected]>
Haz <[email protected]>
Henry Zhu <[email protected]>
hij1nx <[email protected]>
i8-pi <[email protected]>
Expand Down Expand Up @@ -220,6 +222,7 @@ Pete Bevin <[email protected]>
Péter <[email protected]>
Peter Lyons <[email protected]>
Phil Dokas <[email protected]>
Philipp Fritsche <[email protected]>
Pierre-Marie Dartus <[email protected]>
Rafał Chłodnicki <[email protected]>
Rainer Eli <[email protected]>
Expand Down Expand Up @@ -258,6 +261,7 @@ Sebastian Silbermann <[email protected]>
Sergei Ianovich <[email protected]>
Shimon Doodkin <[email protected]>
Simen Bekkhus <[email protected]>
Simon Müller <[email protected]>
sonnym <[email protected]>
Soufiane Ghzal <[email protected]>
sporchia <[email protected]>
Expand All @@ -279,6 +283,7 @@ Tom Jenkinson <[email protected]>
Tom Taylor <[email protected]>
ulteriorlife <[email protected]>
Vadim Baryshev <[email protected]>
Vegard B. Bugge <[email protected]>
Vincent Desjardins <[email protected]>
Vincent Siao <[email protected]>
VinothKumar Raman <[email protected]>
Expand Down
19 changes: 19 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,25 @@ Other guidelines:
* Roughly order changes within those groupings by impact.
-->

## 16.5.0

* Added `window.queueMicrotask()`.
* Added `window.event`.
* Added `inputEvent.inputType`. (diegohaz)
* Removed `ondragexit` from `Window` and friends, per a spec update.
* Fixed the URL of `about: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 the `hidden=""` attribute to cause `display: none` per the user-agent stylesheet. (ph-fritsche)
* Fixed the `new File()` constructor to no longer convert `/` to `:`, per [a pending spec update](https://github.com/w3c/FileAPI/issues/41).
* Fixed mutation observer callbacks to be called with the `MutationObserver` instance as their `this` value.
* Fixed `<input type=checkbox>` and `<input type=radio>` to be mutable even when disabled, per [a spec update](https://github.com/whatwg/html/pull/5805).
* Fixed `XMLHttpRequest` to not fire a redundant final `progress` event if a `progress` event was previously fired with the same `loaded` value. This would usually occur with small files.
* Fixed `XMLHttpRequest` to expose the `Content-Length` header on cross-origin responses.
* Fixed `xhr.response` to return `null` 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 as `localStorage` or `dataset`. (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 to `getComputedStyle()`, unless you pass a `::part` or `::slotted` pseudo-element, in which case we throw an error per the spec. (ExE-Boss)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jsdom",
"version": "16.4.0",
"version": "16.5.0",
"description": "A JavaScript implementation of many web standards",
"keywords": [
"dom",
Expand Down

0 comments on commit 2d82763

Please sign in to comment.