Skip to content

Releases: javadev/underscore-java17

Version 1.20

01 Feb 01:48
Compare
Choose a tag to compare
  • Added new mode for jsonToXml() method FORCE_ATTRIBUTE_USAGE.

Version 1.19

01 Jan 03:49
Compare
Choose a tag to compare
  • Added new mode REPLACE_EMPTY_VALUE_WITH_NULL to the U.xmlToJson() method.
  • Added remove(path) and clear() for object and array builder.

Version 1.18

01 Dec 04:06
Compare
Choose a tag to compare
  • Replaced anonymous classes with lambda

Version 1.16

01 Oct 01:57
Compare
Choose a tag to compare
  • Added U.xmlToJson("<a/>", U.Mode.REPLACE_SELF_CLOSING_WITH_EMPTY).
  • Introduced U.of(1, 2, 3) // or java.util.Arrays.asList(1, 2, 3) or new Integer[] {1, 2, 3} and toList().
  • Fixed initialization error.

Version 1.15

08 Sep 14:35
Compare
Choose a tag to compare
  • Fixed format(pattern, values) with a backslash.
  • Added minimumDays(rows, columns, grid) method.
  • Added U.topNCompetitors(numCompetitors, topNCompetitors, competitors, numReviews, reviews) method.

Version 1.14

01 Aug 03:31
Compare
Choose a tag to compare
  • Improved U.update(map1, map2).
  • Updated dependent libraries.

Version 1.13

03 Jul 03:17
Compare
Choose a tag to compare
  • Added U.changeXmlEncoding(xml, encoding).
  • Introduced U.setValue(map, key, newValue).
  • Added U.update(map1, map2).
  • Introduced methods U.gcd(value1, value2) and U.findGcd(value1, ... valuen).
  • Improved U.throttle().

Version 1.11

01 Apr 15:43
Compare
Choose a tag to compare
  • Added U.containsWith(iterable, element).

Version 1.10

01 Mar 05:00
Compare
Choose a tag to compare
  • Fixed U.Builder.toJson() method.
  • Fixed null array json converter.
  • Improved format json and xml with numbers ending with 0.
  • Added U.arrayBuilder().

Version 1.9

01 Feb 03:53
Compare
Choose a tag to compare
  • Changed parameter for U.times(count, supplier).
  • Fixed U.camelCase(string).
  • Added method U.countBy(iterator).
  • Fixed runtime error for U.format() on android jvm.
  • Added U.objectBuilder().