forked from linkedin/rest.li
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
3970 lines (3148 loc) · 125 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2.2.5
-----
2.2.4
-----
(RB=430630)
Let Rest.li filters modify request headers.
2.2.3
-----
(RB=425777)
Change ByteString to have slice & copySlice methods
Add new copy method to copy from a sub array
(RB=417088)
Fix a bug in AsyncPoolImpl where it fails to cancel pending create requests when it has drained out all pool waiters.
2.2.2
-----
(RB=427189)
Fix illegal argument exception thrown when a cookie header is added.
2.2.1
-----
(RB=407665)
Migrate to HttpClient 4.3.
2.2.0
-----
(RB=418083)
Create separate internal storage data structure for Cookie and Set-Cookie HTTP header. Making header storage data structure case insensitive.
2.1.2
-----
(RB=406996)
Configuration support for Rest.li request compression.
2.1.1
-----
(RB=408836)
Add unbatch logic while extracts single resonpes from an auto-batched batch response.
Add field name to RestliRequestUriSignature.toString() result.
2.1.0
-----
(RB=342503)
Making rest.li requests read-only.
(RB=405110)
Product sorted snapshot files.
(RB=405976)
Populate update status from error status.
2.0.5
-----
(RB=410397)
Adding a method on Request class that creates a string representation of the request without using security sensitive information.
2.0.4
-----
(RB=387501)
Pass the actual exception thrown by the resource (or a previous filter) to the rest.li response filters.
(RB=409087)
Fixing the wiring of parseq context for the method parameters annotated with the deprecated ParSeqContext annotation.
(RB=403572)
Added Rest.li 2.*.* release notes.
(RB=410847)
Fix deprecation Javadoc on annotations.
(RB=409497)
Handle the case when certain implementations of the Map inteface can't handle null.
2.0.3
-----
(RB=401742)
Change RestException.forError to set the given throwable as the cause.
2.0.2
-----
(RB=392178)
Add additional unit tests for RestLiArgumentBuilders.
(RB=404678)
Remove redundant warning suppressions.
(RB=404996)
Fix enum encoding bug for compound keys in protocol v2.
2.0.1
-----
(RB=387791)
Java 8 support for Pegasus
(RB=399776)
Improve performance for BatchGet when using the new request builder.
(RB=395883)
Add projection tests to Rest.li response builder tests.
(RB=389315)
Add dump functionality to RestliRequestUriSignature, which produces stable toString() output.
2.0.0
-----
(RB=340252)
Remove Rest.li 1.0 deprecated APIs.
(RB=386223)
Deprecate Rest.li 1.0 request builders.
1.24.8
------
(RB=397613)
Update Javadoc of Request#getUri().
1.24.7
------
(RB=390685)
Decrease default R2 http.idleTimout to 25s.
1.24.6
------
(RB=383405)
Fix memory leak in documentation generation.
(RB=378851)
Add unit tests for RestLiArgumentBuilders.
(RB=386973)
Task and Promise based async templates.
(RB=383125)
Enable Gradle parallel build and config-on-demand.
Fix the dependency order in the generated IntelliJ IDEA module of data-avro-1_6.
(RB=385433)
Introduce ProjectionUtil that tells if specific PathSpecs are filtered by a given MaskTree.
1.24.5
------
(RB=387900)
Add null pointer check for load balancer.
1.24.4
------
(RB=377223)
Turn on Rest.li 2.0 request builders by default in Gradle plugin.
(RB=377647)
Add protocol 2 URIs for BatchGetRequestBuilderTest.
(RB=380112)
Add unit tests for all classes that implement RestLiResponseBuilder.
(RB=333673)
Disallow server impl module itself to be its API project.
(RB=371175)
Allow projections on custom metadata and paging.
(RB=367345)
Repair logging for restli tests
(RB=383570)
Return parameterized ComplexResourceKey from MockBatchKVResponseFactory.createWithComplexKey().
1.24.3
------
(RB=362685)
Revisit resource method null handling.
Deprecating some parameter annotations, replacing with new ones, adding new resource context parameter annotaions and adding unit tests for the same.
(RB=376032)
Upgrade jackson-core and jackson-databind dependencies to 2.4.3.
1.24.2
------
(RB=372362)
fix the bug in handlePut of UriProperties.
1.24.1
------
(RB=370601)
Make Request#getId() return null for Rest.li 2.0.
1.24.0
------
(RB=364843)
Fail fast if resource names clash.
(RB=369715)
Make latest version Rest.li 2.0.
1.23.8
------
(RB=368138)
Expose more properties through DegraderLoadBalancerStrategyV3Jmx
(RB=368038)
Server responds with the same protocol version header name as the client requests.
1.23.7
------
(RB=363781)
Force use next version override.
1.23.6
------
(RB=364827)
reduce the number of hashes in mapKeyV3
update HashBasedPartitionAccessor
move hashLong into HashFunction interface
1.23.5
------
(RB=363214)
Support deprecated protocol version header (X-Restli-Protocol-Version).
(RB=364338)
Use Semaphore to allow multiple outstanding put (when calling D2Config) simultaneously.
1.23.4
------
(RB=359021)
Include file name for pdsc related error messages.
(RB=356420)
Subclassing ZooKeeperPermanentStore to only write changed and new properties to store.
1.23.3
------
(RB=356010)
Update RestLiAnnotationReader to check if a resource' annotation matches its template type.
Remove RestLiCollectionCompoundKey as it is not used.
(RB=356000)
Introduce doc support for action return types.
(RB=360399)
Allow client to change r2 min pool size
1.23.2
------
(RB=353147)
RestliRequestUriSignature: Handle assocKey for FindRequest and GetAllRequest.
MockActionResponseFactory: Add option to support dynamic schema, such as CollectionResponse.
(RB=357131)
Throw exception while generating IDL when Finder or GetAll methods are annotated with non-existing assocKeys.
1.23.1
------
(RB=348277)
Deprecate RestliProtocolCheck.
1.23.0
------
(RB=347094)
change getPartitionInformation so the ordering of the server will be consistent for identical hashrings
(RB=349490)
Add RestliRequestUriSignature, A summary object for the URI of a Rest.li Request.
Add MockActionResponseFactory for mocking ActionResponse.
1.22.0
------
(RB=346821)
allows client to change r2 client pool waiter size
(RB=344020)
Adding logic to throw exception if BatchGetRequestBuilder.batch methods are called for requests with Compound or Complex Keys.
1.21.2
------
(RB=345140)
Unit test and the fix for the DegraderImpl rollver deadlock
1.21.1
------
(RB=339157)
Add new API to Ring: getIterator()
(RB=344866)
Fixing Java 7 Build.
(RB=337425)
Changing the protocol version to 1.0 in those places we want 1.0 instead of baseline such as deprecated code paths.
1.21.0
------
(RB=334824)
Add NPE check for removePartial in ZookeeperEphemeralStore
(RB=337296)
Fixing documentation handler to handle empty path and paths containing just "restli".
(RB=321440)
Throw an exception when getId is called on the response and the key is a complex or compound key.
(RB=341565)
make sure we always get consistent ordering of hashes from getPartitionInformation
(RB=342147)
Fix incorrect generated snapshot when a typerefed data schema has included schema.
1.20.0
------
(RB=319445)
Forbid ID header being directly accessed.
1.19.2
------
(RB=330658)
Add API to get multiple hosts from all partitions
(RB=327432)
remove checkPathValue from idl/snapshot backwards compatibility checks.
Paths are now expected to be identical.
(RB=324987)
Generated included unnamed union in the defining class.
(RB=326034)
Update PathKeys.
(RB=330531)
Fix bugs in ArgumentBuilder.
(RB=331140)
Fix bug in ActionRequestUriBuilder.
1.19.1
------
(RB=317297)
return 400 status on input coercion failure
(RB=325317)
remove autoboxing from ConsistentHashRing.compareTo
1.19.0
------
(RB=323266)
expose partitionInfoProvider to Facilities (this can break classes that implement Facilities)
(RB=322336)
Update snapshot generator to expand included schemas in the models list instead of inside the include field.
(RB=322858)
fix d2TransportClientProperties schema to reflect what's actually being stored
(RB=311710)
Distinguish BatchGet with empty batch keys and GetAll by passing empty "ids=" query parameter from client and handle in server.
1.18.3
------
(RB=322445)
add NPE check for transport client compression
1.18.2
------
(RB=313441)
Use Gradle 1.12.
(RB=312937)
Fix bug in how example requests are generated for batch update and batch partial update.
(RB=313946)
Introduced new interface called RestLiResponseData to expose response data to filters.
1.18.1
------
(RB=315193)
Fix typo in protocol version header.
1.18.0
------
(RB=316654)
Introducing a check inside BatchGetRequestBuilder.build() to fail when the key is CompoundKey or ComplexResourceKey.
1.17.3
------
(RB=315698)
Fix issue with inconsistent space encoding/decoding in uri paths.
(RB=313443)
Add cache to RecordTemplate field getter/setter whose type needs to be coerced (custom type).
Note that RecordTemplate classes need to re-generated from .pdsc files to activate this feature.
(RB=318144)
Add wire attrs as a param.
1.17.2
------
(RB=313174)
Re-apply "Re-design Rest.li response API for various batch operations" with performance issue solved.
(RB=312225)
Support BatchGetEntity and EntityResponse for ScatterGatherBuilder.
1.17.1
------
(We skipped this version)
1.17.0
------
(RB=314186)
CreateIdResponse.getId() now throws an exception if the requested Id is a Complex or Compound key.
1.16.2
------
(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.
1.16.1
------
remove smurfing ability in D2 KeyMapper
(RB=310598)
fix bug in zookeeperAnnouncerJmx
(RB=312571)
1.16.0
------
(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
1.15.24
-------
(RB=310960)
add new method to set partitionData in ZKAnnouncerJMX
expose method to access zkannouncer from ZooKeeperConnectionManager
1.15.23
-------
(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.
1.15.22
-------
(RB=307113)
changed rangePartition properties to long because in the actual property, it's long not int
1.15.21
-------
(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
1.15.20
-------
(RB=288213)
Provide methods to map keys to multiple hosts in KeyMapper
1.15.19
-------
(RB=302891)
Fix java 7 warnings.
(RB=299112)
Allow for clients to receive strongly-typed keys returned from creates.
old builder format:
CreateResponse<K> entity = (CreateResponse<K>)response.getEntity();
K key = entity.getId();
new builder format:
CreateIdResponse<K> 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.
1.15.18
-------
(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.
1.15.17
-------
(RB=299453)
Fixed bug where any request with the word restli in it is treated as a documentation request
(RB=299380)
Expose hash ring information through jmx
1.15.16
-------
(RB=298904)
Update D2ClientBuilder to honor d2ServicePath
(RB=295065)
PegasusPlugin: Generate list of input pdsc files for generateDataTemplate task at execution time.
(RB=297096)
Extract client cert from https request and save it in the RequestContext.
(RB=296391)
Support AsyncCallableTasks and documentation requests in the mock http server. Clean up mock http server threadpools. Fix hashCode in ProtocolVersion.
1.15.15
-------
(RB=297875)
Resurrecting InvokeAwares.
(RB=276851)
Checking in support for RestLi filters.
Checking in RestLi filters integration test.
1.15.14
-------
(RB=247966)
Changes to allow 2.0 URI format.
2.0 URI format will be publicly documented shortly.
Related refactoring of key encoding.
Added many tests to cover both 1.0 and 2.0 URI format.
(RB=295979)
add setter for d2ServicePath in D2ClientConfig
1.15.13
-------
(RB=292644)
Support Avro translation OptionalDefaultMode in PegasusPlugin.
(RB=294234)
Fix avro schema translator to not translate default values (that will not be used) when avro override is present.
(RB=295035)
Added a PegasusSchema pdsc.
1.15.12
-------
(RB=293255)
Reapply "add LRU mode and minimum pool size to AsyncPool"
(RB=293315)
Add more async pool metrics
1.15.11
-------
(RB=290169)
PegasusPlugin: Deprecate compatibility level OFF and short-circuit to IGNORE.
(RB=288855)
Changing the action parameter setting method name in new client builders to "<parameter name>Param".
(RB=291596)
Add support for AsyncR2Servlet in RestliServlet, update examples to use Jetty 8 with async enabled.
(RB=290827)
Adding a central place (new module r2-unittest-util) to check in test classes all across r2 and can be used in all r2 tests
1.15.10
-------
(RB=289792)
Fix scaladoc extractor to not throw an exception on a undocumented param.
(RB=290416)
Fixing D2 client to log only the non-sensitive parts of the request.
1.15.9
------
(RB=288605)
Fix bug in scaladoc provider where class and object of same were not disambiguated between correctly.
(RB=289001)
Fix bug where when maven artifacts are not properly depended on using gradle 1.9+. This was because
the maven pom contained test and compile scopes for the same artifact. The fix is to not publish the
test artifact dependencies into maven poms.
1.15.8
------
(RB=288441)
Relax master colo check in D2Config if enableSymlink is set.
(RB=288471)
Fix a bug where an exists watch gets incorrectly disabled when it's still valid.
(RB=288481)
Add symlinkAware option in ZKPersistentConnection.
1.15.7
------
(RB=285003)
Fix bug in example generator where query params of complex types are incorrectly
rendered as stringified data maps with { and } instead of the correct URI
representation.
(RB=282064)
Removing X-RestLi-Type and X-RestLi-Sub-Type headers.
1.15.6
------
(RB=284603)
Add the IP address to RequestContext.
(RB=285727)
Use the correct markUp function for ZooKeeperAnnouncers
1.15.5
------
(RB=276294)
Use TestNG listener to fail skipped tests rather than ignoring them.
Upgrade quickstart example to support Gradle 1.9+.
(RB=202580)
Update restli-int-test data provider to avoid suppressing the rawtypes warning.
(RB=283790)
Assume that the server is using the baseline protocol version.
(RB=283477)
Add support for URI specific properties to D2.
(RB=283854)
Replace dependency of google-collections with guava.
Remove usage of Gradle internal API.
1.15.4
------
(RB=275644)
ComplexResourceKey now tries to create key/param record templates using schemas
from the key spec
1.15.3
------
(RB=276699)
Added .pdscs for D2 related information into newly created d2-schemas module.
1.15.2
------
(RB=275463)
Added new fields to the Request toString method.
1.15.1
------
(RB=266089)
Generate alternative version of client request builders.
Change integration tests to test the new request builders.
(RB=273408)
Implementation of equals, hashCode, and toString in Request and derived classes.
(RB=273416)
Add ability in d2Config to produce d2 symlink for single-master services
1.15.0
------
(RB=271265)
Add protocol version header to error response.
Add test for protocol version in error case.
(RB=274091)
Fix example generator to include finder params in generated examples, add test.
(RB=271256)
Remove hard-coding of format of association keys in IDLs and Builders.
Add tests to ensure backwards compatibility, and make sure the path changes resulting from this in IDLs
are considered backwards compatible.
1.14.7
------
(RB=266640)
Add support of enum array in parameter's default value.
(RB=264605)
Added test utilities that can be used by application developers to test their Rest.li clients and servers.
1.14.6
------
(RB=268867)
Add dataTemplate to generateRestClient classpath for smaller Java binding.
(RB=270034)
Deprecate R2 RPC.
1.14.5
------
(RB=268683)
Fix bug in Data to Avro schema translation in which assertion will be thrown if the same record schema is included
more than once, and that schema contains fields that either have a default value or is optional.
1.14.4
------
(RB=267118)
Making request execution report generated only for debug requests.
(RB=265900)
Fix a bug where documentation strings would not show up in idls/snapshots when a method parameter was an array.
1.14.3
------
(RB=264806)
Fix a bug where RecordTemplates in Array parameters were not validated.
(RB=253429)
Add support of reading symbolic link in Zookeeper.
(RB=264751)
Fix bug that single element is added to query param.
1.14.2
------
(RB=264174)
Increment parseq version which removes unservable files from the tracevis tar ball.
(RB=264173)
Use ProtocolVersionUtil to get protocol version in ErrorResponseBuilder.
1.14.1
------
(RB=262805)
Adding set method for Rest.li debug request handlers on Rest.li server config.
(RB=262459)
Adding a temporary fix to ignore the unused folders in the parseq-tracevis artifact in maven central.
(RB=260228)
Adding debug request handler support to Rest.Li. Introducing a new debug request handler: Parseq Trace Debug Request Handler.
(RB=261581)
Fix header display bug in docgen resource page.
1.14.0
------
(RB=258481)
Create enum for Rest.li protocol versions.
(RB=258219)
Replace hand written data templates with generated ones.
(RB=259104)
Move AllProtocolVersions from com.linkedin.restli.common.internal to com.linkedin.restli.internal.common.
(RB=258733)
Fail fast when a server receives a request from a client that is encoding using a Rest.li protocol that the server does not support.
(RB=256518)
Rename X-Linkedin headers (ID and ErrorResponse) to X-RestLi headers.
(RB=261288)
Change zookeeperAnnouncer's markdown() name and implementation so its action is easier to understand
(RB=261502)
Shorten the logging in d2 state to be more readable + changed the interface of D2 strategy Jmx
(RB=261855)
Make the error details optional in an ErrorResponse to be consistent with previous behavior
1.13.5
------
(RB=257823)
Fix for getting the uri in ScatterGatherBuilder and GetAllPartitionsRequestBuilder if the legacy constructor is used.
1.13.4
------
(RB=257238)
Fix memory leaks from CopyFilter.
1.13.3
------
(RB=251559)
Add scaladoc support to Rest.li IDL generation.
(RB=256825)
Fixed a bug where if the deprecated constructor + D2 is used then getting the protocol version will fail in the RestClient as "d2://" is not a valid URI.
1.13.2
------
(RB=254542)
Refactor when projections are encoded in the URI. Move encoding back to the normal URI encoding process.
(RB=255178)
Include schemas referenced inline when generating OPTIONS responses.
(RB=255203)
Disallow typeref as key type in annotation reader. This fixes the inconsistency between annotation reader and resource model.
(RB=251559)
Add scaladoc support to Rest.li IDL generation.
1.13.1
------
(RB=252070)
Added add markdown and markup to ZKConnectionManager
1.13.0
------
(RB=253633)
Added next protocol version. Set the latest protocol version to 1. Added a FORCE_USE_NEXT ProtocolVersionOption. Updated negotiation code.
1.12.4
------
(RB=252372)
Fix d2 rewrite bug and fix related pathKeys incorrect encoding issue.
(RB=251668)
Fix for handling invalid MIME types in accept header. Now, if a request has one or more invalid MIME types in the accept header of the request, the request is rejected with a 400. If the no supported MIME type is found in the specified accept header, a 406 is returned BEFORE the request is processed.
(RB=253327)
Fixed assertion ordering in TestRestClientRequestBuilder.
1.12.3
------
(RB=250488)
pegasus plugin: Add "overrideGeneratedDir" property to override per-module generated directory.
1.12.2
------
(RB=251936)
Added null checks for ComplexResourceKey.makeReadOnly
1.12.1
------
(RB=250849)
Revert RB 249757
1.12.0
------
(RB=248588)
RestClient now fetches properties for the URI the request is going to before sending the request.
Added RequestOptions at the top level client builders as well as each generated RequestBuilder.
Added Rest.li protocol version negotiation.
1.11.2
------
(RB=248629)
Improve Rest.li projection performance, especially in sparse use cases.
Rename DataMapProcessor to DataComplexProcessor. The old DataMapProcessor is deprecated.
1.11.1
------
(RB=249757)
Fix d2 rewrite bug
1.11.0
------
(RB=235394)
Refactor *RequestBuilders into *RequestUriBuilders that are responsbile for constructing the request URI.
Introduced the concept of a Rest.li protocol version.
1.10.7
------
(RB=240001)
Providing a way to get the response payload and status without catching exceptions in case of a Rest.Li error.
(RB=242468)
Add more tests for AbstractRequestBuilder.
Use resource stream in restli-tools tests.
(RB=246314)
Added injectable headers to resource methods.
Use by adding a param to a resource method like @HeaderParam("Header-Name") headerValue
This allows KeyValueResources to access headers, even though they cannot call getContex.
1.10.6
------
(RB=243742)
Add test for DegraderLoadBalancerState
(RB=244652)
Improve test for DegraderLoadBalancerState
(RB=244397)
Simplify V3 DegraderLoadBalancerState
(RB=244654)
Add support for rest.li 'OPTIONS' requests to java client bindings.
1.10.5
------
(RB=240968)
Simplify state update logic in degrader balancer strategy in V3
The same change for V2 is made to the new V2_1 strategy to leave
V2 untouched for the safer rollout
1.10.4
------
(RB=243172)
Fix bug caused by race condition in resize() of DegraderLoadBalancerStrategyV3
(RB=243503)
Fix a bug where CallTracker doesn't honor the use of LoadBalancer interval
1.10.3
------
(RB=242286)
Generate error that was not previously detected when trying to set incompatible overriding default value in
outer type (e.g. record) that overrides default of an inner type (e.g. string field within record.)
(RB=242652)
Add support for schema JSON strings greater max Java string literal length.
(RB=235794)
Add propagation of deprecated keys used on types and fields in pdscs to generated java data templates.
1.10.2
------
(RB=241241)
fix a problem where threads will get locked if there is an uncaught exception being thrown during updateState in LoadBalancerStrategy
(RB=239728)
Add javadoc to SchemaSampleDataGenerator.
Implement sample data callback for SchemaSampleDataGenerator.
1.10.1
------
(RB=241529)
Remove logging from data.
1.10.0
------
(RB=231736)
Upgrade Jackson to 2.2.2.
1.9.49
------
(RB=239631)
Fixed log error message in ClientServiceConfigValidator.
1.9.48
------
(RB=239561)
Fix bug in ClientServiceConfigValidator. We were previously casting the values directly to an int. However, this is incorrect as the values in the map are Strings.
1.9.47
------
(RB=237507)
Fix of getClient for scatter/gather and search
(RB=234511)
Replacing IdentityHashMap in RecordTemplate, WrappingMapTemplate and WrappingArrayTemplate with a custom cache implementation.
1.9.46
------
(RB=233744)
Disable data object checking on safe and performance-critical situations.
(RB=235277)
Added compatibility checking to annotations. Annotation changes will now be considered compatible rather than
simply skipped over and thus considered equivalent.
(RB=235831)
Add functionality of listening to all children's data under a certain znode in ZooKeeper.
1.9.45
------
(RB=233764)
Add permissive option to degrade on serializing bad user data
1.9.44
------
(RB=232974)
Adding perf test for Record Template put performance.
(RB=231054)
Make skipping publishRestliIdl task more precise by taking advantage to changes to CompatibilityInfoMap.
PublishRestliIdl should now be skipped if there are only model changes.
(RB=229233)
Add support for deprecated annotation.
1.9.43
------
(RB=231737)
Only validate union data if map has a single entry
1.9.42
------
(RB=226303)