Skip to content

Commit

Permalink
Version 9.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
domenic committed Dec 19, 2016
1 parent fedc336 commit 05e0c53
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
4 changes: 4 additions & 0 deletions AUTHORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ Matthew King <[email protected]>
Matthew Pflueger <[email protected]>
Matthew Phillips <[email protected]>
Max Walker <[email protected]>
Maxim Vorobjov <[email protected]>
Michael Fleet <[email protected]>
Michael Hayes <[email protected]>
Michael Mior <[email protected]>
Expand All @@ -157,7 +158,9 @@ Pete Bevin <[email protected]>
Péter <[email protected]>
Peter Lyons <[email protected]>
Phil Dokas <[email protected]>
Rainer Eli <[email protected]>
Ralph Holzmann <[email protected]>
Ra'Shaun Stovall <[email protected]>
Remy Loubradou <[email protected]>
Rich Harris <[email protected]>
Ricky Chien <[email protected]>
Expand All @@ -166,6 +169,7 @@ Rob Dodson <[email protected]>
Robin <[email protected]>
Robin Berjon <[email protected]>
Rodrigo Flores <[email protected]>
Rolf Timmermans <[email protected]>
Ryan Gasparini <[email protected]>
Ryan Grove <[email protected]>
Ryan Seddon <[email protected]>
Expand Down
15 changes: 14 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## 9.9.0

* Added `CDATASection` nodes, including `document.createCDATASection`. (snuggs)
* Added `node.wholeText`. (jdanyow)
* Added a setter for `document.body`.
* Added `document.embeds`, `document.plugsin`, and `document.scripts`. These were supposed to be added in 9.5.0 but were mistakenly omitted.
* Fixed `element.insertAdjacentHTML` to work when the element has null or the document as its parent node, as long as the insertion position is `"afterbegin"` or `"beforeend"`.
* Fixed form submission to only hit the "not implemented" virtual console message when form submission is _not_ canceled, instead of when it is.
* Fixed an issue where the event listener was not being correctly removed when using the `{ once: true }` option to `addEventListener`. (i8-pi)
* Fixed an error that was thrown when using `XHTMLHttpRequest` and POSTing JSON contents to an endpoint that requires CORS while using an `Authorization` header. (dunnock)
* Fixed `document.body` and `document.title` to act more correctly in various edge cases.
* Fixed `HTMLCollection` named access to return the first element encountered, not the last.

## 9.8.3

* Fixed syntax errors in node v4.
Expand Down Expand Up @@ -25,7 +38,7 @@

* Added `EventListenerOptions` support to `addEventListener` and `removeEventListener`, including both the `once` and `capture` options. (GianlucaGuarini)
* Added `document.hasFocus()` (acusti)
* Fixed the focus management to ensure that focusing something inside an `iframe` will also focus the `iframe` itself (acusti)
* Fixed the focus management to ensure that focusing something inside an `iframe` will also focus the `iframe` itself. (acusti)

## 9.6.0

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": "9.8.3",
"version": "9.9.0",
"description": "A JavaScript implementation of the DOM and HTML standards",
"keywords": [
"dom",
Expand Down

0 comments on commit 05e0c53

Please sign in to comment.