es-toolkit 1.43.0-dev.1721 → 1.44.0-dev.1722
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 +21 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# es-toolkit Changelog
|
|
2
2
|
|
|
3
|
+
## Version v1.44.0
|
|
4
|
+
|
|
5
|
+
Released on January 16th, 2026.
|
|
6
|
+
|
|
7
|
+
- Added `shouldRetry` option to `retry` function. ([#1585])
|
|
8
|
+
- Added `isEmptyObject` predicate function. ([#1584])
|
|
9
|
+
- Added `isNumber` predicate function.
|
|
10
|
+
- Enhanced error cloning to support `AggregateError`. ([#1563])
|
|
11
|
+
- Implemented collection methods for Maps and Sets.
|
|
12
|
+
- Added bundle size analysis and visualization components to docs. ([#1564])
|
|
13
|
+
- Fixed `flattenObject` to retain empty objects and arrays.
|
|
14
|
+
- Enhanced type safety for `clone` function.
|
|
15
|
+
- Fixed `clone` error when cloning object with null prototype. ([#1570])
|
|
16
|
+
- Fixed array function callbacks to include index and array parameters. ([#1561])
|
|
17
|
+
- Fixed `compat/cloneDeep` and `cloneDeepWith` to clone null-prototype objects as regular objects. ([#1562])
|
|
18
|
+
- Fixed `compat/clamp` to ensure consistency with lodash. ([#1555])
|
|
19
|
+
- Simplified `intersection` filter callback for consistency. ([#1582])
|
|
20
|
+
- Fixed incorrect function names and output in `cloneDeep` JSDoc examples. ([#1583])
|
|
21
|
+
|
|
22
|
+
We sincerely thank @raon0211, @dayongkr, @eunwoo-levi, @matt-oakes, @T3sT3ro, and @D-Sketon for their contributions. We appreciate your great efforts!
|
|
23
|
+
|
|
3
24
|
## Version v1.43.0
|
|
4
25
|
|
|
5
26
|
Released on December 12th, 2025.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "es-toolkit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.44.0-dev.1722+bb5068e1",
|
|
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",
|