es-toolkit 1.49.0-dev.1974 → 1.50.0-dev.1975
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 +46 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,51 @@
|
|
|
1
1
|
# es-toolkit Changelog
|
|
2
2
|
|
|
3
|
+
## Version v1.50.0
|
|
4
|
+
|
|
5
|
+
Released on July 24th, 2026.
|
|
6
|
+
|
|
7
|
+
- Added the `es-toolkit/types` entrypoint: a declaration-only module of compile-time
|
|
8
|
+
type utilities TypeScript lacks natively — `ValueOf`, `Simplify`, `Writable`,
|
|
9
|
+
`NonEmptyArray`, `DeepPartial`, and `DeepReadonly`. ([#1818])
|
|
10
|
+
- Added `flow` to `es-toolkit/fp`, a reusable data-last composition built on `pipe`. ([#1812])
|
|
11
|
+
|
|
12
|
+
The following bring `es-toolkit/compat` closer to Lodash. Behavior for the affected
|
|
13
|
+
edge cases now matches Lodash, so results may differ if you relied on the previous output.
|
|
14
|
+
|
|
15
|
+
- Fixed `compat/intersectionBy` to dedupe a single array (including by the iteratee)
|
|
16
|
+
and to keep results consistent with Lodash. ([#1935])
|
|
17
|
+
- Fixed `compat/findIndex` and `compat/findLastIndex` to coerce a `NaN` `fromIndex`
|
|
18
|
+
to `0` and to convert `fromIndex` to an integer. ([#1828], [#1834], [#1938])
|
|
19
|
+
- Fixed `compat/lastIndexOf` to coerce `fromIndex` like Lodash. ([#1832])
|
|
20
|
+
- Fixed `compat/every` to treat a falsy, non-nullish `doesMatch` as a `_.property`
|
|
21
|
+
shorthand instead of identity. ([#1940])
|
|
22
|
+
- Fixed `compat/nth` to support string inputs. ([#1833])
|
|
23
|
+
- Fixed `compat/inRange` to not throw on a lone negative bound. ([#1835])
|
|
24
|
+
- Fixed `compat/toArray` to convert `Set`s to arrays like Lodash. ([#1840])
|
|
25
|
+
- Fixed `compat/values` to treat sparse array holes as `undefined`. ([#1894])
|
|
26
|
+
- Fixed `compat/maxBy` and `compat/minBy` to restore Lodash-compatible comparison. ([#1893])
|
|
27
|
+
- Fixed `compat/includes` to exclude the `length` property when matching array-like values. ([#1886])
|
|
28
|
+
- Fixed the case functions to split ordinal numbers like Lodash, and to count string
|
|
29
|
+
size and padding by code points for multi-byte characters. ([#1836], [#1852], [#1853])
|
|
30
|
+
- Fixed `compat/unset` to not treat an own literal dotted key as a deep path. ([#1808])
|
|
31
|
+
- Moved `compat/flattenDepth`'s flattening logic out of `flatten`. ([#1847])
|
|
32
|
+
- Restored the standalone `eq` and `templateSettings` entry points. ([#1895])
|
|
33
|
+
|
|
34
|
+
- Fixed `deburr` to remove all combining diacritical marks, matching Lodash. ([#1807])
|
|
35
|
+
- Fixed `partition` to accept any predicate return value, like `Array.prototype.filter`. ([#1937])
|
|
36
|
+
- Fixed `has` and `hasIn` to prioritize nullish literal keys over paths. ([#1810])
|
|
37
|
+
- Fixed `invokeMap` to normalize a string path via `toPath` for `this` binding. ([#1814])
|
|
38
|
+
- Fixed `isDeepKey` to detect deep keys with stricter patterns. ([#1621])
|
|
39
|
+
- Fixed `unzipWith` to return an empty array instead of throwing on empty input. ([#1816])
|
|
40
|
+
|
|
41
|
+
- Improved documentation, JSDoc accuracy, and internal refactoring across `compat`
|
|
42
|
+
and `fp`. ([#1817], [#1820], [#1822], [#1823], [#1825], [#1829], [#1830], [#1842],
|
|
43
|
+
[#1845], [#1851], [#1858], [#1867], [#1879])
|
|
44
|
+
|
|
45
|
+
We sincerely thank @Antoliny0919, @raon0211, @dayongkr, @spokodev, @sarathfrancis90,
|
|
46
|
+
@mayur-shenoy, @mahirhir, @kojesung, @Hprogram, @BangDori, and everyone else who
|
|
47
|
+
contributed. We appreciate your great efforts!
|
|
48
|
+
|
|
3
49
|
## Version v1.49.0
|
|
4
50
|
|
|
5
51
|
Released on June 26th, 2026.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "es-toolkit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.50.0-dev.1975+a443efd8",
|
|
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",
|