es-toolkit 1.48.1-dev.1894 → 1.49.0-dev.1895

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 +23 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # es-toolkit Changelog
2
2
 
3
+ ## Version v1.49.0
4
+
5
+ Released on June 26th, 2026.
6
+
7
+ - Added the `es-toolkit/fp` entrypoint with data-last, pipeable utilities,
8
+ documentation, benchmarks, and bundle-size checks. ([#1781])
9
+ - Added a broad set of array utilities to `es-toolkit/fp`, covering slicing,
10
+ grouping, set operations, ordering, zipping, and collection helpers. ([#1801])
11
+ - Fixed `trimStart` to validate multi-character trim strings correctly before
12
+ it stops trimming. ([#1615])
13
+ - Fixed `compat/pick` to prefer a literal key over a dot-notation path when the
14
+ picked value is `undefined`. ([#1775])
15
+ - Fixed `compat/random` to better match Lodash behavior for coerced bounds and
16
+ floating-point options. ([#1767])
17
+ - Fixed `compat/chunk` to handle `NaN` and `Infinity` size values consistently
18
+ with Lodash. ([#1797])
19
+ - Improved documentation and JSDoc accuracy across array, function, and compat
20
+ references. ([#1785], [#1786], [#1788], [#1790], [#1791], [#1792], [#1793],
21
+ [#1795], [#1800])
22
+
23
+ We sincerely thank @Antoliny0919, @D-Sketon, @eunwoo-levi, and @raon0211 for
24
+ their contributions. We appreciate your great efforts!
25
+
3
26
  ## Version v1.48.1
4
27
 
5
28
  Released on June 21st, 2026.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "es-toolkit",
3
- "version": "1.48.1-dev.1894+6b75d8a8",
3
+ "version": "1.49.0-dev.1895+c8d3c367",
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",