es-toolkit 1.40.0-dev.1657 → 1.41.0-dev.1658
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 +24 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# es-toolkit Changelog
|
|
2
2
|
|
|
3
|
+
## Version v1.41.0
|
|
4
|
+
|
|
5
|
+
Released on October 24th, 2025.
|
|
6
|
+
|
|
7
|
+
- Enhanced `throttle` to preserve `this` context when called as a method.
|
|
8
|
+
- Added type guard support for `partition` function.
|
|
9
|
+
- Fixed `omit` to support runtime-determined key arrays with proper overloads.
|
|
10
|
+
- Fixed `defaults` in compatibility layer to properly handle undefined and null sources.
|
|
11
|
+
- Fixed `toSnakeCaseKeys` and `toCamelCaseKeys` to correctly return types for non-plain objects.
|
|
12
|
+
- Fixed `toMerged` and `mergeWith` to properly handle shared objects in merge logic.
|
|
13
|
+
- Fixed `compat/union` to support array-like objects.
|
|
14
|
+
- Fixed `compat/updateWith` to use `get` for value retrieval in updater function.
|
|
15
|
+
- Fixed circular import between `isMatch` and `isMatchWith`.
|
|
16
|
+
- Fixed `find` and `findLast` by simplifying logic and removing unnecessary checks.
|
|
17
|
+
- Fixed `takeRight` by improving test coverage and removing redundant checks.
|
|
18
|
+
- Fixed `curry` and `curryRight` by removing unnecessary type assertions.
|
|
19
|
+
- Fixed `isEqualWith` and `mapKeys` by removing unnecessary type assertions.
|
|
20
|
+
- Improved performance for `meanBy` by removing intermediate array creation.
|
|
21
|
+
- Updated build system to use UMD format instead of IIFE for browser builds.
|
|
22
|
+
- Fixed numerous documentation examples across compat modules.
|
|
23
|
+
- Improved test coverage with additional test cases for edge cases and compatibility.
|
|
24
|
+
|
|
25
|
+
We sincerely thank @the5thbeatle, @wo-o29, @hwibaski, @manudeli, @raon0211, @dayongkr, @D-Sketon, @yoouungyoung, @Dohun-choi, @sukvvon, @zoulou00, and @sen2y for their contributions. We appreciate your great efforts!
|
|
26
|
+
|
|
3
27
|
## Version v1.40.0
|
|
4
28
|
|
|
5
29
|
Released on October 8th, 2025.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "es-toolkit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.41.0-dev.1658+26873886",
|
|
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",
|