es-toolkit 1.47.1-dev.1871 → 1.48.0-dev.1872
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# es-toolkit Changelog
|
|
2
2
|
|
|
3
|
+
## Version v1.48.0
|
|
4
|
+
|
|
5
|
+
Released on June 21st, 2026.
|
|
6
|
+
|
|
7
|
+
- Added `AbortSignal` support to `timeout` and `withTimeout`. ([#1617])
|
|
8
|
+
- Fixed CDN `<script>` resolution by pointing `jsdelivr`/`unpkg` to the UMD bundle and dropping the misused `browser` field. ([#1395])
|
|
9
|
+
- Fixed `toMerged` to deep clone the target so untouched nested values stay independent. ([#1780])
|
|
10
|
+
- Fixed `compat/toPath` to keep empty segments for consecutive and trailing dots. ([#1778])
|
|
11
|
+
- Fixed `compat/difference` to treat sparse array holes as `undefined`. ([#1773])
|
|
12
|
+
- Fixed `compat/parseInt` to coerce input to a string before parsing. ([#1771])
|
|
13
|
+
- Fixed `compat/isNaN` to improve checks for boxed values and non-numbers. ([#1646])
|
|
14
|
+
- Fixed `compat/isMatchWith` to align nested primitive matching with lodash. ([#1647])
|
|
15
|
+
|
|
16
|
+
We sincerely thank @aidant, @Antoliny0919, @D-Sketon, @miinhho, @MyraxByte, @raon0211, @sarathfrancis90, and @ssi02014 for their contributions. We appreciate your great efforts!
|
|
17
|
+
|
|
3
18
|
## Version v1.47.1
|
|
4
19
|
|
|
5
20
|
Released on June 12th, 2026.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "es-toolkit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.48.0-dev.1872+90d91515",
|
|
4
4
|
"description": "A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.",
|
|
5
5
|
"homepage": "https://es-toolkit.dev",
|
|
6
6
|
"bugs": "https://github.com/toss/es-toolkit/issues",
|