This repository was archived by the owner on Jan 22, 2023. It is now read-only.
Releases: dvdzkwsk/redash
Releases · dvdzkwsk/redash
v0.15.0
v0.14.2
v0.14.2
Features
- Added
mapKeys
. - Added
mapValues
. - Added
where
.
Fixes
append
now appends a list correctly rather than concatenating.isOdd
now correctly returns false for all non-integers.
Improvements
append
can now handle strings, making it a correct mirror ofprepend
.
v0.14.1
v0.14.0
Features
- Created online API documentation.
- Added
contains
. - Added
divide
. - Added
dropWhile
. - Added
dropUntil
. - Added
empty
. - Added
isEmpty
. - Added
isEven
. - Added
isOdd
. - Added
isType
(formerlyis
). - Added
juxt
. - Added
max
. - Added
mean
. - Added
min
. - Added
multiply
. - Added
prepend
. - Added
test
. - Added
unless
. - Added
values
. - Added
when
.
Improvements
rangeBy
now throws for invalid ranges.
Fixes
range
now supports negative ranges.
Deprecations
- Removed
is
, it is nowisType
.
v0.13.0
v0.13.0
Features
- All objects are now compared deeply by value rather than by reference.
- Added
complement
. - Added
fmap
. - Added
gt
. - Added
gte
. - Added
identical
. - Added
is
. - Added
join
. - Added
length
. - Added
lt
. - Added
lte
. - Added
pair
. - Added
trim
. - Added
type
.
Improvements
reject
received a performance boost.- Rewrote test suite with AVA.
Fixes
- Fixed
insert
to no longer (incorrectly) replace the existing element at the target index.
Warnings
- Renamed
flatMap
tochain
.
Deprecations
- Removed
not
.
v0.12.0
v0.12.0
Features
- Added
takeWhile
. - Added
compact
.
Improvements
findLast
performance boost, now iterates from the end of the list.flattenDeep
received a huge performance boost by eliminating slowconcat
calls.
Fixes
- Fixed
fromPairs
reduce implementation where the accumulator was mutated, affecting subsequent invocations.
Deprecations
- Removed
takeUntil
.