forked from linkedin/rest.li
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
7454 lines (5834 loc) · 208 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
28.1.17
-------
28.1.16
-------
(RB=1965446)
Enable debug logging only in DEBUG mode in ResolvedPropertiesReaderVisitor
28.1.15
-------
(RB=1955795)
Provide an optional fast path for codecs to read ByteStrings directly, and provide an implementation utilizing this for Protobuf.
Close the underlying stream sources when using the Protobuf codec
Improve string decoding performance for Protobuf codec
Add an option in symbol table provider to pass in a list of overridden symbols if clients don't want to use the RuntimeSymbolTableGenerator for some reason
(RB=1958100)
Emit method definitions in deterministic order
28.1.14
-------
(RB=1946908)
Support long for HTTP_IDLE_TIMEOUT and HTTP_SSL_IDLE_TIMEOUT
(RB=1930512)
Add support for delegated property in ClusterProperties, and new property keys for Dark Cluster multiplier
28.1.13
-------
(RB=1952903)
Fix the logic in SchemaParser to match SchemaResolver when loading pegaus schemas from jar files.
28.1.12
-------
(RB=1943306)
Fix server error response for bad input entity, to return bad request in response
(RB=1948470)
Fix bug that would cause schema translator to fail if run on MPs with multiple modules containing PDSC files.
28.1.11
-------
(RB=1943392)
Publish all schemas as-is, temporarily publish translated PDSC schemas
(RB=1946416)
Suppress logging statement in ResolvedPropertiesReaderVisitor
(RB=1934338)
Guard against NPE when RestLiServiceException is initialized with null status. Also updates server logic to handle null status cleanly.
This change should not affect clients based on the following points:
-> Today, if status is null, the framework code throws NPE when serializing the exception or converting to Response. This NPE is then handled as unknown error and returned as 500 error to client.
-> With this change, clients will still get 500 error, with the correct error details serialized in the body.
-> The Rest.Li filter chain will continue to see the actual exception (with null status), thus not affecting any custom filter behavior.
(RB=1885009)
Add "validateSchemaAnnotationTask" gradle task for validating schema annotations
28.1.10
------
(RB=1932852)
Expose some utility methods for use elsewhere
(RB=1929668)
Expose action return type in FilterRequestContext
28.1.9
------
(RB=1929558)
Add back TransportHealthCheck constructor and deprecate it.
28.1.8
------
(RB=1927937)
Do not share RequestContext and wire attributes between D2 healthcheck requests.
28.1.7
------
(RB=1925299)
Expose some methods in the protobuf codec for inheritors to customize
28.1.6
------
(RB=1918095)
Add additional debug logging to RequestFinalizers.
28.1.5
------
Empty commit to trigger a new release
28.1.4
------
(RB=1921104)
Clean up some javadocs to reduce javadoc warnings during build
(RB=1888928)
Add schemaAnnotationProcessor and other related schema annotation processing feature
28.1.3
------
(RB=1920382)
Revert "dark cluster schema and serializer changes"
(RB=1919524)
Use PDL in examples and restli-example-api
(RB=1882175)
Dark cluster schema and serializer changes
(RB=1919280)
Use unmodifiableSortedMap instead of unModifiableMap when wrapping treemaps to ensure that bulk copy operations are faster when copied onto another TreeMap.
(RB=1913253)
Fix convertToPdl tool validation issue when there is an extra whitespace in the beginning of a line in doc.
(RB=1879153)
add DataSchemaRichContextTraverser, introduce DataSchemaRichContextTraverser.SchemaVisitor interface
28.1.2
------
(RB=1913804)
Lower latency instrumentation logs from warn to debug
28.1.1
------
(RB=1911165)
Minor performance optimization to use indexOf instead of split. Split internally uses indexOf but only if the regex length is 1. Since | has a special meaning in regex land, we need to escape it, meaning that we end up losing out on this internal optimization.
(RB=1904923)
Update convertToPdl tool to preserve source history
28.1.0
------
(RB=1745931)
Add integration testing for latency instrumentation
(RB=1745924)
Add instrumentation timing markers for projection mask application
(RB=1745918)
Add support for framework latency instrumentation
(RB=1874221)
Mark data schema directories as resource roots
28.0.12
-------
(RB=1905097)
Improve debug logging in RequestFinalizers.
28.0.11
-------
(RB=1896287)
Make symbol table path handling more robust to handle D2 URIs
(RB=1903191)
Allow incompatible rest model changes in restli-int-test-server
(RB=1896169)
PDL: Verify translated schemas by writing to temporary location and comparing them with source schemas. Enable option to keep source files or remove them.
28.0.10
-------
(RB=1878207)
Support to set up custom request handler in restli config
(RB=1851797)
Optimize Jackson data decoder to create DataMaps with proper capacity.
(RB=1896607)
Fix the failing AclAwareZookeeperTest
28.0.9
------
(RB=1885019)
Fix a bug in query tunneling affecting URIs containing keys with encoded reserved Rest.li protocol 2.0.0 characters
28.0.8
------
(RB=1894680)
Add debug logging to client/server request finalizers.
28.0.7
------
(RB=1891665)
Allow waiting until zookeeper connection establishes before ZKconnection#start returns
(RB=1882082)
Adds equality/hash methods for ActionResult class
(RB=1894377)
Disable setup and teardown for SymlinkAwareZooKeeperTest
(RB=1892519)
Bump TestNG to enable @Ignore annotation
(RB=1891356)
Log the mime types that failed to parse with error log level before propagating exception. Fix bugs in encoding symbol table names with special characters
(RB=1851420)
add clone method, resolvedProperties to DataSchema methods, changes to MapDataSchema PathSpec to have key fields reference, Add pathSpec format validation function
(RB=1889124)
Add configuration to disable generating deprecated protocol version 1.0.0 request builders.
(RB=1890675)
Disable SymlinkAwareZooKeeperTest temporarily
28.0.6
------
(RB=1887898)
Remove accept header for individual mux requests
(RB=1864201)
Support for data template schema field string literals in PDL
28.0.5
------
(RB=1883213)
Update SchemaToPdlEncoder interface
28.0.4
------
(RB=1885898)
Add the HeaderBasedCodecProvider interface back
(RB=1870820)
Reference symbol table provider and handler implementation to enable symmetric protocol for exchanging symbol tables between rest.li services
(RB=1878020)
Fix NPE in URIElementParser and add more undecodable tests to TestURIElementParser
(RB=1868606)
defined SchemaAnnotationHandler interface for custom users to implement
28.0.3
------
(RB=1877796)
Clean generated dirs in Pegasus sub-projects without the Pegasus plugin
(RB=1874215)
Fix incorrect PDL encoding for bytes default values
28.0.2
------
(RB=1876286)
Expose some methods for use in pemberly-api
28.0.1
------
(RB=1869428)
Remove RestResponse.NO_RESPONSE.
28.0.0
-------
(RB=1855849)
Wire up symbol table providers on client and server. This will enable us to inject a runtime symbol table lookup system via container Add tool to generate symbol tables at runtime
27.7.18
-------
(RB=1754676)
Introduce RequestFinalizer API and server-side RequestFinalizerTransportDispatcher.
(RB=1808820)
Add ClientRequestFinalizerFilter to finalize requests on the client-side.
27.7.17
-------
(RB=1866668)
Remove dependency on protobuf artifact, to avoid runtime errors with dependencies of pegasus that may depend on other protobuf versions. Instead extract relevant parts of protobuf code into a separate li-protobuf module.
(RB=1852698)
Support configurable encoding styles for PDL
27.7.16
-------
(RB=1411984)
Make Pegasus Java 8 and Java 11 compatible
27.7.15
-------
(RB=1853192)
Update PDL schema parser and encoder to allow properties with dots in them. Properties with dots are escaped using back-tick ` character.
(RB=1854466)
Optimizing UriBuilder & validatePathKeys.
27.7.14
-------
(RB=1854364)
LoadBalancer: when using empty d2ServicePath, use the default service path. Consolidating code between ZKFS and LastSeen code paths
27.7.13
-------
(RB=1855054)
Remove configure task for data template
(RB=1848734)
Adding JMX registration of D2 LoadBalancer components
27.7.12
-------
(RB=1851128)
Right size the DataObjectToObjectCache used for wrapped fields to avoid wasting memory.
27.7.11
-------
(RB=1847578)
Adding initial capacity to clientsToLoadBalance list and trackerClientMap to avoid expensive resize operations.
(RB=1843935)
Generate ToString, Equals and Hashcode for PathSegment
27.7.10
-------
(RB=1849070)
Introduce new protobuf codec
27.7.9
------
(RB=1845042)
Fix codec bugs and improve deserialization performance
27.7.8
------
(RB=1846176)
Add support to compare DataList without order, by sorting them with a comparator.
27.7.7
------
(RB=1845865)
Refactor disruptor code path to use common method for adding disrupt context
(RB=1843206)
Update GenerateRestModelTask to have an ordered set for setWatchedInputDirs input property.
27.7.6
------
(RB=1836131)
Move NO_RESPONSE to RestResponseFactory.
27.7.5
------
(RB=1837489)
Fixing JSON deserialization bug while setting partition weight via JMX using JSON format
27.7.4
------
(RB=1813571)
Add varargs constructor to primitive arrays.
27.7.3
------
(RB=1834552)
Fixing possible IC corruption issue in dealing with cached CompletionStage.
27.7.2
------
(RB=1831592)
Small improvement in test performance for the ClockExecutor
27.7.1
------
(RB=1818010)
Adding cache to store 'serviceName' in Request and 'protocolVersion' in RestClient.
(RB=1817516)
Do not allow to set weight through ZooKeeperAnnouncerJmx when D2 Server is announced to multiple partitions and Fix the bug of resetting the D2 Partition to Default Partition in Zookeeper
27.7.0
------
(RB=1809448)
Make ApplicationProtocolConfig constructor backward compatible to previous versions of netty by using the deprecated versions present in the previous versions.
27.6.8
------
(RB=1822085)
Update call tracking filter to handle batch finder
(RB=1809448)
LastSeenLoadBalancer: adding back again support for custom d2ServicePath on ZK. Add support for BackupStoreFilePath to LastSeen
27.6.7
------
(RB=1816822)
Rephrase PDL parser error messages to make them more clear
(RB=1809448)
Revert "LastSeenLoadBalancer: adding support for custom d2ServicePath on ZK. Add support for BackupStoreFilePath to LastSeen"
27.6.6
------
<<<<<<< HEAD
(RB=1809448)
LastSeenLoadBalancer: adding support for custom d2ServicePath on ZK. Add support for BackupStoreFilePath to LastSeen
=======
(RB=1890675)
Disable SymlinkAwareZooKeeperTest temporarily
27.6.5
------
(RB=1803600)
Add an configurable option to exclude some typeRef properties from translating into avro schema
27.6.4
------
(RB=1803237)
Fix bug when convert .pdsc to .avsc with override namespace prefix in DENORMALIZE model
27.6.3
------
(RB=1771744)
Streaming Timeout (Idle Timeout) Implementation - as detiled in the document @ https://docs.google.com/document/d/1s1dNjqoUkmo2TZ4mql4utHB2CZwe14JW8EPZFRmxOwA
(RB=1802974)
Add RestRequest support in Pipeline V2 and Convert FullyBuffered StreaRequest to RestRequest for better efficiency.
27.6.2
------
(RB=1807496)
Add a varargs constructor to *Array classes.
27.6.1
------
(RB=1807058)
Fix unreliable unit tests in TestRestClientRequestBuilder
(RB=1799751)
Fix PDL encoder logic for writing import statements
(RB=1794904)
Pegasus tmc release job is failing with out of memory error while runing r2-int-tests. Try to reduce the overall memory
footprint by having one netty eventloop group and cleaning up objects created in tests
(RB=1783117)
Add a config field in RestLiMethodConfig to validate query parameters
(RB=1788651)
Set the initial capacity of records and union templates to reduce unused memory.
(RB=1791278)
Int-tests for Alternative Key Server Implementation
(RB=1795608)
Fix PDL bug for encoding escaped package declarations
(RB=1794668)
Fix PDL bug for encoding schemas with empty namespaces
(RB=1793893)
Fix PDL bug for encoding self-referential schemas in DENORMALIZE mode
(RB=1793883)
Support aliases for named data schemas in PDL
27.5.3
------
(RB=1785332)
Temporarily add the "java" keyword poped from TypedUrn as excluded property keyword for pdsc to avsc schema translation
27.5.2
------
(RB=1790760)
Properly recover from corrupted uriValues in FileStore.
27.5.1
------
(RB=1785332)
remove "validate" property that brought by TypedUrn in avsc schemas
27.5.0
------
(RB=1779724)
Fix memory leak in test by properly shutting down HttpClientFactory in test data providers.
Revert commit 'f9d016b1b7f969c04368c0872b501e592c48c889' - that introduced a test failure
(RB=1780445)
Create constants for bounded load thresholds.
27.4.3
------
(RB=1775062)
Upgrade to Netty 4.1.39, Fix Deprecated Http2 APIs, Fix Netty Bug
Bumping the r2 integration test port to higher number as the tmc ORCA job is failing consistently due to port conflict
27.4.2
-------
(RB=1778282)
Precompiling regex Pattern instead of calling String.replaceAll
(RB=1770806)
Fix indentation for certain PDL encoder cases
(RB=1770797)
Extend PDL syntax to allow unions with aliases
(RB=1772174)
Fix TestDisruptFilter flaky test
27.4.1
-------
(RB=1767362)
[pgasus]: Control Pipeline V2 through a constant and a config value set through builder
(RB=1767362)
Revert "[Pegasus]: Control Pipeline V2 through a constant and a config value set through builder"
27.4.0
-------
(RB=1767362)
[Pegasus]: Control Pipeline V2 through a constant and a config value set through builder
(RB=1732683)
Adding guarantee that last operation (markUp/Down) will always win
Making more tolerant if a node is not found while deleting (since the goal is to delete it)
Giving the guarantee that markUp/Down will be called the minimum set of time to make collapse multiple markUp/markDown requests which would be idempotent
(RB=1729664)
Adding MinimumDelay mode for disrupting restli response flow
(RB=1729664)
Revert "Adding MinimumDelay mode for disrupting restli response flow"
(RB=1729664)
Adding MinimumDelay mode for disrupting restli response flow
(RB=1767362)
Control Pipeline V2 through a constant and a config value set through builder
27.3.19
-------
(RB=176009)
Refactor GenerateDataTemplateTask
27.3.18
-------
(RB=1709652)
Add consistent hash ring simulator to visualize request distribution and server load
(RB=1753170)
Update README.md
27.3.17
-------
(RB=1753446)
Fix Gradle caching regression introduced in 27.3.8.
(RB=1750381)
Fix a race condition bug in CompositeWriter.
27.3.16
-------
(RB=1751194)
Merge EntityStream Race Condition bug to New Unified Netty Pipeline
(RB=1637831)
R2 Netty Pipeline Unification
27.3.15
-------
(RB=1742644)
Fix for TypeRef field's annotation properties not propagated to the Record field containing it
27.3.14
-------
(RB=1748571)
Fix a backward-incompatible bug for setting ErrorDetails in RestliServiceException
(RB=1747751)
Fix open-source builds by removing certain Guava usages
27.3.13
-------
(RB=1745519)
Fix flaky unit test in BaseTestSmoothRateLimiter
(RB=1703809)
Add bounded-load consistent hashing algorithm implementation
27.3.12
-------
(RB=1738401)
Support special floating point values - NaN, NEGATIVE_INFINITY, POSITIVE_INFINITY in rest.li
27.3.11
-------
(RB=1703809)
(Revert pending DMRC review) Add bounded-load consistent hashing algorithm implementation
(RB=1743222)
Read Avro project properties at execution time.
(RB=1703809)
Add bounded-load consistent hashing algorithm implementation
27.3.10
-------
(RB=1739048)
Attachment streaming bug: java.lang.IllegalStateException: Attempt to write when remaining is 0
27.3.9
------
(RB=1665589)
Adding support for RestLiServer to accept RestLiResponse callback
27.3.8
------
(RB=1736316)
Move migrated plugin code to use the Java plugin.
(RB=1648868)
Migrate PegasusPlugin from Groovy to Java.
(RB=1735682)
Make project properties cacheable for GenerateAvroSchemaTask
27.3.7
------
(RB=1716092)
Remove content length http header if present for ServerCompressionFilter
27.3.6
------
(RB=1681705)
Add options to translate Pegasus Default fields to Avro Optioanl fields in SchemaTranslator, DataTranslator*
(RB=1718513)
Fix incorrect end of stream bug in MultipartMIMEInputStream
27.3.5
------
(RB=1716974)
Fix for Avro to Pegasus data translation union member key namespace override bug
27.3.4
------
(RB=1718616)
Expose requestcontext as well when constructing the validation schema
27.3.3
------
(RB=1710419)
Generate documentation for service errors and success statuses
(RB=1714212)
Modify scatter gather API to allow more flexibility in custom use case
27.3.2
------
(RB=1708609)
Guarantee the order of EntityStream callbacks in Netty Outbound Layer (downstream calls)
(RB=1709437)
Improvements to the streaming library.
- Simplify the logic in ByteStringWriter
- Make CompositeWriter threadsafe.
27.3.1
------
(RB=1711993)
Provide an extension point for constructing the validating schema
(RB=1691783)
Enable string sharing when generating LICOR binary
27.3.0
------
(RB=1694693)
Check compatibility of IDL service errors and schema field validators
27.2.0
------
(RB=1691149)
Fix $returnEntity response validation bug
(RB=1690521)
Adding switch for destroyStaleFiles
(RB=1690295)
In ServiceError interface integer http status code has been changed to HttStatus type
27.1.7
------
(RB=1690826)
Set TimingContext#complete log from warn to debug.
(RB=1687176)
Updated MockValidationErrorHandler to create BadRequest response
27.1.6
------
(RB=1675664)
Add the ability to specify the TimingImportance of a TimingKey to TimingContextUtil.
27.1.5
------
(RB=1660016)
Adding RampUp RateLimiter
27.1.4
------
(RB=1676246)
Client integration for service error standardization
(RB=1683486)
Added Service Unavailable Http Status Code 503 to RestStatus Class
(RB=1667220)
Added ErrorResponseValidationFilter for error response validation
(RB=1664597)
Add support for method parameter service errors and success status codes
(RB=1660528)
Server integration for service error standardization
(RB=1669927)
Revert "Migrate PegasusPlugin from Groovy to Java."
(RB=1648868)
Migrate PegasusPlugin from Groovy to Java.
(RB=1660568)
Fix stale build directory for dataTemplates
(RB=1660464)
Add logging for troubleshooting channel pool
27.1.3
------
(RB=1650555)
Add support for defining service errors, document service errors in the IDL
27.1.2
------
(RB=1656690)
Update GenerateAvroSchemaTask to allow overriding namespaces in the generated Avro files.
27.1.1
------
(RB=1648329)
Added ValidationErrorHandler interface.
(RB=1641341)
Migrate Pegasus utilities from Groovy to Java.
27.1.0
------
(RB=1648826)
Fix ChangedFileReportTask property annotations.
(RB=1648828)
Migrate CheckIdlTask from Groovy to Java.
(RB=1648831)
Migrate CheckRestModel task from Groovy to Java.
(RB=1648833)
Migrate CheckSnapshotTask from Groovy to Java.
(RB=1648834)
Migrate GenerateAvroSchemaTask from Groovy to Java.
(RB=1648835)
Migrate GenerateDataTemplateTask from Groovy to Java.
(RB=1648838)
Migrate GenerateRestClientTask from Groovy to Java.
(RB=1648840)
Migrate GenerateRestModelTask from Groovy to Java.
(RB=1648841)
Migrate PublishRestModelTask from Groovy to Java.
(RB=1648856)
Migrate TranslateSchemasTask from Groovy to Java.
27.0.18
-------
(RB=1647191)
Add removeNulls utility in DataMapUtils.
27.0.17
-------
(RB=1653521)
Don't invoke startMap and startList with null values since the normalization code in pemberly-api is overriding these methods and craps out with NPE on encountering a null parameter
27.0.16
-------
(RB=1639026)
Fixing error in CertificateHandler which was sending the message even if the handshake was failing, hiding the real SSL error
Adding cipher suite information to the server side's context
(RB=1642129)
Update ErrorResponse schema for error standardization
(RB=1641262)
Migrate Pegasus tests from Groovy to Java.
27.0.15
-------
(RB=1630415)
Include TypeInfo when adding compound key parts.
27.0.14
-------
(RB=1633001)
Guard against implementations of ProjectionDataMapSerializer returning null
27.0.13
-------
(RB=1630629)
Nuke option to force wildcard, and instead add in an option to pass in a custom projection mask param to mask tree data map serializer
27.0.12
-------
(RB=1621349)
added RestLiInfo.
27.0.11
-------
(RB=1619439)
Allow ' in the line style comment in PDL.
27.0.10
-------
(RB=1620347)
Restrict API in request to only allow forcing wildcard projections
27.0.9
------
(RB=1619727)
Make request options settable on the request. Remove the ability to set force wildcard projections on the requestOptions object since doing so may inadvertently cause shared final constant requestOptions objects to be modified, leading toside effects
27.0.8
------
(RB=1617105)
Add request option to override projections to wildcard
27.0.7
------
(RB=1611904)
Added remove query param support in AbstractRequestBuilder
27.0.6
------
(RB=1604462)
Update R2 REST Client to send RFC 6265 compliant cookie headers during HTTP/1.1 requests
(RB=1606595)
Update docgen to include the symbols for Enum types.
27.0.5
------
(RB=1595492)
Properly encoding empty datamap property value in PDL, and fix PDL nested properties parsing bug
(RB=1594513)
Check if originally declared inline in encoding include to JSON under PRESERVE mode
(RB=1590428)
Add default NoOp implementation for TraverseCallback.
27.0.4
------
(RB=1586326)
Escape keywords in namespace of inline schema
27.0.3
------
(RB=1572130)
Link parameter to its corresponding array item record in restli HTML documentation
27.0.2
------
(RB=1466187)
Optimize URI parsing inefficiencies
27.0.1
------
(RB=1573381)
Generate BatchFinder Example in HTML Doc without using ResourceModel
27.0.0
------
(RB=1570450)
Add default null value to translated union aliased members
26.0.19
-------
(RB=1564323)
Trimming each packageName value in the comma separated packageName to make sure that spaces around the commas are handled.
26.0.18
-------
(RB=1566293)
Make RestLiStreamCallbackAdapter non-final and public for extension in dash-cache
26.0.17
-------
(This version was used to produce custom builds. So skipping this to avoid confusion.)
26.0.16
-------
(RB=1552174)
Use ordered collection for classTemplateSpecs field
26.0.15
-------
(RB=1559338)
Add batch parameter for batchFinder in association template snapshot, to fix the incompatible issue that type cannnot be resolved
(RB=1550061)
Add HTML Documentation render for BatchFinder
26.0.14
-------
(RB=1560420)
add drain reader for unstructured data get
26.0.13
-------
(RB=1559736)
Tweak implementation a little to allow extension to support streaming normalized/deduped codecs in pemberly-api
26.0.12
-------
(RB=1559631)
Make some stuff more visible for overriding in pemberly-api
26.0.11
-------
(This version was used to produce custom builds. So skipping this to avoid confusion.)
26.0.10
------
(RB=1551561)
Rename KSON to LICOR aka LinkedIn Compact Object Representation
26.0.9
------
(RB=1546707)
Added missing accessors for request URI components
26.0.8
------
(RB=1497017)
Refactoring format of TimingKeys in R2 for better analysis
26.0.7
------
(This version was used to produce custom builds. So skipping this to avoid confusion.)
26.0.6
------
(RB=1543355)
Add timing marker for 2.0.0 URI parsing
26.0.5
------
(RB=1517716)
Add KSON support. KSON is a variant of JSON that serializes maps as lists, and supports optional compression of the payload using a shared symbol dictionary.
26.0.4
------
(RB=1527956)
Allow configurable basePath for d2 service znode under cluster path
26.0.3
------
(This version was used to produce custom builds. So skipping this to avoid confusion.)
26.0.2
------
(RB=1517698)
Allow RestLiValidation filter to accept a list of non-schema fields that should be ignored in the projection mask. Also fixes bug in the ProjectionMask applier that was not unescaping field names from masktree correctly.
26.0.1
------
(RB=1515224)
Provide the validation filter for BatchFinder
(RB=1496424)
Add client-side support for Batch Finder
26.0.0
------
(RB=1500413)
Delete restli-tools-scala module. Dependencies should be updated to `com.linkedin.sbt-restli:restli-tools-scala:0.3.9`.
25.0.21
-------
(RB=1506735)
Enable PDL in pegasus plugin through gradle config.
25.0.20
-------
(RB=1502671)
Fix NPE issue when d2Server announces without scheme