Skip to content
This repository was archived by the owner on Jan 22, 2023. It is now read-only.

Commit 78eb826

Browse files
author
David Zukowski
committed
release(0.23.0)
1 parent 0a96987 commit 78eb826

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
## v0.23.0
2+
3+
### Deprecations
4+
* `getEq` has been deprecated. Use `matches` or `where` for similar functionality.
5+
* `pair` has been deprecated.
6+
* `lens` has been deprecated.
7+
* `lensProp` has been deprecated.
8+
* `set` has been deprecated. Use `assocIn` for similar functionality.
9+
* `over` has been deprecated. Use `updateIn` for similar functionality.
10+
* `view` has been deprecated. Use `getIn` for similar functionality.
11+
12+
### Improvements
13+
* Documentation site has been entirely redesigned.
14+
* `mean` no longer throws if the list is empty, returns `0` instead.
15+
* `rangeBy` no longer throws for bad ranges, returns an empty list instead.
16+
* `transform` no longer throws for invalid transforms, the original value is passed through.
17+
18+
### Changes
19+
* The redash API no longer modifies function names. This will eventually be moved to a separate addon for developer usage.
20+
21+
## v0.22.0
22+
23+
### Features
24+
* Added `assocIn`.
25+
* Added `everyPred`.
26+
* Added `matches`.
27+
28+
### Fixes
29+
* `assoc` now respects arrays (does not convert them to array-like objects).
30+
31+
132
## v0.21.0
233

334
### Deprecations

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "redash",
3-
"version": "0.22.0",
3+
"version": "0.23.0",
44
"description": "A better Standard Library for JavaScript",
55
"main": "redash.js",
66
"module": "redash.next.js",

0 commit comments

Comments
 (0)