Skip to content

Commit a241df6

Browse files
committed
Version 24.1.2
1 parent c3a9aed commit a241df6

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

AUTHORS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ Brian McDaniel <[email protected]>
4848
Brian Peacock <[email protected]>
4949
Carlos Serrano <[email protected]>
5050
Chad Walker <[email protected]>
51+
Chengzhong Wu <[email protected]>
5152
Chris Buckley <[email protected]>
5253
Chris Carpita <[email protected]>
5354
Chris Hughes <[email protected]>

Changelog.md

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

29+
## 24.1.2
30+
31+
* Fixed an issue with the `in` operator applied to `EventTarget` methods, e.g. `'addEventListener' in window`, which only appeared in Node.js ≥22.5.0. (legendecas)
32+
* Fixed the events fired by `blur()`: it no longer fires `focus` and `focusin` on the `Document`, and `blur` and `focusout` no longer have their `relatedTarget` property set. (asamuzaK)
33+
2934
## 24.1.1
3035

3136
* Fixed selection methods to trigger the `selectionchange` event on the `Document` object. (piotr-oles)

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jsdom",
3-
"version": "24.1.1",
3+
"version": "24.1.2",
44
"description": "A JavaScript implementation of many web standards",
55
"keywords": [
66
"dom",
@@ -18,7 +18,10 @@
1818
"Pierre-Marie Dartus <[email protected]>"
1919
],
2020
"license": "MIT",
21-
"repository": "jsdom/jsdom",
21+
"repository": {
22+
"type": "git",
23+
"url": "git+https://github.com/jsdom/jsdom.git"
24+
},
2225
"dependencies": {
2326
"cssstyle": "^4.0.1",
2427
"data-urls": "^5.0.0",

0 commit comments

Comments
 (0)