All Versions
1081
Latest Version
Avg Release Cycle
3 days
Latest Release
497 days ago

Changelog History
Page 82

  • v1.16.2 Changes

    June 06, 2014

    (RB=312291) Match previous changes in BatchCreateIdResponse to BatchCreateResponse

    (RB=313446) ๐ŸŽ Temproarily revert "Re-design Rest.li response API for various batch operations" due to performance issue.

  • v1.16.1 Changes

    June 05, 2014

    โœ‚ remove smurfing ability in D2 KeyMapper (RB=310598)

    ๐Ÿ›  fix bug in zookeeperAnnouncerJmx (RB=312571)

  • v1.16.0 Changes

    June 03, 2014

    (RB=311122) Decoders for responses that require a non-null dataMap will now return null if passed a null dataMap in wrapResponse.

    (RB=310817) ๐Ÿ‘ Allow filters access to strongly typed Ids in batch create responses.

    (RB=310721) Keep non-batch query parameters in ScatterGatherBuilder.

    (RB=272198) Re-design Rest.li response API for various batch operations. These changes does not include any change in wire protocols. Changes in the APIs are mainly reflected in the new generated *RequestBuilder classes. For more information, please refer to https://github.com/linkedin/rest.li/wiki/Rest.li-2.0-response-API

  • v1.15.24 Changes

    June 02, 2014

    (RB=310960) โž• add new method to set partitionData in ZKAnnouncerJMX ๐Ÿ”ฆ expose method to access zkannouncer from ZooKeeperConnectionManager

  • v1.15.23 Changes

    May 30, 2014

    (RB=303020) ๐Ÿ‘ Allow for clients to recieve strongly-typed keys returned from batch creates. ๐Ÿ— old builders can cast CreateStatus to CreateIdStatus and then call .getKey ๐Ÿ†• new builders simply return CreateIdsStatuses.

  • v1.15.22 Changes

    May 23, 2014

    (RB=307113) ๐Ÿ”„ changed rangePartition properties to long because in the actual property, it's long not int

  • v1.15.21 Changes

    May 23, 2014

    (RB=306535) ๐Ÿ›  Fix toString, equals and hashCode on idResponse

    (RB=306516) โž• Add ability to suppress regex matching failure warning via service properties, for cases where stickiness is desired only some of the time.

    (RB=299700) โž• Adding a read only view of ResourceModel for filters

  • v1.15.20 Changes

    May 16, 2014

    (RB=288213) Provide methods to map keys to multiple hosts in KeyMapper

  • v1.15.19 Changes

    May 14, 2014

    (RB=302891) ๐Ÿ›  Fix java 7 warnings.

    (RB=299112) ๐Ÿ‘ Allow for clients to receive strongly-typed keys returned from creates. ๐Ÿ— old builder format: CreateResponse entity = (CreateResponse)response.getEntity(); K key = entity.getId(); ๐Ÿ†• new builder format: CreateIdResponse entity = response.getEntity(); K key = entity.getId();

    โž• Additionally, added back in public wrapResponse function RestResponseDecoder that was removed in 1.15.14, ๐Ÿ—„ but it is marked as deprecated.

  • v1.15.18 Changes

    May 12, 2014

    (RB=300929) โž• Add trace level logging of response to DynamicClient

    (RB=301656) ๐Ÿ‘‰ Make ScatterGatherResult.getRequestInfo() and .getUnmappedKeys() public. KVScatterGatherResult also.

    (RB=301492) โœ… Clean up caprep so it can be better leveraged for language independent test suite.