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

Releases: dvdzkwsk/redash

v0.15.0

09 Dec 16:41
Compare
Choose a tag to compare
v0.15.0 Pre-release
Pre-release

v0.15.0

Features

  • Added pick.
  • Added omit.

v0.14.2

24 Nov 19:13
Compare
Choose a tag to compare
v0.14.2 Pre-release
Pre-release

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 of prepend.

v0.14.1

24 Nov 19:14
Compare
Choose a tag to compare
v0.14.1 Pre-release
Pre-release

Fixes

  • Removes usage of const in juxt.
  • Removes usage of const in lensProp.

v0.14.0

20 Nov 17:55
Compare
Choose a tag to compare
v0.14.0 Pre-release
Pre-release

Features

  • Created online API documentation.
  • Added contains.
  • Added divide.
  • Added dropWhile.
  • Added dropUntil.
  • Added empty.
  • Added isEmpty.
  • Added isEven.
  • Added isOdd.
  • Added isType (formerly is).
  • 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 now isType.

v0.13.0

06 Oct 03:41
Compare
Choose a tag to compare
v0.13.0 Pre-release
Pre-release

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 to chain.

Deprecations

  • Removed not.

v0.12.0

01 Jul 03:14
Compare
Choose a tag to compare
v0.12.0 Pre-release
Pre-release

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 slow concat calls.

Fixes

  • Fixed fromPairs reduce implementation where the accumulator was mutated, affecting subsequent invocations.

Deprecations

  • Removed takeUntil.