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 <gcarpenterv@gmail.com>
Sebastian Mayr <github@smayr.name> <sebastian@trello.com>
Sebastian Mayr <github@smayr.name> <sebmaster16@gmail.com>
Sebastian Mayr <github@smayr.name> <git@smayr.name>
Sebastian Mayr <github@smayr.name> <smayr@atlassian.com>
Pierre-Marie Dartus <dartus.pierremarie@gmail.com> <p.dartus@salesforce.com>
Martin Naumann <mr.avgp@gmail.com> <martin@geekonaut.de>
Christoph Pojer <christoph.pojer@gmail.com>
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 <alexey.tsikov@gmail.com>
Alex Coles <alex@alexbcoles.com>
Alex Pearson <alex@alexpear.com>
Alex Rattray <rattray.alex@gmail.com>
Alex Soncodi <asoncodi@gmail.com>
Alexander Flatter <flatter@gmail.com>
Alexis CHAPPRON <bullrot-10@hotmail.fr>
Alistair Brown <github@alistairjcbrown.com>
Expand Down Expand Up @@ -100,6 +101,7 @@ Gianluca Guarini <gianluca.guarini@gmail.com>
Godmar Back <godmar@gmail.com>
Gord Tanner <gtanner@gmail.com>
gregory80 <gregory.tomlinson@gmail.com>
Haz <hazdiego@gmail.com>
Henry Zhu <hi@henryzoo.com>
hij1nx <fernmicro@gmail.com>
i8-pi <thomas@nomology.id.au>
Expand Down Expand Up @@ -220,6 +222,7 @@ Pete Bevin <pete@petebevin.com>
Péter <peter.perenyi@gmail.com>
Peter Lyons <pete@peterlyons.com>
Phil Dokas <pdokas@organic.com>
Philipp Fritsche <ph.fritsche@gmail.com>
Pierre-Marie Dartus <dartus.pierremarie@gmail.com>
Rafał Chłodnicki <rchl2k@gmail.com>
Rainer Eli <claushellsing@gmail.com>
Expand Down Expand Up @@ -258,6 +261,7 @@ Sebastian Silbermann <silbermann.sebastian@gmail.com>
Sergei Ianovich <s@asutp.io>
Shimon Doodkin <helpmepro1@gmail.com>
Simen Bekkhus <sbekkhus91@gmail.com>
Simon Müller <SimonMueller@users.noreply.github.com>
sonnym <michaud.sonny@gmail.com>
Soufiane Ghzal <sghzal@gmail.com>
sporchia <print@blindchaos.net>
Expand All @@ -279,6 +283,7 @@ Tom Jenkinson <tjenkinson@users.noreply.github.com>
Tom Taylor <tom@tomtaylor.co.uk>
ulteriorlife <ulteriorlife@gmail.com>
Vadim Baryshev <vadimbaryshev@gmail.com>
Vegard B. Bugge <vegabug@live.no>
Vincent Desjardins <vdesjardins@gmail.com>
Vincent Siao <vincent@asana.com>
VinothKumar Raman <vinoth@indix.com>
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.