Skip to content

Commit 696eb14

Browse files
committed
v2.12.0
1 parent 259e979 commit 696eb14

File tree

6 files changed

+30
-23
lines changed

6 files changed

+30
-23
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changelog
22

3-
## v.2.11.0
3+
## v2.12.0
4+
5+
- fix: change `Node#parentElement` to allow non-`HTMLElement` parents (https://github.com/uhyo/better-typescript-lib/pull/77)
6+
- fix: preserve call signatures of target object in `Object.assign` (https://github.com/uhyo/better-typescript-lib/pull/76)
7+
- Upgraded TypeScript to `5.9`. (https://github.com/uhyo/better-typescript-lib/pull/78)
8+
9+
## v2.11.0
410

511
- fix: correct return type of `document.getElementById` from `HTMLElement | null` to `Element | null` to account for more general situations like `SVGElement` (https://github.com/uhyo/better-typescript-lib/pull/65)
612
- Mark `Omit` as deprecated (https://github.com/uhyo/better-typescript-lib/pull/66)

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ This is because, unlike npm and yarn, by default pnpm does not allow your source
8181

8282
| better-typescript-lib | TypeScript |
8383
| --------------------- | --------------- |
84+
| 2.12.0 | TS 5.9 or later |
8485
| 2.11.0 | TS 5.8 or later |
8586
| 2.10.0 | TS 5.7 or later |
8687
| 2.9.0 | TS 5.6 or later |

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "better-typescript-lib",
33
"private": true,
4-
"version": "2.11.0",
4+
"version": "2.12.0",
55
"description": "Better TypeScript standard library",
66
"main": "index.js",
77
"devDependencies": {
@@ -24,4 +24,4 @@
2424
"keywords": [],
2525
"author": "uhyo <[email protected]>",
2626
"license": "Apache-2.0"
27-
}
27+
}

tests/package-lock.json

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@
3636
"@typescript/lib-webworker": "file:../dist-package/webworker",
3737
"@typescript/lib-es2024": "file:../dist-package/es2024"
3838
}
39-
}
39+
}

0 commit comments

Comments
 (0)