Skip to content

Commit

Permalink
Version 15.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
domenic committed Oct 14, 2019
1 parent 0b7dba8 commit b4bb1c5
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
5 changes: 5 additions & 0 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Alvaro Dias <alvarod@microsoft.com>
Ammar Khaku <ammar.khaku@gmail.com>
Andrea Bogazzi <andreabogazzi79@gmail.com>
Andreas Fleig <andreasfleig@gmail.com>
Andreas Lind <andreaslindpetersen@gmail.com>
Andreas Lind Petersen <andreas@one.com>
andrew morton <drewish@katherinehouse.com>
Andrew Patton <andrew@acusti.ca>
Expand All @@ -31,6 +32,7 @@ Avi Deitcher <avi@deitcher.net>
Behind The Math <aryehb412@gmail.com>
Brandon Bethke <brandon.bethke@neudesic.com>
Brandon Paton <brandon@localizejs.com>
Brendan Abbott <brendan@bloodbone.ws>
Brian Donovan <donovan@squareup.com>
Brian Maissy <brian.maissy@gmail.com>
Brian McDaniel <brianmcd05@gmail.com>
Expand Down Expand Up @@ -120,6 +122,7 @@ Jimmy Mabey <jimmy@velsoft.com>
Joe Lencioni <joe.lencioni@gmail.com>
Johan Sköld <johan@pingdom.com>
John Hurliman <jhurliman@jhurliman.org>
John Nguyen <tgohn@users.noreply.github.com>
John Roberts <jroberts@logitech.com>
Jon Sakas <jon.sakas@gmail.com>
Jonathan Commins <joncom@gmail.com>
Expand Down Expand Up @@ -217,6 +220,7 @@ Robin Berjon <robin@berjon.com>
Rodrigo Flores <rodrigo.flores@plataformatec.com.br>
Rolf Timmermans <rolftimmermans@voormedia.com>
Ronald Rey <reyronald@gmail.com>
Rondinelly <rondinelly-ribeiro@outlook.com>
Ryan Gasparini <ryan@rxgx.com>
Ryan Grove <ryan@wonko.com>
Ryan Seddon <rseddon@zendesk.com>
Expand All @@ -233,6 +237,7 @@ Scott Ashton <scottmortonashton@gmail.com>
Sean Jacke <seanineurope@gmail.com>
Sebastian Mayr <github@smayr.name>
Sebastian McKenzie <sebmck@gmail.com>
Sebastian Silbermann <silbermann.sebastian@gmail.com>
Sergei Ianovich <s@asutp.io>
Shimon Doodkin <helpmepro1@gmail.com>
Simen Bekkhus <sbekkhus91@gmail.com>
Expand Down
16 changes: 16 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* Refer to attributes via `attr=""`.
* Refer to elements via `<element>`.
* Refer to events via `eventname`.
* Refer to CSS properties via `'propname'`.
* Never use the IDL terms "interface", "attribute", or "operation".
* URL schemes are in `code`, e.g. `data:`.
* Except in the headings, all version numbers get a "v" prefix, e.g. v12.2.0.
Expand All @@ -23,6 +24,21 @@ Other guidelines:
* Roughly order changes within those groupings by impact.
-->

## 15.2.0

* Added basic style inheritance in `getComputedStyle()` for the `'visibility'` property. This sets the foundation for further work on inheritance, cascading, and specificity. (eps1lon)
* Added `shadowRoot.activeElement`.
* Added `readystatechange` events during document loading.
* Added a stub for `form.requestSubmit()`, to match our existing stub for `form.submit()`.
* Changed `el.tabIndex`'s default value, when no `tabindex=""` attribute was set, to reflect the updated specification.
* Changed the exception thrown by `el.attachShadow()` on something that's already a shadow host, to reflect the updated specification.
* Fixed the validation logic for `<input type="range">`.
* Fixed `selectEl.value` when no `<option>` is selected to return the empty string, instead of the value of the first option. (tgohn)
* Fixed various correctness issues with `new FormData(formElement)`. (brendo)
* Fixed error messages when parsing XML to include the filename, instead of using `"undefined"`. (papandreou)
* Fixed the logic for reflected properties to not be affected by overwriting of `el.getAttributeNS()` or `el.setAttributeNS()`.
* Set `canvas` as an optional ``peerDependency`, which apparently helps with Yarn PnP support.

## 15.1.1

* Moved the `nonce` property from `HTMLScriptElement` and `HTMLStyleElement` to `HTMLElement`. Note that it is still just a simple reflection of the attribute, and has not been updated for the rest of the changes in [whatwg/html#2373](https://github.com/whatwg/html/pull/2373).
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": "15.1.1",
"version": "15.2.0",
"description": "A JavaScript implementation of many web standards",
"keywords": [
"dom",
Expand Down

0 comments on commit b4bb1c5

Please sign in to comment.