es-toolkit 1.47.0-dev.1850 → 1.47.1-dev.1851

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # es-toolkit Changelog
2
2
 
3
+ ## Version v1.47.1
4
+
5
+ Released on June 12th, 2026.
6
+
7
+ - Fixed `maxBy` and `minBy` to propagate `NaN`, matching `Math.max`/`Math.min` behavior. ([#1749])
8
+ - Fixed `orderBy` and `sortBy` to place `null` and `undefined` values last when sorting. ([#1681])
9
+ - Fixed `isNumber` to no longer treat boxed `Number` objects as numbers. ([#1726])
10
+ - Fixed `reduce` and `reduceRight` to respect explicitly passed nullish accumulators. ([#1742])
11
+ - Fixed `isEmpty` to handle functions with own enumerable properties. ([#1645])
12
+ - Fixed the `globalThis` polyfill to avoid `Function(...)`, supporting CSP environments without `unsafe-eval`.
13
+ - Fixed ESM resolution for `./compat/*` subpaths in package exports. ([#1757])
14
+ - Fixed `compat/size` to count array-like objects by their `length`. ([#1766])
15
+ - Fixed `compat/round`, `compat/ceil`, and `compat/floor` to return `Infinity` for infinite values with precision. ([#1764])
16
+ - Fixed `compat/random` to coerce the upper bound for non-number `max`. ([#1751])
17
+ - Fixed `compat/toLength` to coerce non-numeric values to 0. ([#1758])
18
+ - Removed unused generic type parameters from `pull`. ([#1746])
19
+
20
+ We sincerely thank @Amund211, @Antoliny0919, @chatman-media, @D-Sketon, @dayongkr, @JetProc, @parkhojeong, @pbk95120, @raon0211, @sarathfrancis90, @shaked-shlomo, and @sukvvon for their contributions. We appreciate your great efforts!
21
+
3
22
  ## Version v1.47.0
4
23
 
5
24
  Released on May 25th, 2026.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "es-toolkit",
3
- "version": "1.47.0-dev.1850+2c95fc37",
3
+ "version": "1.47.1-dev.1851+bc10e66e",
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",