Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Releases: ramda/ramda

v0.13.0

11 May 12:14

Choose a tag to compare

v0.13.0 Pre-release
Pre-release

See the upgrade guide for a description of the changes.

v0.12.0

21 Mar 22:32

Choose a tag to compare

v0.12.0 Pre-release
Pre-release

See the upgrade guide for a description of the changes.

v0.11.0

21 Mar 01:57

Choose a tag to compare

v0.11.0 Pre-release
Pre-release

See the upgrade guide for a description of the changes.

v0.10.0

21 Mar 01:55

Choose a tag to compare

v0.10.0 Pre-release
Pre-release

See the upgrade guide for a description of the changes.

v0.9.0

28 Jan 16:29

Choose a tag to compare

v0.9.0 Pre-release
Pre-release

Changes: v0.8.0...v0.9.0

  1. Rewrite code involving functionality removed in 0.9.0:
  • Random extension #590
  • Types extension #669
  • R.alwaysZero #594
  • R.indexOf.from #635
  • R.lastIndexOf.from #635
  • R.slice.from #612
  1. Update references to functions renamed in 0.9.0:
  • R.allPredicatesR.allPass #597
  • R.anyPredicatesR.anyPass #597
  • R.argNR.nthArg #638
  • R.cloneDeepR.clone #673
  • R.cloneObjR.clone #673
  • R.everyR.all #634
  • R.filter.idxR.filterIndexed #639
  • R.{foldl,reduce}.idxR.foldlIndexed #639
  • R.{foldr,reduceRight}.idxR.foldrIndexed #639
  • R.forEach.idxR.forEachIndexed #639
  • R.insert.allR.insertAll #636
  • R.invokerNR.invoker #679
  • R.map.idxR.mapIndexed #639
  • R.mapObj.idxR.mapObjIndexed #639
  • R.reject.idxR.rejectIndexed #639
  • R.repeatNR.repeat #626 #629
  • R.skipR.drop #630
  • ⚠️ R.skipUntilR.dropWhile #630
  • R.someR.any #634
  • R.toLowerCaseR.toLower #674
  • R.toUpperCaseR.toUpper #674
  1. Update references to aliases removed in 0.9.0:
  • 👽 R.alwaysFalseR.F #595
  • 👽 R.alwaysTrueR.T #595
  • 👽 R.carR.head #576
  • 👽 R.cdrR.tail #576
  • 👽 R.consR.prepend #576
  • 👽 R.ifR.ifElse #583
  • 👽 R.pushR.append #611
  • 👽 R.reduceR.foldl #619
  • 👽 R.reduceRightR.foldr #619
  • 👽 R.sizeR.length #541
  1. Consider the effects of other API changes:
  • ⚠️ R.__ now references a sentinel object #746
  • R.arity now throws if first argument is greater than ten #652
  • 🍛 R.concat is now curried, op-style #687
  • 🍛 R.contains is now curried, op-style #687
  • 🍛 R.curryN is now curried #644
  • R.eq now has Object.is semantics #730
  • ⚠️ R.isEmpty now returns false when applied to null/undefined #540
  • R.length no longer throws if applied to null/undefined #541
  • R.length now returns NaN if applied to a value without a numeric length property #541
  • R.memoize now works correctly when applied to a "nullary" function #613
  • R.nAry now throws if first argument is greater than ten #654
  • R.nthArg now supports negative offsets #638
  • ⚠️ R.propOr now takes default value as first argument #658
  • R.times now throws if given an invalid array length #589
  • 🍛 R.union is now curried 3034109
  • 🍛 R.wrap now returns a curried function #741
  1. Optionally look for ways to use functions added in 0.9.0:
  1. Use the beautiful new documentation from @saikobee at http://ramdajs.com/docs/.

There are lots of breaking changes in this release (because we're keen to get things right). Thank you to our many thoughtful contributors. 🍻

v0.8.0

20 Nov 21:32

Choose a tag to compare

v0.8.0 Pre-release
Pre-release

Changes: v0.7.2...v0.8.0

  1. If using Ramda in the browser, replace all references (explicit or implicit) to window.ramda with references to window.R.
  2. Rewrite code involving functions removed in 0.8.0:
  1. Update references to functions renamed in 0.8.0:
  • R.condR.if (use R['if'] or R.ifElse for ES3 compatibility) #518
  • R.maxWithR.maxBy #547
  • R.minWithR.minBy #547
  • R.pickWithR.pickBy #547
  • R.propsR.propOf #501
  1. Optionally look for ways to use functions added in 0.8.0:

Thank you to our many wonderful contributors. This release was a real team effort. :)

v0.7.2

20 Nov 21:33

Choose a tag to compare

v0.7.2 Pre-release
Pre-release
Version 0.7.2

v0.7.1

20 Nov 21:33

Choose a tag to compare

v0.7.1 Pre-release
Pre-release
Version 0.7.1

v0.7.0

20 Nov 21:33

Choose a tag to compare

v0.7.0 Pre-release
Pre-release
Version 0.7.0

v0.5.0

16 Sep 22:46

Choose a tag to compare

v0.5.0 Pre-release
Pre-release
  • added cloneObj (shallow copy)
  • added isArrayLike
  • added op function for converting infix to prefix
  • curry split into curry and curryN
  • added Reader monad extension
  • isAtom removed
  • all eval'ed code removed
  • Sauce Labs integration
  • improved test coverage
  • documentation improvements
  • misc bug fixes