forked from linkedin/rest.li
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
3523 lines (2811 loc) · 115 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
1.15.24
-------
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 recieve 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)
Add @TestMethod annotation to indicate which methods on a resource are intended to only be used for testing.
(RB=224402)
Add compatibility checking between snapshot and idl.
(RB=228981)
Fixing the onlyIf closure for Publish tasks, adding more logging to ease debugging for future.
(RB=230533)
Fix bug that schema compatibility checking throws exception of "java.util.MissingFormatArgumentException: Format specifier 's'".
(RB=230897)
Support per-sourceSet pegasus/snapshot/idl override properties.
(RB=230550)
Fix missing doc field in generated snapshot/idl files, which is caused by multi-threaded generation.
1.9.41
------
(RB=225308)
Refactor r2 asyncpool stats to make it visible outside the package.
1.9.40
------
(RB=226611)
Fix a bug where SimpleLoadBalancerState didn't remove an old entry in cluster -> services
mapping when SimpleLoadBalancerState receive a service changes notifications from Zookeeper.
At the same time we are adding more JMX handle to load balancers to allow more control at runtime.
(RB=225607)
Fix two bugs related to snapshots:
snapshot compatibility messages during checkSnapshot task should now print correctly.
snapshots of simple resources should be generated correctly.
(RB=225673)
break up compatibility info in CompatibilityInfoMap into two maps: one for tracking info from restSpecs, the other for
tracking info from models. Added new methods for extracting this information from the infoMap. Old methods for getting
general data are still around. Backwards-incompatible changes to method names for inserting info into compatibilityInfoMap.
1.9.39
------
(RB=224558)
Improving Pegasus build messages for network parallel builds. Making sure the access to static variables are synchronized.
(RB=225725)
Add additional http status codes to list.
1.9.38
------
(RB=224678)
Make d2 test artifacts visible.
1.9.37
------
(RB=222898)
added logic to prevent callDroppingMode in LBStrategy to be changed when traffic is low
(RB=221327)
Change emitted message on successful build to include a listing of all published
IDLs and snapshots that likely need to be committed.
(RB=222817)
Fixes to checkIdl task in PegausPlugin. Some small clean-up in compatibility tasks:
Only initialize a single checker class rather than one per pair of files, and don't
bother setting resolver paths when checking snapshots of file counts.
(RB=223135)
Fix a bug in R2 that a pooled channel can be disposed twice.
(RB=223827)
Add operation information to the resource context to enable logging on the server side.
(RB=224108)
Made get data length safe in RetryZooKeeper
(RB=224314)
Fixed the READMEs in the examples folder and converted them to Markdown
(RB=224729)
Fixed a bug in Snapshot generation relating to entity-level Actions and Finders in
Association resources.
1.9.36
------
(RB=220182)
Fixes to make Rest.li build on Windows.
(RB=221652)
Fix DynamicRecordTemplate to accept DataList argument while setting fields of type array.
(RB=215380)
Enabling complex key based look ups on BatchKVResponse objects. Fixing a query parameter array serialization issue in BatchKVResponse for Complex Keys.
(RB=214848)
Refactored Count checks as individual tasks out of PegasusPlugin, and reintegrated them back into
regular compatibility checks.
Changed the message emitted with changes.
New message will appear if a compatibility check is run on what appears to be a continuous integ.
environment (where -Prest.model.compatibility=equivalent).
(RB=222257)
Revert suspicious changes in R2 AsyncPool that may cause site relibility issue.
1.9.35
------
(RB=217963)
Add ability to collect and export R2 AsyncPool Stats
(RB=216982)
Add ability to config R2 AsyncPool strategy between LRU and MRU.
1.9.34
------
(RB=218284)
Enabling Async R2 Servlet
1.9.33
------
(RB=218537)
Disallow null values in setParam. Add more tests.
1.9.32
------
(RB=218023)
Fix the allowed client override keys.
1.9.31
------
(RB=217233)
Revert "Make use of async servlet api in R2 servlet. Change integration tests to start test servers as necessary."
1.9.30
------
(RB=207412)
Allowed access to the ResourceModels of a RestLiServer. Made the resourcePath generation function public.
(RB=216547)
Fixing binary incompatible removal of header, param and reqParam methods on client builder base classes.
1.9.29
------
(RB=208312)
Rename X-Linkedin headers to X-RestLi headers.
(RB=215550)
Fixed a bug in SimpleLoadBalancerState that prevented recovering from a bad property push during publishInitialize
1.9.28
------
(RB=210345)
Make use of async servlet api in R2 servlet. Change integration tests to start test servers as necessary.
1.9.27
------
(RB=212287)
Refactor restli-client request builder classes:
1) deprecate header(), param and reqParam()
2) add setHeader(), setHeaders(), addHeader(), setParam(), setReqParam(), addParam() and addReqParam()
For query parameter and action parameter that is array type, add convenient request builder method to add element one by one.
For ActionRequestBuilder, required parameter will call reqParam() instead of param() now.
1.9.26
------
(RB=210935)
Added the ability to inject MaskTree (@Projection) and PathKeys (@Keys) from a
request into a method. This allows KeyValueResources to be able to use
Projections and PathKeys in their method implementations.
(RB=211406)
Fix bug that when complex resource key contains invalid URI characters (e.g. space), batch update fails with URISyntaxException.
1.9.25
------
(RB=211206, 211283)
Added ability for clients to specify either actual lists or string representation of lists for transport client properties.
1.9.24
------
(RB=202295)
Refactor IDL and Snapshot compatibility checks. Move file number checks to their
own tasks. Add in a flag -Prest.idl.skipCheck to allow all IDL checks to be
skipped. (IDL file count check is still run with -Prest.idl.compatibility=OFF)
(RB=208110)
Add InvokeAware interface to allow user code to listen to the restli method invocation events in restli server.
(RB=209638)
Add ProjectionMode option in ResourceContext to allow rest.li service implementers
to disable automatic projection when they are explicitly examining and applying
projections.
1.9.23
------
(RB=206396)
To detect, as early as possible, a mistake that is otherwise difficult to debug, add
check during data template generation that verifies filename and path match schema
name and namespace.
(RB=207258)
Add configuration to allow the rest.li server to limit exception details in responses and to customize the default response for internal server error responses.
1.9.22
------
(RB=206507)
Allow routing to batch partial update with no "X-RestLi-Method" HTTP header.
(RB=206724)
Support more HTTP header manipulation methods in restli-client request builder.
1.9.21
------
(RB=204527)
Add spring and guice support, enables running rest.li servlets with dependency injection, also add a logging filter.
(RB=205233)
Fix bug in D2Config that service variant doesn't point to master colo when defaultRoutingToMaster is set.
(RB=204500)
Fix bug that R2 Client may lose connection forever after the server being bounced when there is a very high downstream
qps and D2 is not used.
1.9.20
------
(RB=205315)
Removed the notion of client only supplied config keys. Fixed bug in reading set from transport client properties.
1.9.19
------
(RB=204042)
Fix bug when GenericArrayType is used in action return type.
1.9.18
------
(RB=203386)
Fixed bug in client only config key-values.
(RB=203610)
Add support for returning error details in batch create responses.
(RB=202724)
Implement context path for Jetty server.
1.9.17
------
(RB=202641)
fix isRegistered in JmxManager
(RB=198503)
Added ability for clients to provide service level configs. Added support for clients to enable response compression.
(RB=202201)
Add thread pool size configuration parameters to RestliServlet, NettyStandaloneLauncher and StandaloneLauncher (jetty).
(RB=200469)
Allow an boolean expression of predicate names to be passed to FilterSchemaGenerator.
Add NOT predicate.
1.9.16
------
(RB=200567)
add isRegistered to JmxManager to find out whether a bean has been registered to jmx
(RB=200079)
Changing the dev default of the compat checker to BACKWARDS.
1.9.15
------
(RB=199182)
Remove unneeded dependencies on r2-jetty to avoid dragging jetty dependency downstream
1.9.14
------
(RB=196208)
Print warning for the deprecated configuration from the pegasus plugin.
Correct variable names in the pegasus plugin.
(RB=197690)
Relaxing the action parameter check to allow them on all method types as before.
1.9.13
------
(RB=196626)
Added batch operations to the async complex key template.
(RB=196751)
Fixing the schema resolution ordering problem.
(RB=196211)
Disallow @QueryParam in action methods, disallow @ActionParam in non-action methods.
(RB=197277)
Added support for shutting down the ZK connection asynchronously in the d2 client and ZKFSLoadBalancer.
1.9.12
------
(RB=196204)
Fixing data template generator to process type refs specified as array and map items.
(RB=192500)
Add class to filter DataSchemas in a directory by removing unwanted fields or custom properties of the schema according to given Predicate.
(RB=196098)
Improve FileClassNameScanner to 1) require a specific extension; 2) exclude whose guessed class name contains dots.
1.9.11
------
(RB=194990)
Added batch operations to the async association template.
(RB=190812)
allow specifying an empty string for coloVariants, useful in testing.
1.9.10
------
(RB=195487)
Fix a problem that can block Netty boss thread for a long time.
(RB=195243)
Fixed issue with Complex Keys with fields arrays containing a single element in get requests.
(RB=194339)
Fixing Example Generator to create correct request body for partial updates.
(RB=193189)
Added batch methods to the async interface and template for simple (non complex key, non association) collections.
(RB=190386)
Fixing couple of issues in annotated complex-key resources and async complex-key resource template. Adding extensive test covarage for both scenarios.
(RB=193265)
Add Union template builder method per member.
1.9.9
-----
(RB=188507)
fix the bug where threads that are waiting for state initialization, never stop waiting because the init step throws an exception
1.9.8
-----
(RB=192299)
Added fix to prevent a complex key when a CollectionResource is being used.
1.9.7
-----
(RB=190153)
Protect D2 from intermittent zookeeper problem
1.9.6
-----
(RB=188125)
Changed Snappy dependency to pure Java dependency to avoid JNI issues on Jetty.
1.9.5
-----
(RB=189900)
Add HttpNettyServerFactory and standalone launcher.
1.9.4
-----
(RB=189079)
Fixed issue with snapshots generation failing when referenced pdscs were circularly dependent.
Added tests to make sure that Snapshot generation and reading would work correctly with
circularly dependent models.
(RB=187506)
Added granular set methods for pagination start and count for getall and finder client builders.
1.9.3
-----
(RB=186736)
fixes snapshot incompatibility message printouts.
(RB=184701)
removes unused property keys and removes the non http-namespaced properties referenced in D2 code
(RB=184310)
Move AvroSchemaGenerator out of data-avro due to logging dependency requirement.
(RB=184337)
Adding support for partial update methods on simple resources.
(RB=184874)
Bug fix with compression client filter Accept-Encoding generation
(RB=185890)
Added string constructors to compression filters.
(RB=185181)
Use ParSeq 1.3.3, which depends on log4j 1.6.2 and converges to the same dependent version as Rest.li uses.
Add missing log4j.xml to restli-example-client.
1.9.2
-----
(RB=183317)
Simplify and speed up string intern tests in TestJacksonCodec. This only affects tests.
(RB=182331)
Adding support for java array return and input parameters for actions.
(RB=183215)
Add separate compatibility check for idl.
Add flag to turn off snapshot and idl compatibility check respectively.
1.9.1
-----
(RB=182338)
Fix bug in pegasus plugin that publish snapshot task may not run.
(RB=181765)
Fix up jdk7 warnings.
(RB=171893)
Added server/client compression filters and associated test cases.
(RB=182463)
Adjust log4j related dependencies and log4j.xml. Remove all compile-time dependency of log4j.
1.9.0
-----
(RB=176567)
Introduce simple resources concept which serves a single entity from a particular path.
(RB=174576)
Clean up SLF4J/Log4j mess by removing all dependencies on Log4j and
the SLF4J/Log4j adapter from production jars.
If your executable (war file, etc.) does not already depend on an SLF4J
adapter, you may need to introduce such a dependency, for example on
slf4jlog4j12.
(RB=176574)
Incorporate snapshot into pegasus plugin. All existing projects will automatically generate and publish the snapshot files.
(RB=179212)
add defaultRouting option to d2Config.
1.8.39
------
(RB=177700)
pegasus plugin and idl compatibility checker will check for missing and extra published idl files.
1.8.38
------
(RB=175711)
When generating idl, pass the source files of the resource classes to Javadoc.
When checking idl compatibility, doc field change is now a backwards compatible change instead of equivalent.