forked from airlift/airlift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
1439 lines (1018 loc) · 42 KB
/
CHANGES
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
256 and above
Moved to https://github.com/airlift/airlift/releases
255
- Add support for pluggable secret providers
254
- Fix invalid BOM
253
- Add support for response streaming to http client
- Add support for per-request timeouts in the http client
- Add support for per-request max content length to the http client
- Introduce modes for processing X-Forwarded-* headers on the server
- Update Jetty to 12.0.12
252
- Allow configuration classes to implement interface
- Add HTTP client destination idle timeout
- Set HTTP client idle timeout for HTTP/2
251
- Update jjwt to 0.12.6
250
- Remove JmxInspector
- Deprecate CacheStatsMBean
- Update Jetty to 12.0.11
- Update airbase to 158
- Add support for Optional injection into configuration classes
249
- Fix failure when system properties modified when loading configuration
- Update Jackson to 2.17.1
- Update Jersey to 3.1.7
- Support generic list and set injection into configuration classes
- Update Jetty to 12.0.10
- Update HdrHistogram to 2.2.2
- Allow configuring Jetty's header cache case-sensitiveness
- Reject X-Forwarded-* headers if http-server.process-forwarded is false
- Add HTTP protocol version to client traces
- Improve request/response metrics accuracy and correctness
- Update Airbase to 157
- Remove deprecation notices/annotations from `enableLegacyUriCompliance()`
- Add support for request body streaming to http client
- Add support for ALPN and encrypted HTTP/2 to the server and the client
- Sanitize JMX metric name
248
- Update Jetty to 12.0.9
247
- Fix failure in DelimitedRequestLogHandler when reporting early
request exceptions.
- Fail decoding with JsonCodec when content is not single JSON value.
Previously the codec decoded first JSON value only, ignoring the rest
of the payload.
- Support Guice providers in HTTP announcement custom properties.
- Allow only `@DefunctConfig` class without `@Config` annotation
- Update airbase to 156
- Update bouncycastle to 1.78.1
246
- Exclude getter-like record methods from JSON serialization
245
- Update bouncycastle to 1.78
- Add SUSPICIOUS_PATH_CHARACTERS to LegacyUriCompliance list
244
- Update jetty to 12.0.8
- Update byte-buddy to 1.14.13
- Update jackson to 2.17.0
- Restore previous recycler pool implementation in Jackson
- Update jaxb-runtime to 4.0.5
- Update HdrHistogram to 2.1.12
- Update log4j-to-slf4j to 2.23.1
- Update bouncycastle to 1.77
243
- Use pipe as separator for openmetrics object names config
- Add support for Jetty legacy URI compliance
- Fix deserializing JSON with large keys
- Update airbase to 153
242
- Update airbase to 151
- Update Jetty to 12.0.7 and EE10
- Add support for using virtual threads in the server
- Update byte-buddy to 1.14.12
- Update jjwt to 0.12.5
- Update logback to 1.5.1
240
- Update airbase to 148
- Update jjwt to 0.12.3
- Update jetty to 11.0.19
- Update byte-buddy to 1.14.10
- Update jersey to 3.1.3
- Update jaxb to 4.0.4
- Update airlift units to 1.10
- Upgrade logback to 1.4.14
- Update jackson to 2.16.1
- Update jersey to 3.1.5
239
- Deprecate attribute utility methods in Tracing
- Allow binding additional span processors
- Update jjwt to 0.12.2
238
- Update Jetty to 11.0.17
- Add node annotations to openmetrics labels
- Remove non-strict config from Bootstrap
- Allow Bootstrap configuration before creating injector
- Add property methods to AbstractConfigurationAwareModule
237
- Update to OpenTelemetry 1.30.1
236
- Do not localize Jakarta validation messages
- Remove escaping of HTML characters in JSON responses
- Add config for SO_KEEPALIVE for HTTP client
235
- Use annotation file for both traces and logs
234
- Move to Jakarta validation API
- Fail response if HttpStatusListener throws an exception
233
- Move to Jakarta dependencies
232
- HTTP client status listener
231
- Restore pre 2.15 Jackson string deserialization length limit
230
- Remove broken uncaught exception handler from Bootstrap
- Switch logging BufferedHandler to full non-blocking implementation
- Expose cache load count in JMX cache stats
229
- Strip trailing whitespace when redirecting standard output streams to log
- Add OpenTelemetry tracing module
- Add OpenTelemetry tracing to HTTP client
- Add OpenTelemetry tracing for JAX-RS
- Add OpenTelemetry trace context to JSON logging
- Add openmetrics and security-jwks to BOM
- Add getProperty method to AbstractConfigurationAwareModule
- Fix HTTP client request size statistic
228
- Exclude Hamcrest from jaxrs-testing
227
- Exclude jakarta.ws.rs-api from jaxrs
226
- Fix incorrect value reporting in sparse HLL
- Update to Airbase 134
- Update to Jetty 10.0.14
- Update to Jersey 2.39
225
- Upgrade to Slice 0.45
- Remove legacy logging implementation
224
- Add openmetrics module
- Add ByteBufferBodyGenerator for HTTP client
223
- Deprecate custom HTTP client BodyGenerator implementations
- Update to Jetty 10.0.13
222
- Update to Jetty 9.4.50.v20221201
- Use jetty-servlet-api instead of javax.servlet-api
221
- Fix hang in logger shutdown.
220
- Change target Java version to 17.
- Make CpuTimer user time collection optional.
- Add custom ticker support to CpuTimer.
- Add primitive methods to TDigest stats to avoid unnecessary boxing.
- Support configs bound with prefix in ConditionalModule.
219
- Report errors thrown from Guice modules during bootstraping together
with errors from config validator.
- Update to Jetty 9.4.49.v20220914.
- Upgrade to Airbase 130.
- Upgrade to JOL 0.16 in stats.
218
- Add method add(value, count) to the DistributionStat.
- Update to Byte Buddy 1.12.13.
217
- Auto detect records for Jackson serialization
216
- Remove dbpool module.
- Trim whitespace when loading configuration of log levels.
- Support Jersey programmatic resources.
- Add SwitchModule.
- Add AsyncSemaphore.processAll() method.
- Regenerate testing certificates using secure crypto algorithms.
215
- Upgrade to MySQL Connector/J 8.0.22 in dbpool.
- Remove Executed class from bootstrap module.
- Add "bootstrap.quiet" configuration property.
214
- Fix log file rename in launcher script.
212
- Fix log file rename on startup.
211
- Fix deadlock in logging error reporting.
210
- Add support for logging to a tcp socket by setting "log.path" to "tcp://host:port".
209
- Add @ConfigHidden annotation to prevent listing config values.
These can be shown via the "config.includeHidden" system property.
- Add http proxy support in http client
- Add IP_ENCODED_AS_HOSTNAME to internal address source. This ensures
compatibility with SNI when using automatic HTTPS configuration.
- Add new rolling log file implementation. The legacy implementation can be used
by setting the "log.legacy-implementation.enabled" config property.
- Fix Jetty SNI for Java 17 by removing support for literal IP addresses,
as these are not allowed per the TLS specification.
208
- Add support for basic JSON logging.
- Only bind HTTPS config for HTTP server when HTTPS is enabled.
- Make strict config default for Bootstrap. Non-strict is deprecated.
- Require explicit Guice bindings for Bootstrap.
- Require exact Guice binding annotations for Bootstrap.
207
- Java 11 is now required.
- Fix spurious reload of HTTP server SSL context after start.
- Fix support for SNI for single label domains and IP addresses.
- Fix JAXB error for OPTIONS requests to JAX-RS resources.
- Disable HTTP server admin port by default.
- Remove Kerberos support from HTTP client.
- Add automatic HTTPS configuration.
- Deprecate ConfigurationModule.installModules.
- Deprecate ConditionalModule.installModuleIf and introduce
ConditionalModule.conditionalModule.
- Remove support for joda-time from event module.
- Migrate to ListenableFuture<Void> for future signaling.
- Add Error Prone format string annotations to Logger.
206
- Fix SNI handling for HTTP server.
- Include server URL for HTTP client IOException.
- Log full stack trace for discovery client errors.
- Allow trailing slash for discovery client URI.
- Only reload HTTP server SSL context when files change.
205
- Add form data body builder for HTTP client.
- Add JSON Web Key Sets (JWKS) decoder and service.
- Update to Jetty 9.4.40.v20210413.
- Remove TestNG dependency from ConfigAssertions and testing module.
- Remove @Beta annotation from everything.
204
- Fix running ConfigAssertions on Java 16.
- Update to Jetty 9.4.39.v20210325.
- Allow using dashes in enum config values.
- Add support for list of strings as config values.
203
- Limit total size of HTTP client log.
- Remove HTTP method override filter.
202
- Update to Jetty 9.4.30.v20200611.
- Fix http client distribution JMX metrics.
201
- Allow expanding environment variables within config values.
200
- Add client certificate support to testing http server.
0.199
- Add certificate reloading to HTTP server. By default certificates are reloaded
once a minute. This can be controlled with 'http-server.https.ssl-context.refresh-time'.
- Add Guice binding for HTTP server client certificate requirement.
Note: client certificates are no longer requested by default.
- Move combine method to ConfigurationAwareModule.
- Add missing JAXB dependency for jaxrs-testing.
0.198
- Fix failures when inserting values into DecayTDigest.
- Use RejectedExecutionException in BoundedExecutor.
- Improve configuration error reporting.
0.197
- Change HttpUriBuilder to not render default port for HTTP and HTTPS.
- Add optional support Forwarded and X-Forwarded headers in proxied environments.
- Add Logging.clearLevel(loggerName) to unset a log level.
0.196
- Do not start JmxAgent by default.
- Fix liveness detection for launcher run command on Python 3.4+.
- Fix size estimation error when updating a t-digest.
- Deprecate Closeables.closeQuietly.
- Add @FileExists validation.
0.195
- Only forbid binder.install() for ConfigurationAwareModule.
- Publish Maven BOM.
0.194
- Fix DecayTDigest.rescale() handling of max of means.
- Fix potential IndexOutOfBounds in t-digest.
- Forbid direct binder.install() in AbstractConfigurationAwareModule.
- Add CacheStatsMBean for reporting Guava cache statistics.
- Add utility combine() method for ConfigurationAwareModule.
- Add support for setting process name on Linux aarch64.
- Allow passing additional JVM options in launcher.
- Clean up logging in LifeCycleManager.
0.193
- Move HTTP event client to new event-http module.
- Remove deprecated NullEventModule.
- Present explicit error messaging from launcher.py when Java is not installed.
- Update to Jetty 9.4.27.v20200227.
0.192
- Update to Jetty 9.4.26.v20200117.
0.191
- Do not require keystore password for HTTPS.
- Allow trailing slash in discovery URI configuration.
- Require host to be set in HttpUriBuilder.
0.190
- Allow using servlet filters for static resources.
0.189
- Move AsyncResponseHandler to JAX-RS module.
0.188
- Fix a Bootstrap regression that forced strict config mode.
- Fix IndexOutOfBounds when updating t-digest after copy.
- Fix mbeans page access over HTTPS.
- Limit total size of server.log.
- Remove status message support from HTTP client.
- Update to Jetty 9.4.20.v20190813.
0.187
- Fix thread safety for snapshot() in DecayCounter.
- Require keystore configuration for HTTP server when HTTPS is enabled.
- Limit total size of HTTP request log.
- Improve HLL merge performance.
- Add support for PEM encoded public keys in PKCS #1 format.
- Add method for duplicating a Distribution object.
- Add TestingClock.
0.186
- Allow setting config values from environment variables.
0.185
- Fix a bug introduced in 0.184 causing Enum's fromString(String) method to be
ignored.
- Convert to boolean strictly in configuration. For example "yes" value
will now be rejected, previously it would be parsed as false.
- Trim whitespace when loading configuration.
- When a class defines fromString(String) method, valueOf(String) method or
a String-parameterized constructor, attempt the conversion using only first
available conversion method.
- Validate placement of bean validation annotation in configuration classes.
- Add TDigest and DecayTDigest data structures.
- Use t-digest for Distribution and TimeDistribution.
0.184
- Match enums case-insensitively in configuration.
- Access logging levels finer than FINE.
- Record complete URI in HTTP request log.
- Handle exceptions from @PreDestroy methods.
- Remove checked exceptions from LifeCycleManager methods.
- Remove checked exceptions from Bootstrap.initialize().
- Fix @JsonSubTypes support for JsonCodec.
- Allow using localhost for SPNEGO canonical service name in HTTP client.
- Add support for printing Optional values in configuration.
- Use "----" for printing null values in configuration.
- Remove ConfigurationUtils testing utility.
0.183
- Fix rare failure when deserializing QuantileDigest instances.
0.182
- Retry SpnegoAuthentication on network related exceptions.
- Allow adding fractional weights to QuantileDigest.
- Show JVM config hint when JMX agent start fails on Java 9+.
- Skip starting JMX agent on Java 9+ if already configured.
0.181
- Fix JAX-RS warning for missing JAXB APIs on Java 9.
- Remove support for non-explicit JAX-RS bindings.
- Add config for HTTP server max response header size.
0.180
- Run life cycle methods on instances from providers.
- Log HTTP server requests even when body is not read.
- Hide HTTP Client's key/trust store passwords from logs.
- Add installModuleIf method to ConditionalModule with ability to
install module when condition is not met.
- Allow configuring Kerberos GSS name type for HTTP client.
- Exclude tar.gz files from server tarballs.
0.179
- Update to BVal 2.0.0
- Report server port when bind fails in HttpServer.
- Redirect from /resource to /resource/.
- Add future callback overloads that take an executor.
- Allow configuring the HTTP client Kerberos service principal pattern.
0.178
- Limit the size of HTTP server request log by default.
- Prevent ClassPathResourceHandler from using default encoding.
- Make joda-time dependency optional for JSON module.
- Return correct status code from JaxrsTestingHttpProcessor.
0.177
- Update to Jetty 9.4.14.v20181114.
0.176
- Upgrade to Jackson 2.9.7
- Fix extraction of level when deserializing QuantileDigest.
0.175
- Require at least one stream for HTTP/2 in HTTP server.
- Fix /v1/jmx HTML page loading in modern browsers.
- Fix loading of properties files when platform's default encoding is not
ASCII-compatible.
- Add configuration properties for request and response HTTP client buffer sizes.
- Install Jackson ParameterNamesModule module by default.
- Stop request log on HTTP server shutdown.
- Improve Quantile Digest serialization format to use less space and to
include a version number. The format is now stable and documented.
- Optimize performance of Quantile Digest histogram construction.
0.174
- Add configuration properties to include/exclude HTTPS cipher suites for
the HTTP client.
0.173
- Fix double logging bug in HTTP client.
- Update to Jetty 9.4.12.v20180830.
- Update the default value of the "http-server.https.excluded-cipher" config
property to match Jetty's default excluded cipher suites. Specifically, all
ciphers without forward secrecy, and all ciphers that use the RSA key exchange
algorithm are excluded by default. Consequently, TLS 1.0 or TLS 1.1 are no
longer supported by default.
0.172
- Update to Jetty 9.4.12.RC0.
- Add support for PKCS #1 private keys to PemReader.
0.171
- Periodically flush HTTP server and HTTP client logs.
- Fix HTTP client to preserve User-Agent when following redirects.
- Make following redirects configurable for HTTP client.
- Allow HTTP client to preserve Authorization when following redirects.
- Improve error message for unsupported key types in PemReader.
- Ensure there is a certificate that matches the private key in PemReader.
0.170
- Improve error handling for HTTP client and HTTP server PEM files.
- Add additional columns to the HTTP client and server logs. The new columns
provide detailed timing information for individual requests/responses.
- Update to Jetty 9.4.11.v20180605.
0.169
- Fix configuration error messages for prefixed configs.
- Add support for PEM encoded (PKCS #8) keystore and truststore to the
HTTP client and server.
- Add avg to TimeDistribution stat.
0.168
- Update to Jetty 9.4.10.RC1.
- Add SSL session timeout and SSL session cache size config parameters
to HTTP server.
0.167
- Add loadPublicKey to PemReader.
0.166
- Update to Guava 24.1 and Guice 4.2.
- Bind HttpServerConfig in TestingHttpServerModule to allow for HTTPS testing.
0.165
- Add log buffer size config to HTTP client.
- Add support for monitoring the logger queue size for HTTP client and server
- Allow disabling the compression of log files for HTTP client and server.
0.164
- Fix HTTP server log of trace tokens when using async responses.
- Do not require testing library when using ConfigAssertions.
- Add logging support to HTTP client. Logging is turned off by default
and it can be enabled with the "http-client.log.enabled" config parameter.
- Add JmxGcMonitor to track GC events. GC events are logged,
and aggregate time stats are published via JMX.
- Add MoreFutures.addSuccessCallback() methods.
- Make launcher compatible with Python 3.
- Add support for monitoring HTTP client/server connection stats.
* 0.163
- Add whenAnyCompleteCancelOthers for ListenableFuture.
* 0.162
- Fix shutdown of HTTP clients when lifecycle is stopped.
- Change queue size for HTTP asynchronous logging to be configurable.
* 0.161
- Allow binding config defaults for HTTP client threads.
- Make JsonFactory used for ObjectMapperProvider configurable.
* 0.160
- Use a dedicated thread pool for each HTTP client. The HTTP client binder
no longer has a withPrivateIoThreadPool() method as all pools are private.
- Use colon instead of space for LD_PRELOAD separator in launcher.
* 0.159
- Update to Jetty 9.4.8.v20171121.
- Fix building against JMX module on Java 9.
- Fix running on Java 9 due to a missing javax.annotations dependency.
- Fix HTTP/2 errors with JAX-RS by disabling remote async error notifications.
- Add HTTP/2 stream idle timeout config to HTTP server.
* 0.158
- Add support for setting process name on Linux ppc64le.
- Rename HTTP client selector config parameter to "http-client.selector-count".
- Add HTTP client option to perform connect operations in blocking mode.
- Add HTTP server option to disable recording request complete information.
- Reduce HTTP client executor load when using IP address literals.
* 0.157
- Fix Kerberos SPNEGO handling in HTTP client.
* 0.156
- Add HTTP client selector thread count config.
- Always ask for client certificates in HTTP server.
- Decrease discovery refresh wait time at startup.
- Remove workaround for Jetty client Kerberos realm bug.
- Add security module with support for reading and writing PEM files and
creating certificate signing requests.
* 0.155
- Remove LifeCycleManager shutdown hook when stop() is called.
* 0.154
- Upgrade to Airbase 74.
- Buffer log messages to improve throughput.
* 0.153
- Downgrade to Jetty 9.4.6.v20170531.
* 0.152
- Upgrade to Airbase 72.
- Add config for HTTP client timeout executor concurrency.
* 0.151
- Upgrade to Airbase 71.
- Upgrade to Jersey 2.26.
- Add instance sizes to HyperLogLog and SparseHll.
- Support SSL KeyManager password for HTTP server.
* 0.150
- Upgrade to Airbase 68.
- Upgrade to Jetty 9.4.7.v20170914.
- Prevent "Address already in use" for HTTP server.
- Remove @Inject from Logger.
- Add HTTP/2 input buffer size config.
- Add support for monitoring the Jetty client shared thread pool.
- Ensure Jetty client request doesn't live past synchronous return.
- Enable detailed dumps for Jetty thread pools, which will help getting
more information when debugging with the JMX dump operation.
- Add support for PostgreSQL in dbpool.
- Delete FileUtils from testing module.
- Make HttpClientModule non-public.
- Cleanup dependencies for various modules.
- Skip duplicate rows when printing configuration in Bootstrap.
- Support generalized suffix in Java version strings.
* 0.149
- Upgrade to Jetty 9.4.6.v20170531
- Fix UnknownFormatConversionException for config errors.
- Allow specifying etc directory for launcher.
* 0.148
- Add @ConfigSecuritySensitive annotation to prevent printing config values.
* 0.147
- Upgrade to Airbase 63
- Upgrade to Guava 21.0
- Add TestingHttpClient.Processor implementation that delegates to JAX-RS resource.
* 0.146
- Allow configuring secure random algorithm for HTTP client and server.
* 0.145
- Skip empty Optional fields in JSON serialization.
- Remove usage of deprecated APIs for all dependencies.
* 0.144
- Use JsonMapperParsingException in SmileMapper.
- Bean Validation is no longer performed for JAX-RS request objects.
* 0.143
- Deprecate usages of CompletableFuture or replace with ListenableFuture,
which is easier to use and less error prone.
- Add MoreFutures methods for ListenableFuture.
- Replace RuntimeIOException with UncheckedIOException in HTTP client.
- Fix sporadic failure due to thread-safety when performing Bean Validation.
- Support using java.time.Instant for event client.
- Validate scheme for HTTP client Request objects.
* 0.142
- Improve performance of QuantileDigest copy constructor, which
could cause contention in Distribution's copy constructor.
* 0.141
- Fix thread-safety issue in Distribution copy constructor.
* 0.140
- Fix rare bug when inserting into Sparse HLL that could result
in corruption.
- Improve performance and memory utilization for QuantileDigest.
- Improve performance when generating trace tokens.
- Add BasicAuthRequestFilter for HttpClient to pre-authenticate
requests with basic authentication.
- Add bindConfigGlobalDefaults to ConfigBinder to customize
defaults for bound config objects.
- Buffer HTTP responses in chunks to avoid allocating big byte arrays.
- Update QuantileDigest serialization to take and produce Slice objects.
* 0.139
- Upgrade to Jetty 9.3.13.M0
- Make jmxutils dependency optional for concurrent
- Add TempFile for use with try-with-resources
- Add unwrapCompletionException to MoreFutures
- Fix incorrect bucket computation in PauseMeter
* 0.138
- Add toJsonWithLengthLimit to JsonCodec
- Fix version check in JMX module to work with -ea Java versions
- Move type name to end of JsonCodec error message
- Add brackets around JSON in HTTP client response handler error messages
- Add utility to measure JVM and OS pauses
* 0.137
- Set ThreadContextClassLoader to null when loading bval
* 0.136
- Revert Jetty to 9.3.9.M1
* 0.135
- Add ThreadLocalCache
- Upgrade to Jackson 2.8.1
- Extract units to a standalone project
- Prevent self-supression in Closeables
* 0.134
- Add ConditionalModule
- Alternative JMX agent implementation for Java 8 vs 9
* 0.133
- Fix issue with IntelliJ mishandling of system-scoped dependencies
* 0.132
- Upgrade Jetty to 9.3.11.v20160721
* 0.131
- Statically configure logging for Jetty HTTP client
* 0.130
- Move Jetty and Jersey dependencies from Airbase
- Add getField method to EventTypeMetadata
* 0.129
- Add CpuTimer to stats
- Add FileBodyGenerator for HTTP client
- Add TrustStore configuration for HTTP client
- Expose EventTypeMetadata and EventFieldMetadata classes
- Remove requirement that nested event classes have no name
- Ignore EOFException (caused by client disconnect) while writing JSON HTTP response
- Upgrade Jetty to 9.3.11.M0. This fixes a race when using async responses
* 0.128
- Remove BoundedThreadPool
- Use default thread count for TestingHttpServerModule
- Support building prefixed configs in AbstractConfigurationAwareModule
* 0.127
- Remove all usage of ThreadGroup
- Make HTTP client response headers case insensitive
- Add HTTP/2 support in HTTP server for HTTP (not HTTPS)
- Add HTTP/2 support in HTTP client for HTTP (off by default)
- Add BoundedThreadPool
* 0.126
- Upgrade Jetty to 9.3.8.v20160314
- Upgrade Jersey to 2.22.2
- Add getQuantilesUpperBound() and getQuantilesLowerBound() to QuantileDigest
* 0.125
- Add JMX stats for HTTP response codes and failures
- Fix broken gzip handling in HTTP server
- Fix typo for keytab option in SpnegoAuthentication
- Fix thread leak in HTTP client when using anonymous pool
* 0.124
- Upgrade to jmxutils 1.19 which fixes issue with LoggingMBean
* 0.123
- Upgrade Jetty to 9.3.7.RC0
- Add ability for TestingHttpClient to send checked exceptions
- Use JDK Function for AsyncSemaphore
* 0.122
- Disable Jackson property mutator inference
- Add allAsList MoreFutures utility
* 0.121
- Fix configuration property to include and exclude HTTPS cipher suites
* 0.120
- Add configuration property to include and exclude HTTPS cipher suites
* 0.119
- Reduce contention during lifecycle tracking
- Add getMaxContentLength to HTTP client
* 0.118
- Improve messages for configuration errors
- Add JMX stat for days until HTTPS certificate expires
* 0.117
- Refresh Kerberos credentials for HTTP client before they expire
* 0.116
- Add configuration for HTTP selector and acceptor thread pools
- Fix config defaults bindings with annotation class
- Fix config defaults bindings for HTTP clients
* 0.115
- Add more MoreFutures utilities
* 0.114
- Make HttpServer logging more configurable
- Make configuration names for Logging and HttpServer logging match
* 0.113
- Change kerberos service principal format to correct serviceName@host
- Replace Guava Optional in TestingNodeModule and JettyHttpClient
- Report correct binding source for custom binders
* 0.112
- Always use keytab for kerberos auth
* 0.111
- Support JSON serialization of Java 7 types
- Add SPNEGO support to HTTP client
- Upgrade Jetty to 9.2.11.v20150529 to fix an issue that causes HTTP requests to hang
- Allow disabling console and file logging simultaneously
* 0.110
- Fix log levels being reset by garbage collection
- Reduce default http response buffer size from 64KB to zero bytes
- Add MoreFutures which contains utility methods for futures
* 0.109
- Add framework to override defaults of any configuration object
* 0.108
- Change default HTTP server accept queue size to 8000 from 50
- Upgrade to Airbase 38
- Exclude link local addresses in NodeInfo
* 0.107
- Remove dependency on SLF4J from log manager
* 0.106
- Upgrade to Airbase 36
- Upgrade to Jetty 9.2.11.M0
- Enable Jetty Client connection sweeper
- Reduce JettyHttpClient selectors to 2
* 0.105
- Upgrade to Airbase 35
- Upgrade to Jetty 9.2.10.v20150310
* 0.104
- Upgrade to Airbase 34
* 0.103
- Upgrade to Airbase 32
- Upgrade to Slice 0.10
* 0.102
- Fix bug when deserializing dense HLL v1 with no overflow bucket
- Verify HLLs have the same bucket count before merging them
- Add thread factory threads to a ThreadGroup
- Add more JettyHttpClient stats and debug operations
* 0.101
- New layout for dense HLL
- Fix bug in cardinality estimates produced by sparse HLL
- Expose request queue depth stats in HttpClient
* 0.100
- New algorithm and representation for sparse HLL
* 0.99
- Java 8 is now required
- Support JSON serialization of Java 8 types
* 0.98
- Expose JettyHttpClient dump methods to JMX
- Make HyperLogLog.addHash public
* 0.97
- Add AsyncSemaphore concurrent utility
- Add /v1/jmx/mbean/{objectName}/{attributeName} to get a single MBean attribute value