Skip to content

Releases: javadev/underscore-java

Version 1.28

01 Nov 04:29
Compare
Choose a tag to compare
  • Added filterFalse(list, pred) method support.
  • Added support for the LRUCache in math plugin.

Version 1.27

01 Jul 04:59
Compare
Choose a tag to compare
  • Added $.filterIndexed(), $.rejectIndexed(), chain filterIndexed and chain rejectIndexed methods.
  • Added object-oriented map(func) method.
  • Added object-oriented methods for filter and reject.

Version 1.26

01 Jun 11:03
Compare
Choose a tag to compare
  • Added method $.format(template, values).

Version 1.25

01 May 04:58
Compare
Choose a tag to compare
  • Added method $.iterate(seed, unaryOperator).
  • Added support for the method $.chain(iterable, size).
  • Fixed Chain.uniq(Function1<T, F>) method.

Version 1.24

01 Apr 14:30
Compare
Choose a tag to compare
  • Added more checks for the $.fromXml() method in lodash and string plugins.

Version 1.23

02 Feb 06:44
Compare
Choose a tag to compare
  • Moved push(), pop(), shift() and unshift() to the underscore library.
  • Removed each and print support from template.

Version 1.22

02 Jan 07:20
Compare
Choose a tag to compare
  • Added support for the $.sortWith(list, comparator) method.

Version 1.21

01 Dec 03:24
Compare
Choose a tag to compare
  • Added methods firstOrNull(list), firstOrNull(list, pred), lastOrNull(list) and lastOrNull(list, pred) for chain.
  • Added methods $.checkNotNull(), Optional.map(function1) and Optional.orThrow(function).
  • Changed newHashSet with newLinkedHashSet for uniq/distinct methods.
  • Added lastIndex(array), distinct(array) and distinctBy(array, func) methods.
  • Added support for the $.chain(int[]) and $.map(int[], function) methods.

Version 1.20

01 Nov 03:10
Compare
Choose a tag to compare
  • Added more checks for the limit(size) method in chain.
  • Added support for the connectTimeout and readTimeout parameters in $.fetch() method, lodash plugin.
  • Added xml() method to the FetchResponse.

Version 1.19

01 Oct 05:33
Compare
Choose a tag to compare
  • Improved perfomance for $.intersection(list1, list2) and $.difference(list1, list2) methods.
  • Added forEach(inerator) and forEachRight(inerator) for chain.
  • Improved $.join(iterable, separator) method.
  • Improved $.debounce(function, delay) method and added $.throttle(function, wait) method.