es-toolkit 1.46.1-dev.1820 → 1.47.0-dev.1821
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 +17 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# es-toolkit Changelog
|
|
2
2
|
|
|
3
|
+
## Version v1.47.0
|
|
4
|
+
|
|
5
|
+
Released on May 25th, 2026.
|
|
6
|
+
|
|
7
|
+
- Added `es-toolkit/server` entrypoint with `colors` namespace for ANSI terminal color utilities. ([#1683])
|
|
8
|
+
- Added `exec` function. ([#1689])
|
|
9
|
+
- Added `sortKeys` to the `object` entrypoint. ([#1674])
|
|
10
|
+
- Added `cartesianProduct` and `combinations` to the `array` entrypoint. ([#1713])
|
|
11
|
+
- Added `allKeyed` to the `promise` entrypoint. ([#1672])
|
|
12
|
+
- Added `percentile` to the `math` entrypoint. ([#1710])
|
|
13
|
+
- Added an interactive playground page to docs. ([#1720])
|
|
14
|
+
- Reorganized docs to introduce a flavor switcher and co-locate `compat` under `/compat/`. ([#1699])
|
|
15
|
+
- Fixed `uniqWith` in `compat` to match lodash's comparator argument order. ([#1729])
|
|
16
|
+
- Fixed `compat/omitBy` to not treat plain objects with numeric `length` as array-like. ([#1709])
|
|
17
|
+
|
|
18
|
+
We sincerely thank @Antoliny0919, @ATOM00blue, @dayongkr, @guesung, @myeong-jae-hwi, @raon0211, @seungrodotlee, and @Xiaohang0316 for their contributions. We appreciate your great efforts!
|
|
19
|
+
|
|
3
20
|
## Version v1.46.1
|
|
4
21
|
|
|
5
22
|
Released on April 29th, 2026.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "es-toolkit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.47.0-dev.1821+9f35cf9b",
|
|
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",
|