Skip to content

Commit 2d82763

Browse files
committed
Version 16.5.0
1 parent 9741311 commit 2d82763

File tree

4 files changed

+26
-1
lines changed

4 files changed

+26
-1
lines changed

.mailmap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Jeff Carpenter <gcarpenterv@gmail.com>
1616
Sebastian Mayr <github@smayr.name> <sebastian@trello.com>
1717
Sebastian Mayr <github@smayr.name> <sebmaster16@gmail.com>
1818
Sebastian Mayr <github@smayr.name> <git@smayr.name>
19+
Sebastian Mayr <github@smayr.name> <smayr@atlassian.com>
1920
Pierre-Marie Dartus <dartus.pierremarie@gmail.com> <p.dartus@salesforce.com>
2021
Martin Naumann <mr.avgp@gmail.com> <martin@geekonaut.de>
2122
Christoph Pojer <christoph.pojer@gmail.com>

AUTHORS.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Aleksei Tsikov <alexey.tsikov@gmail.com>
77
Alex Coles <alex@alexbcoles.com>
88
Alex Pearson <alex@alexpear.com>
99
Alex Rattray <rattray.alex@gmail.com>
10+
Alex Soncodi <asoncodi@gmail.com>
1011
Alexander Flatter <flatter@gmail.com>
1112
Alexis CHAPPRON <bullrot-10@hotmail.fr>
1213
Alistair Brown <github@alistairjcbrown.com>
@@ -100,6 +101,7 @@ Gianluca Guarini <gianluca.guarini@gmail.com>
100101
Godmar Back <godmar@gmail.com>
101102
Gord Tanner <gtanner@gmail.com>
102103
gregory80 <gregory.tomlinson@gmail.com>
104+
Haz <hazdiego@gmail.com>
103105
Henry Zhu <hi@henryzoo.com>
104106
hij1nx <fernmicro@gmail.com>
105107
i8-pi <thomas@nomology.id.au>
@@ -220,6 +222,7 @@ Pete Bevin <pete@petebevin.com>
220222
Péter <peter.perenyi@gmail.com>
221223
Peter Lyons <pete@peterlyons.com>
222224
Phil Dokas <pdokas@organic.com>
225+
Philipp Fritsche <ph.fritsche@gmail.com>
223226
Pierre-Marie Dartus <dartus.pierremarie@gmail.com>
224227
Rafał Chłodnicki <rchl2k@gmail.com>
225228
Rainer Eli <claushellsing@gmail.com>
@@ -258,6 +261,7 @@ Sebastian Silbermann <silbermann.sebastian@gmail.com>
258261
Sergei Ianovich <s@asutp.io>
259262
Shimon Doodkin <helpmepro1@gmail.com>
260263
Simen Bekkhus <sbekkhus91@gmail.com>
264+
Simon Müller <SimonMueller@users.noreply.github.com>
261265
sonnym <michaud.sonny@gmail.com>
262266
Soufiane Ghzal <sghzal@gmail.com>
263267
sporchia <print@blindchaos.net>
@@ -279,6 +283,7 @@ Tom Jenkinson <tjenkinson@users.noreply.github.com>
279283
Tom Taylor <tom@tomtaylor.co.uk>
280284
ulteriorlife <ulteriorlife@gmail.com>
281285
Vadim Baryshev <vadimbaryshev@gmail.com>
286+
Vegard B. Bugge <vegabug@live.no>
282287
Vincent Desjardins <vdesjardins@gmail.com>
283288
Vincent Siao <vincent@asana.com>
284289
VinothKumar Raman <vinoth@indix.com>

Changelog.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,25 @@ Other guidelines:
2626
* Roughly order changes within those groupings by impact.
2727
-->
2828

29+
## 16.5.0
30+
31+
* Added `window.queueMicrotask()`.
32+
* Added `window.event`.
33+
* Added `inputEvent.inputType`. (diegohaz)
34+
* Removed `ondragexit` from `Window` and friends, per a spec update.
35+
* Fixed the URL of `about:blank` iframes. Previously it was getting set to the parent's URL. (SimonMueller)
36+
* Fixed the loading of subresources from the filesystem when they had non-ASCII filenames.
37+
* Fixed the `hidden=""` attribute to cause `display: none` per the user-agent stylesheet. (ph-fritsche)
38+
* Fixed the `new File()` constructor to no longer convert `/` to `:`, per [a pending spec update](https://github.com/w3c/FileAPI/issues/41).
39+
* Fixed mutation observer callbacks to be called with the `MutationObserver` instance as their `this` value.
40+
* 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).
41+
* 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.
42+
* Fixed `XMLHttpRequest` to expose the `Content-Length` header on cross-origin responses.
43+
* Fixed `xhr.response` to return `null` for failures that occur during the middle of the download.
44+
* Fixed edge cases around passing callback functions or event handlers. (ExE-Boss)
45+
* Fixed edge cases around the properties of proxy-like objects such as `localStorage` or `dataset`. (ExE-Boss)
46+
* Fixed a potential memory leak with custom elements (although we could not figure out how to trigger it). (soncodi)
47+
2948
## 16.4.0
3049

3150
* 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)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jsdom",
3-
"version": "16.4.0",
3+
"version": "16.5.0",
44
"description": "A JavaScript implementation of many web standards",
55
"keywords": [
66
"dom",

0 commit comments

Comments
 (0)