-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathNEWS
2213 lines (1648 loc) · 49.1 KB
/
NEWS
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
0.144.78
Update postgresql from 42.3.1 to 42.3.2
Update sortpom-maven-plugin from 3.0.0 to 3.0.1
0.144.77
Update build-helper-maven-plugin from 3.2.0 to 3.3.0
Update checker-qual from 3.19.0 to 3.21.1
Update duplicate-finder-maven-plugin from 1.5.0 to 1.5.1
Update jackson.version from 2.13.0 to 2.13.1
Update killbill-commons from 0.24.19 to 0.24.20
Update logback.version from 1.2.7 to 1.2.10
Update maven-release-plugin from 3.0.0-M4 to 3.0.0-M5
Update maven-scm-plugin from 1.12.0 to 1.12.2
Update mysql-connector-java from 8.0.27 to 8.0.28
Update slf4j.version from 1.7.32 to 1.7.33
Update spotbugs-annotations from 4.5.0 to 4.5.3
Update spotbugs-maven-plugin from 4.5.0.0 to 4.5.3.0
Update swagger.version from 1.6.3 to 1.6.4
0.144.76
Update killbill-base-plugin to 4.2.16
0.144.75
Update killbill-platform to 0.40.12
0.144.74
Update byte-buddy from 1.12.2 to 1.12.3
Update killbill-commons to 0.24.19
Update mockito-core from 3.11.2 to 4.1.0
Update redisson from 3.16.4 to 3.16.6
Update spotbugs-maven-plugin from 4.4.2.2 to 4.5.0.0
0.144.73
Update awaitility from 4.1.0 to 4.1.1
Update biz.aQute.bndlib from 6.0.0 to 6.1.0
Update byte-buddy from 1.11.20 to 1.12.2
Update checker-qual from 3.18.1 to 3.19.0
Update joda-time from 2.10.12 to 2.10.13
Update kotlin-stdlib-common from 1.5.31 to 1.6.0
Update logback from 1.2.6 to 1.2.7
Update mysql-connector-java from 8.0.26 to 8.0.27
Update netty from 4.1.69.Final to 4.1.70.Final
Update shiro from 1.3.2 to 1.8.0
Update postgresql from 42.2.24 to 42.3.1
Update redisson from 3.16.3 to 3.16.4
Update spotbugs-annotations from 4.4.2 to 4.5.0
Update spotbugs-maven-plugin from 4.4.2.1 to 4.4.2.2
0.144.72
Add commons-codec:commons-codec:1.15
Update ehcache from 3.9.6 to 3.9.7
Update spotbugs-maven-plugin from 4.4.1 to 4.4.2.1
0.144.71
Add io.netty:netty-transport-native-unix-common:4.1.69.Final
0.144.70
Add io.netty:netty-transport-native-epoll:4.1.69.Final:linux-x86_64
Add io.netty:netty-transport-native-kqueue:4.1.69.Final:osx-x86_64
0.144.69
Update killbill-base-plugin from 4.2.14 to 4.2.15
0.144.68
Update killbill-platform from 0.40.10 to 0.40.11
0.144.67
Update killbill-commons from 0.24.17 to 0.24.18
0.144.66
Add io.netty:netty-resolver:4.1.69.Final
0.144.65
Update assertj-core from 3.20.2 to 3.21.0
Update biz.aQute.bndlib from 5.3.0 to 6.0.0
Update byte-buddy from 1.11.12 to 1.11.20
Update checker-qual from 3.17.0 to 3.18.1
Update ehcache from 3.9.5 to 3.9.6
Update extra-enforcer-rules from 1.3 to 1.4
Update guava from 30.1.1-jre to 31.0.1-jre
Update influxdb-java from 2.21 to 2.22
Update jackson.version from 2.12.4 to 2.13.0
Update jersey from 2.34 to 2.35
Update jetty.version from 9.4.43.v20210629 to 9.4.44.v20210927
Update joda-time from 2.10.10 to 2.10.12
Update jooq from 3.14.13 to 3.14.15
Update killbill-commons from 0.24.16 to 0.24.17
Update kotlin-stdlib-common from 1.5.21 to 1.5.31
Update logback.version from 1.2.5 to 1.2.6
Update maven-enforcer-plugin from 3.0.0-M3 to 3.0.0
Update maven-javadoc-plugin from 3.3.0 to 3.3.1
Update maven-war-plugin from 3.3.1 to 3.3.2
Update netty.version from 4.1.66.Final to 4.1.69.Final
Update postgresql from 42.2.23 to 42.2.24
Update redisson from 3.16.1 to 3.16.3
Update spotbugs-annotations from 4.4.1 to 4.4.2
Update spotbugs-maven-plugin from 4.2.0 to 4.4.1
Update swagger.version from 1.6.2 to 1.6.3
Switch from org.skife.config:config-magic to org.kill-bill.commons:killbill-config-magic
0.144.64
Update killbill-client from 1.2.4 to 1.2.5
0.144.63
Update killbill-platform from 0.40.9 to 0.40.10
0.144.62
Update killbill-platform from 0.40.8 to 0.40.9
0.144.61
Update killbill-base-plugin from 4.2.13 to 4.2.14
0.144.60
Update killbill-commons from 0.24.15 to 0.24.16
0.144.59
Update byte-buddy from 1.11.8 to 1.11.12
Update checker-qual from 3.16.0 to 3.17.0
Update ehcache from 3.9.4 to 3.9.5
Update git-commit-id-plugin from 4.0.5 to 4.9.10
Update janino from 3.1.4 to 3.1.6
Update jaxb-runtime from 2.3.4 to 2.3.5
0.144.58
Update killbill-client from 1.2.3 to 1.2.4
0.144.57
Update killbill-platform from 0.40.7 to 0.40.8
0.144.56
Update killbill-base-plugin from 4.2.12 to 4.2.13
0.144.55
Downgrade jooq to 3.14.13
0.144.54
Update killbill-commons from 0.24.14 to 0.24.15
0.144.53
Add com.sun.activation:jakarta.activation 2.0.1
Add io.jsonwebtoken:jjwt-api:0.11.2
Add io.jsonwebtoken:jjwt-impl:0.11.2
Add io.jsonwebtoken:jjwt-jackson:0.11.2
Add org.glassfish.jaxb:jaxb-runtime 2.3.4
Update assertj-core from 3.19.0 to 3.20.2
Update async-http-client from 2.12.1 to 2.12.3
Update awaitility from 4.0.3 to 4.1.0
Update byte-buddy from 1.10.21 to 1.11.8
Update checker-qual from 3.13.0 to 3.16.0
Update commons-compress from 1.20 to 1.21
Update commons-io from 2.8.0 to 2.11.0
Update commons-lang3 from 3.11 to 3.12.0
Update concurrent from 202 to 206
Update ehcache from 3.9.3 to 3.9.4
Update git-commit-id-plugin from 4.0.3 to 4.0.5
Update guava from 30.1-jre to 30.1.1-jre
Update HikariCP from 4.0.2 to 4.0.3
Update jackson from 2.12.3 to 2.12.4
Update janino from 3.1.3 to 3.1.4
Update javassist from 3.27.0-GA to 3.28.0-GA
Update jetty from 9.4.40.v20210413 to 9.4.43.v20210629
Update jooby from 1.6.8 to 1.6.9
Update jooq from 3.14.7 to 3.15.1
Update kotlin-stdlib-common from 1.4.30 to 1.5.21
Update log from 205 to 206
Update logback from 1.2.3 to 1.2.5
Update mariadb-java-client from 2.7.2 to 2.7.3
Update maven-gpg-plugin from 1.6 to 3.0.1
Update maven-javadoc-plugin from 3.2.0 to 3.3.0
Update maven-release-plugin from 3.0.0-M1 to 3.0.0-M4
Update mockito-core from 3.9.0 to 3.11.2
Update mysql-connector-java from 8.0.23 to 8.0.26
Update netty from 4.1.63.Final to 4.1.66.Final
Update postgresql from 42.2.20 to 42.2.23
Update redisson from 3.15.0 to 3.16.1
Update slf4j from 1.7.30 to 1.7.32
Update snakeyaml from 1.27 to 1.29
Update sortpom-maven-plugin from 2.13.1 to 3.0.0
Update spotbugs-annotations from 4.2.1 to 4.3.0
Update testng from 7.3.0 to 7.4.0
Add javac-release profile for JDK11+ builds
0.144.52
Update killbill-base-plugin from 4.2.11 to 4.2.12
0.144.51
Add org.objenesis:objenesis:3.2
Update checker-qual from 3.10.0 to 3.13.0
Update easymock from 4.2 to 4.3
Update ehcache from 3.9.0 to 3.9.3
Update jackson from 2.12.1 to 2.12.3
Update jersey from 2.33 to 2.34
Update jetty from 9.4.36.v20210114 to 9.4.40.v20210413
Update killbill-client from 1.2.2 to 1.2.3
Update killbill-platform from 0.40.6 to 0.40.7
Update log from 202 to 205
Update mockito-core from 3.7.7 to 3.9.0
Update netty from 4.1.59.Final to 4.1.63.Final
Update postgresql from 42.2.19 to 42.2.20
0.144.50
Update biz.aQute.bndlib from 5.2.0 to 5.3.0
Update killbill-commons from 0.24.13 to 0.24.14
Update manifold from 2020.1.45 to 2021.1.11
0.144.49
Update byte-buddy from 1.10.19 to 1.10.21
Update HikariCP from 4.0.1 to 4.0.2
Update jersey from 2.32 to 2.33
Update junit from 4.13.1 to 4.13.2
Update killbill-commons from 0.24.11 to 0.24.13
Update netty from 4.1.58.Final to 4.1.59.Final
Update postgresql from 42.2.18 to 42.2.19
0.144.48
Update killbill-client from 1.2.1 to 1.2.2
0.144.47
Update killbill-platform from 0.40.5 to 0.40.6
0.144.46
Update killbill-base-plugin from 4.2.10 to 4.2.11
0.144.45
Update killbill-commons from 0.24.11 to 0.24.12
0.144.44
Update checker-qual from 3.9.1 to 3.10.0
Update HikariCP from 4.0.0 to 4.0.1
Update janino from 3.1.2 to 3.1.3
Update jersey from 1.19.4 to 2.32
Update joda-time from 2.10.9 to 2.10.10
Update jooq from 3.14.4 to 3.14.7
Update kotlin-stdlib-common from 1.4.21 to 1.4.30
Update mariadb-java-client from 2.7.1 to 2.7.2
Update redisson from 3.14.1 to 3.15.0
Update snappy-java from 1.1.8.2 to 1.1.8.4
Update spotbugs-annotations from 4.2.0 to 4.2.1
0.144.43
Update assertj-core from 3.18.1 to 3.19.0
Update checker-qual from 3.8.0 to 3.9.1
Update HikariCP from 3.4.5 to 4.0.0
Update jetty from 9.4.35.v20201120 to 9.4.36.v20210114
Update mockito-core from 3.6.28 to 3.7.7
Update mysql-connector-java from 8.0.22 to 8.0.23
Update sortpom-maven-plugin from 2.12.0 to 2.13.1
0.144.42
Update killbill-base-plugin from 4.2.9 to 4.2.10
0.144.41
Update killbill-platform from 0.40.4 to 0.40.5
0.144.40
Update killbill-commons from 0.24.9 to 0.24.11
Update netty from 4.1.56.Final to 4.1.58.Final
0.144.39
No functional change
0.144.38
Update assertj-core from 3.18.0 to 3.18.1
Update byte-buddy from 1.10.18 to 1.10.19
Update checker-qual from 3.7.0 to 3.8.0
Update compress-lzf from 1.0.4 to 1.1
Update concurrent from 201 to 202
Update config from 1.4.0 to 1.4.1
Update git-commit-id-plugin from 4.0.2 to 4.0.3
Update guava from 30.0-jre to 30.1-jre
Update influxdb-java from 2.20 to 2.21
Update jackson from 2.11.3 to 2.12.1
Update jetty from 9.4.33.v20201020 to 9.4.35.v20201120
Update joda-time from 2.10.6 to 2.10.9
Update jooq from 3.14.1 to 3.14.4
Update kotlin-stdlib-common from 1.4.0 to 1.4.21
Update log from 201 to 202
Update mariadb-java-client from 2.7.0 to 2.7.1
Update mockito-core from 3.5.15 to 3.6.28
Update netty from 4.1.53.Final to 4.1.56.Final
Update redisson from 3.13.5 to 3.14.1
Update snappy-java from 1.1.8 to 1.1.8.2
Update spotbugs-annotations from 4.1.4 to 4.2.0
Update spotbugs-maven-plugin from 4.1.4 to 4.2.0
0.144.37
Update killbill-platform to 0.40.4
0.144.36
Update killbill-base-plugin to 4.2.9
0.144.35
Update killbill-commons -> 0.24.9
0.144.34
Update assertj-core from 3.17.2 to 3.18.0
Update biz.aQute.bndlib from 5.1.2 to 5.2.0
Update byte-buddy from 1.10.16 to 1.10.18
Update checker-qual from 3.6.1 to 3.7.0
Update concurrent from 200 to 201
Update duplicate-finder-maven-plugin from 1.4.0 to 1.5.0
Update guava from 29.0-jre to 30.0-jre
Update jetty from 9.4.31.v20200723 to 9.4.33.v20201020
Update jooq from 3.13.4 to 3.14.1
Update junit from 4.13 to 4.13.1
Update mockito-core from 3.5.9 to 3.5.15
Update mysql-connector-java from 8.0.21 to 8.0.22
Update netty from 4.1.52.Final to 4.1.53.Final
Update postgresql from 42.2.16 to 42.2.18
Update redisson from 3.13.4 to 3.13.5
Update snappy-java from 1.1.7.7 to 1.1.8
Update spotbugs-annotations from 4.1.3 to 4.1.4
Update spotbugs-maven-plugin from 4.0.4 to 4.1.4
0.144.33
Update killbill-platform -> 0.40.3
0.144.32
Update killbill-base-plugin -> 4.2.8
0.144.31
Update killbill-commons -> 0.24.8
0.144.30
Update killbill-commons -> 0.24.7
Update assertj-core from 3.17.1 to 3.17.2
Update byte-buddy from 1.10.14 to 1.10.16
Update commons-io from 2.7 to 2.8.0
Update jackson from 2.11.2 to 2.11.3
Update jersey from 1.19.3 to 1.19.4
Update jetty from 9.4.30.v20200611 to 9.4.31.v20200723
Update log from 200 to 201
Update mariadb-java-client from 2.6.2 to 2.7.0
Update metrics from 3.2.3 to 3.2.6
Update netty from 4.1.51.Final to 4.1.52.Final
Update snakeyaml from 1.26 to 1.27
Update spotbugs-annotations from 4.1.2 to 4.1.3
Update spring from 2.0.2 to 2.5.6
Update swagger from 1.5.21 to 1.6.2
Update wiremock from 2.27.1 to 2.27.2
Update git-commit-id-plugin from 4.0.1 to 4.0.2
Update maven-resources-plugin from 3.1.0 to 3.2.0
Update maven-scm-manager-plexus from 1.8.1 to 1.11.2
Update maven-scm-provider-gitexe from 1.8.1 to 1.11.2
0.144.29
Update killbill-client to 1.2.1
0.144.28
Update killbill-base-plugin to 4.2.7
0.144.27
Update killbill-platform to 0.40.2
0.144.26
Update killbill-base-plugin to 4.2.6
0.144.25
Update killbill-commons to 0.24.6
0.144.24
Add commons-compress 1.20
Add checker-qual 3.6.1
Add flyway-core 4.0
Add influxdb-java 2.20
Add kotlin-stdlib-common 1.4.0
Add slf4j-log4j12 1.7.30
Add wiremock 2.27.1
Update assertj-core from 3.16.1 to 3.17.1
Update byte-buddy from 1.10.13 to 1.10.14
Update commons-lang3 from 3.10 to 3.11
Update ehcache from 3.8.1 to 3.9.0
Update HikariCP from 2.3.13 to 3.4.5
Update io.airlift:concurrent from 0.198 to 200
Update io.airlift:log from 0.198 to 200
Update jakarta.activation-api from 1.2.1 to 1.2.2
Update jakarta.xml.bind-api from 2.3.2 to 2.3.3
Update jackson from 2.11.1 to 2.11.2
Update jooby from 1.4.0 to 1.6.8
Update jooq from 3.9.1 to 3.13.4
Update mariadb-java-client from 1.7.4 to 2.6.2
Update mockito-core from 3.4.4 to 3.5.9
Update mysql-connector-java from 5.1.46 to 8.0.21
Update netty from 4.1.50.Final to 4.1.51.Final
Update postgresql from 42.1.4 to 42.2.16
Update redisson from 3.13.2 to 3.13.4
Update snappy-java from 1.1.7.6 to 1.1.7.7
Update spotbugs-annotations from 4.0.6 to 4.1.2
Update spring from 2.0.1 to 2.0.2
Update spring-mock from 2.0.1 to 2.0.8
Update testng from 7.1.0 to 7.3.0
0.144.23
Update killbill-client to 1.2.0
0.144.22
Update killbill-platform to 0.40.1
0.144.21
Update killbill-base-plugin to 4.2.5
0.144.20
Update killbill-commons to 0.24.5
0.144.19
Excluding logging frameworks from embedded-redis
Fix byte-buddy conflicts
Fix jaxb conflicts
Set Netty version to 4.1.50.Final
Introduce check.skip-dependency-versions and check.fail-dependency-versions
0.144.18
rat: ignore documentation
0.144.17
Update killbill-base-plugin to 4.2.4
0.144.16
Introduce check.spotbugs-exclude-filter-file
Introduce osgi.extra-import
0.144.15
Rename surefire.skipTests to skipTests
Update killbill-base-plugin to 4.2.3
0.144.14
Update killbill-base-plugin to 4.2.2
0.144.13
Update killbill-platform to 0.40.0
0.144.12
Review default osgi.import property
0.144.11
Set default value for osgi.activator
Introduce surefire.skipTests (false by default)
0.144.10
Update killbill-base-plugin to 4.2.1
0.144.9
Update killbill-commons to 0.24.4
0.144.8
Update async-http-client to 2.12.1 (groupId is now org.asynchttpclient)
Update maven-bundle-plugin to 4.2.1
0.144.7
Update killbill-commons to 0.24.3
0.144.6
Update jetty from 9.2.10.v20150310 to 9.4.30.v20200611
Update mockito from 3.4.0 to 3.4.4
Upgrade various Maven plugins
0.144.5
Update killbill-commons to 0.24.2
0.144.4
Run maven-javadoc-plugin earlier in the build (before gpg plugin)
0.144.3
Fix sonatype-oss-release profile
Update killbill-commons to 0.24.0
0.144.2
Get rid of killbill-commons-for-tests dependencies
0.144.1
Downgrade joda-money from 1.0.2 to 1.0.1
Review plugins in main build
0.144.0
Update ST4 from 4.0.8 to 4.3.1
Update awaitility from 2.0.0 to 4.0.3
Update c3p0 from 0.9.5 to 0.9.5.5
Update cache-api from 1.0.0 to 1.1.1
Update cglib-nodep from 3.1 to 3.3.0
Update classmate from 1.1.0 to 1.5.1
Update com.typesafe:config from 1.3.2 to 1.4.0
Update commons-email from 1.2 to 1.5
Update commons-io from 2.5 to 2.7
Update commons-lang3 from 3.2.1 to 3.10
Update derby from 10.10.1.1 to 10.14.2.0
Update easymock from 3.3 to 4.2
Update ehcache from 3.3.1 to 3.8.1
Update embedded-redis from 0.7.2 to 0.7.3
Update guava from 26.0-jre to 29.0-jre
Update guice from 4.1.0 to 4.2.3
Update h2 from 1.4.194 to 1.4.200
Update hamcrest from 1.3 to 2.2
Update io.airlift:units from 1.0 to 1.6
Update jackson from 2.9.8 to 2.11.1
Update janino from 3.1.0 to 3.1.2
Update jasypt from 1.9.2 to 1.9.3
Update javassist from 3.21.0-GA to 3.27.0-GA
Update jmustache from 1.5 to 1.15
Update jmxutils from 1.19 to 1.21
Update joda-money from 0.12 to 1.0.2
Update joda-time from 2.9.9 to 2.10.6
Update junit from 4.12 to 4.13
Update low-gc-membuffers from 1.1.1 to 1.2.0
Update mockito from 1.10.19 to 3.4.0
Update redisson from 3.10.0 to 3.13.2
Update slf4j from 1.7.25 to 1.7.30
Update snakeyaml from 1.23 to 1.26
Update spotbugs-annotations from 4.0.4 to 4.0.6
Update testing-mysql-server from 8.0.12-2 to 8.0.12-5
Update testng from 6.14.3 to 7.1.0
Update killbill-base-plugin -> 4.2.0
Remove com.google.code.findbugs:annotations
Switch from cglib:cglib to cglib:cglib-nodep
Switch from org.mockito:mockito-all to org.mockito:mockito-core
Upgrade various Maven plugins
Remove jdk16, jdk17, and jdk18 profiles (target 1.8 is the default)
Remove reporting section
Remove dependency on org.sonatype.oss:oss-parent
0.143.63
Update killbill-platform -> 0.39.17
0.143.62
Update killbill-platform -> 0.39.16
0.143.61
Update killbill-base-plugin -> 4.1.0
0.143.60
Update killbill-platform -> 0.39.15
0.143.59
Update killbill-commons -> 0.23.11
0.143.58
Update killbill-platform -> 0.39.14
0.143.57
Update killbill-commons -> 0.23.10
0.143.56
Upgrade testing-mysql-server packages
0.143.55
No changes
0.143.54
Update killbill-commons -> 0.23.9
0.143.53
Update killbill-commons -> 0.23.8
0.143.52
Update killbill-platform 0.39.12 -> 0.39.13
0.143.51
Update killbill-plugin-api 0.26.3 -> 0.26.4
0.143.50
Update killbill-platform -> 0.39.12
0.143.49
Update killbill-base-plugin -> 4.0.3
0.143.48
Update killbill-platform -> 0.39.11
0.143.47
Update killbill-commons -> 0.23.7
0.143.46
Update killbill-plugin-api -> 0.26.3
0.143.45
Update killbill-api -> 0.53.17
0.143.44
Update killbill-commons -> 0.23.6
Update killbill-platform -> 0.39.10
0.143.43
Update killbill-base-plugin -> 4.0.2
0.143.42
Update killbill-api -> 0.53.16
Update metrics-guice -> 3.2.2
Update metrics -> 3.2.3
Update janino -> 3.1.0
0.143.41
Update killbill-platform -> 0.39.9
0.143.40
Update killbill-api -> 0.53.15 and killbill-client -> 1.1.9
0.143.39
Update killbill-api -> 0.53.14
0.143.38
Update killbill-api -> 0.53.13
0.143.37
Update killbill-platform -> 0.39.8
0.143.36
Update killbill-commons -> 0.23.5
Add dependency snappy-java
0.143.35
Update killbill-base-plugin -> 4.0.0
0.143.34
Update killbill-plugin-api -> 0.26.2
0.143.33
Update killbill-api -> 0.53.12 and killbill-client -> 1.1.8
0.143.32
Update killbill-commons -> 0.23.4 and killbill-api -> 0.53.11
0.143.31
Update killbill-client -> 1.1.7
0.143.30
Update killbill-platform -> 0.39.7
0.143.29
Update killbill-commons -> 0.23.3
0.143.28
Update killbill-api -> 0.53.10
0.143.27
Update killbill-client -> 1.1.6, killbill-api -> 0.53.9
0.143.26
Update mariadb-java-client -> 1.7.4 (fix for https://jira.mariadb.org/browse/CONJ-604)
0.143.25
Update killbill-api -> 0.53.8 & killbill-client -> 1.1.5
0.143.24
Update killbill-platform -> 0.39.6
0.143.23
Update killbill-plugin-api -> 0.26.1
0.143.22
Update killbill-api to 0.53.7 and killbill-client to 1.1.4
0.143.21
Update killbill-api -> 0.53.6 and killbill-client -> 1.1.3
0.143.20
Update killbill-platform -> 0.39.5
0.143.19
Update killbill-commons -> 0.23.2
0.143.18
Update killbill-platform -> 0.39.4
0.143.17
Update killbill-commons -> 0.23.1
0.143.16
Update killbill-api -> 0.53.5
0.143.15
Update killbill-platform -> 0.39.3
0.143.14
Update killbill-api -> 0.53.4
0.143.13
Update killbill-api -> 0.53.3
0.143.12
Update killbill-client -> 1.1.2, killbill-api.version -> 0.53.2
0.143.11
Update killbill-client -> 1.1.1
0.143.10
Update killbill-client -> 1.1.0
0.143.9
Update killbill-api -> 0.53.1
0.143.8
Update killbill-platform -> 0.39.2
0.143.7
update killbill-commons -> 0.23.0
0.143.6
Update killbill-commons -> 0.22.5
0.143.5
Update killbill-commons -> 0.22.4
0.143.4
Update killbill-platform -> 0.39.1
0.143.3
Update jackson version for redisson change and fix issues with dependency check
0.143.2
Update killbill-platform -> 0.39.0
0.143.1
Update killbill-plugin-api -> 0.26.0
0.143.0
Update version for work against kb 0.21
0.142.8
Update Redisson to 3.10.0
0.142.7
Update killbill-commons -> 0.22.3
Update killbill-platform -> 0.38.3
0.142.6
Update killbill-commons -> 0.22.2
0.142.5
Update Guava to 26.0-jre
Update Jackson to 2.9.7
Update Swagger to 1.5.21
Update javassist to 3.21.0-GA
Add com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.9.7
Add it.ozimov:embedded-redis:0.7.2
Add org.redisson:redisson:3.8.2
Switch to jdk18 profile by default
0.142.4
Update killbill-platform -> 0.38.2
0.142.3
Update killbill-platform -> 0.38.1
0.142.2
Update killbill-commons -> 0.22.1
0.142.1
Update killbill-platform -> 0.38.0
0.142.0
Initial release for Kill Bill 0.20.x
0.141.97
Update killbill-base-plugin -> 2.4.0
0.141.96
Swagger UI upgrade
0.141.95
Update killbill-client -> 1.0.6
0.141.94
Update killbill-base-plugin -> 2.3.6
0.141.93
Update killbill-platform -> 0.37.19
0.141.92
Update killbill-commons -> 0.21.15
0.141.91
Update killbill-api -> 0.51.27
0.141.90
Update killbill-base-plugin -> 2.3.5
0.141.89
Update killbill-api -> 0.51.26
0.141.88
Update killbill-base-plugin -> 2.3.4
0.141.87
Update killbill-client -> 1.0.5
0.141.86
Update killbill-client -> 1.0.4
0.141.85
Update killbill-platform -> 0.37.18
0.141.84
Update killbill-base-plugin -> 2.3.3
0.141.83
Update killbill-platform -> 0.37.17
0.141.82
Update killbill-plugin-api -> 0.24.8
0.141.81
Update killbill-api -> 0.51.25
0.141.80
Update killbill-platform -> 0.37.16
0.141.79
Update killbill-api.version -> 0.51.24
0.141.78
Update killbill-base-plugin -> 2.3.2
0.141.77
Update Jooby to 1.4.0
0.141.76
Update killbill-client -> 1.0.3 and killbill-api -> 0.51.23
0.141.75
Update killbill-client -> 1.0.2
0.141.74
Update killbill-platform -> 0.37.15
0.141.73
Update killbill-commons -> 0.21.14
0.141.72
Update TestNG -> 6.14.3
Add org.jasypt:jasypt:1.9.2
0.141.71
Update killbill-client -> 1.0.1
0.141.70
Update killbill-api -> 0.51.22
0.141.69
Update killbill-client -> 1.0.0
0.141.68
Update killbill-api -> 0.51.21
0.141.67
Update killbill-commons -> 0.21.13
0.141.66
Update killbill-base-plugin -> 2.3.1
0.141.65
Update killbill-client -> 0.41.13
0.141.64
Update killbill-api -> 0.51.20 and killbill-commons -> 0.21.12
0.141.63
Update killbill-api -> 0.51.19
0.141.62
Update killbill-api -> 0.51.18 and killbill-client -> 0.41.12
0.141.61
Update killbill-client -> 0.41.11
0.141.60
Update killbill-api -> 0.51.17
0.141.59
Update killbill-platform -> 0.37.14
0.141.58
Update killbill-api -> 0.51.16
0.141.57
Update killbill-client -> 0.41.10
0.141.56
Update killbill-api -> 0.51.15
0.141.55
Update killbill-platform -> 0.37.13
0.141.54
Update killbill-base-plugin.version -> 2.3.0
0.141.53
Update killbill-plugin-api -> 0.24.7
0.141.52
Update killbill-api -> 0.51.14
0.141.51
Update killbill-platform -> 0.37.12
0.141.50
Add swagger code gen exclude files for rat plugin
0.141.49
Update killbill-base-plugin.version -> 2.2.0
0.141.48
Update killbill-plugin-api -> 0.24.6
0.141.47
Update killbill-api -> 0.51.13
Update killbill-plugin-api -> 0.24.5
0.141.46
Update killbill-platform -> 0.37.11
Update killbill-client -> 0.41.9
0.141.45
Update killbill-commons -> 0.21.10
0.141.44
Update killbill-api -> 0.51.12
Update killbill-client -> 0.41.8
0.141.43
Update killbill-platform -> 0.37.10
0.141.42
Update killbill-commons -> 0.21.9
0.141.41
Add missing dependencies for swagger-jaxrs and swagger-models
0.141.40
Update killbill-platform -> 0.37.9
0.141.39
Update killbill-commons -> 0.21.8
0.141.38
Update killbill-platform -> 0.37.8
0.141.37
Update killbill-commons -> 0.21.7
0.141.36
Update killbill-platform -> 0.37.7
0.141.35
Update killbill-commons -> 0.21.6
0.141.34
Update killbill-commons-for-tests version
0.141.33
Update killbill-client -> 0.41.7
0.141.32
Update killbill-platform -> 0.37.6
0.141.31
Update killbill-commons -> 0.21.5
0.141.30
Update killbill-api -> 0.51.11
0.141.29
Update killbill-base-plugin.version -> 2.1.0
Add org.yaml:snakeyaml:1.18
Add profiles to run integration tests
0.141.28
Update killbill-commons -> 0.21.4
0.141.27
Update killbill-client -> 0.41.6
0.141.26
Update killbill-api -> 0.51.10
0.141.25
Update killbill-platform -> 0.37.5
0.141.24
Update killbill-api -> 0.51.9
0.141.23
Update killbill-commons -> 0.21.3
0.141.22
Update killbill-platform -> 0.37.4
0.141.21
Update killbill-commons -> 0.21.2
0.141.20
Update killbill-api -> 0.51.8
Update killbill-client -> 0.41.5
0.141.19
Update killbill-platform -> 0.37.3
0.141.18
Update killbill-commons for tests -> 0.21.1
0.141.17
Update killbill-base-plugin -> 2.0.0