-
Notifications
You must be signed in to change notification settings - Fork 25
/
RELEASE-NOTES.txt
1424 lines (996 loc) · 65.6 KB
/
RELEASE-NOTES.txt
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
Apache Commons Parent 78
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 78.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 778: Maintenance and update dependencies.
New features
------------
* Add property commons.asm.version with the value "9.7.1". Thanks to Gary Gregory.
* Add property commons.taglist.version with the value "3.2.1"; fixes https://github.com/mojohaus/taglist-maven-plugin/issues/165. Thanks to Gary Gregory.
Changes
-------
* Fix spotbugs:check on Java 24-ea. Thanks to Gary Gregory.
* Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.5.0 to 3.5.1. Thanks to Gary Gregory.
* Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.0 to 3.5.1. Thanks to Gary Gregory.
* Bump org.apache.maven.plugins:maven-surefire-report-plugin from 3.5.0 to 3.5.1. Thanks to Gary Gregory.
* Bump org.ow2.asm:asm from 9.7.0 to 9.7.1. Thanks to Gary Gregory.
* Bump org.cyclonedx:cyclonedx-maven-plugin from 2.8.2 to 2.9.0 #511. Thanks to Gary Gregory, Dependabot.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
Enjoy!
Apache Commons Team
-----------------------------------------------------------------------------
Apache Commons Parent 77
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 77.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 77: Maintenance and update dependencies.
Fixed Bugs
----------
* Pin maven-pmd-plugin to 3.24.0, site compatibility is broken in 3.25.0. Thanks to Dependabot, Gary Gregory.
Changes
-------
* Bump org.cyclonedx:cyclonedx-maven-plugin from 2.8.1 to 2.8.2 #498. Thanks to Dependabot, Gary Gregory.
* Bump commons.pmd-impl.version from 7.5.0 to 7.6.0 #501. Thanks to Dependabot, Gary Gregory.
* Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.10.0 to 3.10.1 #503. Thanks to Dependabot, Gary Gregory.
* Bump com.puppycrawl.tools:checkstyle from 10.18.1 to 10.18.2 on Java 11 and up. Thanks to Dependabot, Gary Gregory.
* Bump org.junit:junit-bom from 5.11.1 to 5.11.2 #506. Thanks to Dependabot, Gary Gregory.
Removed
-------
* Remove "cobertura" profile, we use JaCoco, Cobertura is unmaintained. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
Enjoy!
Apache Commons Team
-----------------------------------------------------------------------------
Apache Commons Parent 76
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 76.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 76: Maintenance and update dependencies.
Changes
-------
* Bump the default URL for Java EE Javadoc to EE8; also avoids Javadoc issuing redirect warnings. Thanks to Dependabot, Gary Gregory.
* Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.3 to 4.8.6.4 #496. Thanks to Dependabot, Gary Gregory.
* Bump org.junit:junit-bom from 5.11.0 to 5.11.1 #497. Thanks to Dependabot, Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
Enjoy!
Apache Commons Team
-----------------------------------------------------------------------------
Apache Commons Parent 75
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 75.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 75: Maintenance and update dependencies.
Changes
-------
* Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.4.0 to 3.5.0 #479. Thanks to Dependabot, Gary Gregory.
* Bump org.apache.maven.plugins:maven-pmd-plugin from 3.24.0 to 3.25.0 #481. Thanks to Dependabot, Gary Gregory.
* Bump commons.pmd-impl.version from 7.4.0 to 7.5.0, supports Java 23 #487. Thanks to Dependabot, Gary Gregory.
* Bump org.apache.maven.plugins:maven-surefire-report-plugin from 3.4.0 to 3.5.0 #482. Thanks to Dependabot, Gary Gregory.
* Bump org.apache.maven.plugins:maven-surefire-plugin from 3.4.0 to 3.5.0 #483. Thanks to Dependabot, Gary Gregory.
* Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.8.0 to 3.10.0 #484. Thanks to Dependabot, Gary Gregory.
* Bump com.puppycrawl.tools:checkstyle from 10.18.0 to 10.18.1 on Java 11 and up #490. Thanks to Dependabot, Gary Gregory.
* Bump org.codehaus.mojo:buildnumber-maven-plugin from 3.2.0 to 3.2.1 #489. Thanks to Dependabot, Gary Gregory.
* Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.2 to 4.8.6.3 #491. Thanks to Dependabot, Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
Enjoy!
Apache Commons Team
-----------------------------------------------------------------------------
Apache Commons Parent 74
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 74.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 74: Maintenance and update dependencies.
Changes
-------
* Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.3.1 to 3.4.0 #468. Thanks to Dependabot, Gary Gregory.
* Bump org.apache.maven.plugins:maven-surefire-plugin from 3.3.1 to 3.4.0 #469. Thanks to Dependabot, Gary Gregory.
* Bump org.apache.maven.plugins:maven-surefire-report-plugin from 3.3.1 to 3.4.0 #470. Thanks to Dependabot, Gary Gregory.
* Bump com.github.siom79.japicmp:japicmp-maven-plugin from 0.22.0 to 0.23.0 #472. Thanks to Dependabot, Gary Gregory.
* Bump org.apache.maven.plugins:maven-jxr-plugin from 3.4.0 to 3.5.0 #473. Thanks to Dependabot, Gary Gregory.
* Bump org.apache.maven.plugins:maven-checkstyle-plugin from 3.4.0 to 3.5.0 #475. Thanks to Dependabot, Gary Gregory.
* Bump org.spdx:spdx-maven-plugin from 0.7.3 to 0.7.4 #476;
Fixes https://github.com/spdx/Spdx-Java-Library/issues/247
Warning message for License list version. Thanks to Dependabot, Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
Enjoy!
Apache Commons Team
-----------------------------------------------------------------------------
Apache Commons Parent 73
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 73.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 73: Maintenance and update dependencies.
Changes
-------
* Bump com.github.siom79.japicmp:japicmp-maven-plugin from 0.21.2 to 0.22.0 #453. Thanks to Dependabot, Gary Gregory.
* Bump commons.pmd-impl.version from 7.3.0 to 7.4.0 #456. Thanks to Dependabot, Gary Gregory.
* Bump org.apache.bcel:bcel from 6.9.0 to 6.10.0 #454. Thanks to Dependabot, Gary Gregory.
* Bump org.junit:junit-bom from 5.11.0-M2 to 5.11.0 #457, #465. Thanks to Dependabot, Gary Gregory.
* Bump org.cyclonedx:cyclonedx-maven-plugin from 2.8.0 to 2.8.1 #460. Thanks to Dependabot, Gary Gregory.
* Bump org.codehaus.mojo:exec-maven-plugin from 3.3.0 to 3.4.1 #461, #466. Thanks to Dependabot, Gary Gregory.
* Remove broken Maven profile for Java 11. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
Enjoy!
Apache Commons Team
-----------------------------------------------------------------------------
Apache Commons Parent 72
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 72.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 72: Maintenance and update dependencies.
New features
------------
* Add org.codehaus.mojo:taglist-maven-plugin:3.1.0 to plugin management. Thanks to Gary Gregory.
Changes
-------
* Bump org.apache:apache from 32 to 33 #445. Thanks to Dependabot, Gary Gregory.
* Bump org.apache.maven.plugins:maven-pmd-plugin from 3.22.0 to 3.24.0 #428, #450. Thanks to Dependabot, Gary Gregory.
* Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.2.5 to 3.3.1 #434, #443. Thanks to Dependabot, Gary Gregory.
* Bump org.apache.maven.plugins:maven-project-info-reports-plugin from 3.5.0 to 3.6.2 #433, #436. Thanks to Dependabot, Gary Gregory.
* Bump org.apache.maven.plugins:maven-surefire-report-plugin from 3.2.5 to 3.3.1 #432, #444. Thanks to Dependabot, Gary Gregory.
* Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to 3.3.1 #431, #446. Thanks to Dependabot, Gary Gregory.
* Bump com.github.spotbugs:spotbugs from 4.8.5 to 4.8.6. Thanks to Gary Gregory.
* Bump org.apache.maven.plugins:maven-jar-plugin from 3.4.1 to 3.4.2 #435. Thanks to Dependabot, Gary Gregory.
* Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.5.0 to 4.8.6.2 #437, #449. Thanks to Dependabot, Gary Gregory.
* Bump commons.pmd-impl.version from 7.2.0 to 7.3.0 #438. Thanks to Dependabot, Gary Gregory.
* Bump org.moditect:moditect-maven-plugin from 1.2.1.Final to 1.2.2.Final #439. Thanks to Dependabot, Gary Gregory.
* Bump org.codehaus.mojo:versions-maven-plugin from 2.16.2 to 2.17.1 #440, #451. Thanks to Dependabot, Gary Gregory.
* Bump org.codehaus.mojo:animal-sniffer-maven-plugin from 1.23 to 1.24 #441. Thanks to Dependabot.
* Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.7.0 to 3.8.0 #452.. Thanks to Dependabot, Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
Enjoy!
Apache Commons Team
-----------------------------------------------------------------------------
Apache Commons Parent 71
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 71.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 71: Maintenance and update dependencies.
Changes
-------
* Bump org.junit:junit-bom from 5.11.0-M1 to 5.11.0-M2 #419. Thanks to Dependabot.
* Bump org.codehaus.mojo:build-helper-maven-plugin from 3.5.0 to 3.6.0 #418. Thanks to Dependabot.
* Bump org.codehaus.mojo:exec-maven-plugin from 3.2.0 to 3.3.0 #417. Thanks to Dependabot.
* Bump com.puppycrawl.tools:checkstyle from 10.16.0 to 10.17.0 on Java 11 and up. Thanks to Gary Gregory.
* Bump commons.pmd-impl.version from 7.1.0 to 7.2.0 #422. Thanks to Dependabot.
* Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.3 to 3.7.0 #424. Thanks to Dependabot.
* Bump org.apache.maven.plugins:maven-checkstyle-plugin from 3.3.1 to 3.4.0 #425. Thanks to Dependabot.
* Bump org.apache.maven.plugins:maven-checkstyle-plugin from 3.3.1 to 3.4.0 #425. Thanks to Dependabot.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
-----------------------------------------------------------------------------
Apache Commons Parent 70
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 70.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 70: Maintenance and update dependencies.
New features
------------
* Add profile benchmark for JMH benchmarks. Thanks to Gary Gregory.
* Add JMH to dependency management section. Thanks to Gary Gregory.
Fixed Bugs
----------
* Set Javadoc link to latest Java API LTS version. Thanks to Gary Gregory.
* Set Jacoco defaults to 1.00. Thanks to Gary Gregory.
Changes
-------
* Bump com.puppycrawl.tools:checkstyle from 10.14.2 to 10.16.0 on Java 11 and up. Thanks to Gary Gregory.
* Bump org.jacoco:jacoco-maven-plugin from 0.8.11 to 0.8.12 #392. Thanks to Dependabot.
* Bump org.apache.maven.plugins:maven-artifact-plugin from 3.5.0 to 3.5.1 #393. Thanks to Dependabot.
* Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.3.1 to 4.8.5.0 #394, #411. Thanks to Dependabot.
* Bump com.github.spotbugs:spotbugs from 4.8.3 to 4.8.5. Thanks to Dependabot.
* Bump org.apache:apache (parent POM) from 31 to 32. Thanks to Dependabot.
* Bump org.apache.commons:commons-build-plugin from 1.13 to 1.14.0 #397. Thanks to Dependabot.
* Bump org.apache.maven.plugins:maven-jar-plugin from 3.3.0 to 3.4.1 #398. Thanks to Dependabot, Gary Gregory.
* Bump org.apache.commons:commons-release-plugin from 1.8.1 to 1.8.2 #401. Thanks to Dependabot, Gary Gregory.
* Bump com.github.siom79.japicmp:japicmp-maven-plugin from 0.20.0 to 0.21.2 #403, #410. Thanks to Gary Gregory.
* Bump org.apache.maven.plugins:maven-pmd-plugin from 3.21.2 to 3.22.0 #404. Thanks to Gary Gregory.
* Bump commons.pmd-impl.version from 6.55.0 to 7.1.0 #388, #408. Thanks to Gary Gregory.
* Bump org.apache.bcel:bcel from 6.8.2 to 6.9.0. Thanks to Gary Gregory.
* Bump org.junit.jupiter:junit-* from 5.10.2 to 5.11.0-M1. Thanks to Gary Gregory.
* Bump org.junit.platform:junit-platform-* from 5.10.2 to 5.11.0-M1. Thanks to Gary Gregory.
* Bump org.junit.vintage:junit-vintage-engine from 5.10.2 to 5.11.0-M1. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
Enjoy!
Apache Commons Team
-----------------------------------------------------------------------------
Apache Commons Parent 69
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 69.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 69: Maintenance and update dependencies
Changes
-------
* Bump org.cyclonedx:cyclonedx-maven-plugin from 2.7.11 to 2.8.0 #389. Thanks to Dependabot.
* Bump org.moditect:moditect-maven-plugin from 1.2.0.Final to 1.2.1.Final #390. Thanks to Dependabot.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
-----------------------------------------------------------------------------
Apache Commons Parent 68
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 68.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 68: Maintenance and update dependencies
Changes
-------
* Bump org.apache.maven.plugins:maven-assembly-plugin from 3.6.0 to 3.7.1 #378, #384. Thanks to Dependabot.
* Bump com.github.siom79.japicmp:japicmp-maven-plugin from 0.18.5 to 0.20.0 #376. Thanks to Dependabot.
* Bump com.puppycrawl.tools:checkstyle from 10.14.0 to 10.14.2 on Java 11 and up. Thanks to Gary Gregory.
* Bump org.moditect:moditect-maven-plugin from 1.1.0 to 1.2.0.Final #379. Thanks to Dependabot, Gary Gregory.
* Bump org.apache.maven.plugins:maven-compiler-plugin from 3.12.1 to 3.13.0 #385. Thanks to Dependabot, Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
-----------------------------------------------------------------------------
Apache Commons Parent 67
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 67.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 67: Maintenance and update dependencies
Changes
-------
* Bump org.junit:junit-bom from 5.10.1 to 5.10.2. Thanks to Dependabot.
* Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.3.0 to 4.8.3.1 #366. Thanks to Dependabot.
* Bump com.github.siom79.japicmp:japicmp-maven-plugin from 0.18.3 to 0.18.5 #365, #368. Thanks to Dependabot.
* Bump org.codehaus.mojo:exec-maven-plugin from 3.1.1 to 3.2.0 #369. Thanks to Dependabot.
* Bump org.apache.bcel:bcel from 6.8.1 to 6.8.2. Thanks to Dependabot.
* Bump com.puppycrawl.tools:checkstyle from 10.13.0 to 10.14.0 on Java 11 and up. Thanks to Gary Gregory.
* Bump org.spdx:spdx-maven-plugin from 0.7.2 to 0.7.3 #371. Thanks to Dependabot.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
-----------------------------------------------------------------------------
Apache Commons Parent 66
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 66.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 66: Maintenance and update dependencies.
Changes in this version include:
New features:
o Add property commons.javadoc21.java.link.
o Add artifact:check-buildplan to the validate phase.
Fixed Bugs:
o Drop markmail from mailingList section
Changes:
o Bump maven-project-info-reports-plugin from 3.4.5 to 3.5.0. Thanks to Gary Gregory.
o Bump org.codehaus.mojo:build-helper-maven-plugin from 3.4.0 to 3.5.0. Thanks to Gary Gregory.
o Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.1.0 to 4.8.3.0. Thanks to Gary Gregory.
o Bump com.github.spotbugs:spotbugs from 4.8.1 to 4.8.3. Thanks to Gary Gregory.
o Bump maven-javadoc-plugin from 3.6.2 to 3.6.3. Thanks to Gary Gregory.
o Bump com.puppycrawl.tools:checkstyle from 10.12.5 to 10.12.6 on Java 11 and up. Thanks to Gary Gregory.
o Bump maven-failsafe-plugin from 3.2.2 to 3.2.5. Thanks to Gary Gregory.
o Bump maven-surefire-plugin from 3.2.2 to 3.2.5. Thanks to Gary Gregory.
o Bump maven-surefire-report-plugin from 3.2.2 to 3.2.5. Thanks to Gary Gregory.
o Bump org.spdx:spdx-maven-plugin from 0.7.0 to 0.7.2. Thanks to Dependabot.
o Bump maven-compiler-plugin from 3.11.0 to 3.12.1. Thanks to Gary Gregory.
o Bump com.puppycrawl.tools:checkstyle from 10.12.6 to 10.13.0 on Java 11 and up. Thanks to Gary Gregory.
o Bump org.apache.maven.plugins:maven-jxr-plugin from 3.3.1 to 3.3.2. Thanks to Gary Gregory.
o Bump org.apache.rat:apache-rat-plugin from 0.15 to 0.16.1. Thanks to Gary Gregory.
o Bump org.apache.bcel:bcel from 6.8.0 to 6.8.1. Thanks to Dependabot.
o Bump org.cyclonedx:cyclonedx-maven-plugin from 2.7.10 to 2.7.11. Thanks to Dependabot.
o Drop Javadoc properties commons.javadocX.java.link for non-LTS Java versions. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
-----------------------------------------------------------------------------
Apache Commons Parent 65
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 65.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 65: Maintenance and update dependencies.
Changes in this version include:
New features:
o Add exec-maven-plugin to plugin management section.
Fixed Bugs:
o s/commons.surefire-report.version/commons.surefire.version/ incorrectly added in 714c3a9
Changes:
o Bump com.github.spotbugs:spotbugs from 4.7.3 to 4.8.1 #317. Thanks to Dependabot, Gary Gregory.
o Bump org.jacoco:jacoco-maven-plugin from 0.8.10 to 0.8.11 #321. Thanks to Dependabot.
o Bump com.github.siom79.japicmp:japicmp-maven-plugin from 0.18.1 to 0.18.3 #320. Thanks to Dependabot, Gary Gregory.
o Bump maven-failsafe-plugin from 3.1.2 to 3.2.1. Thanks to Gary Gregory.
o Bump maven-jxr-plugin from 3.3.0 to 3.3.1. Thanks to Gary Gregory.
o Bump maven-surefire-plugin from 3.1.2 to 3.2.1. Thanks to Gary Gregory.
o Bump maven-surefire-report-plugin from 3.1.2 to 3.2.1. Thanks to Gary Gregory.
o Bump maven-checkstyle-plugin from 3.3.0 to 3.3.1. Thanks to Gary Gregory.
o Bump org.codehaus.mojo:javancss-maven-plugin from undefined to 2.1. Thanks to Gary Gregory.
o Bump cyclonedx-maven-plugin from 2.7.9 to 2.7.10. Thanks to Gary Gregory.
o Bump maven-pmd-plugin from 3.21.0 to 3.21.2. Thanks to Gary Gregory.
o Bump maven-javadoc-plugin from 3.6.0 to 3.6.2. Thanks to Gary Gregory.
o Bump JUnit from 5.10.0 to 5.10.1. Thanks to Gary Gregory.
o Bump org.moditect:moditect-maven-plugin from 1.0.0.Final to 1.1.0. Thanks to Gary Gregory.
o Bump com.github.spotbugs:spotbugs-maven-plugin from 4.7.3.6 to 4.8.1.0. Thanks to Gary Gregory.
o Bump maven-failsafe-plugin from 3.2.1 to 3.2.2. Thanks to Gary Gregory.
o Bump maven-surefire-plugin from 3.2.1 to 3.2.2. Thanks to Gary Gregory.
o Bump maven-surefire-report-plugin from 3.2.1 to 3.2.2. Thanks to Gary Gregory.
o Bump org.apache:apache from 30 to 31. Thanks to Gary Gregory.
o Bump com.puppycrawl.tools:checkstyle from 10.12.4 on 10.12.5 when on Java 11 and up. Thanks to Gary Gregory.
o Bump org.codehaus.mojo:versions-maven-plugin from 2.16.1 to 2.16.2 #330. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
-----------------------------------------------------------------------------
Apache Commons Parent 64
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 64.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 64: Maintenance and update dependencies.
Changes in this version include:
New features:
o Restore building on Java 8 (com.puppycrawl.tools:checkstyle 10.x requires Java 11). Thanks to Gary Gregory.
o Rename profile 'moditect' to 'java-9-up'. Thanks to Gary Gregory.
o Merge profile 'jdk9-compiler' into 'java-9-up' and remove 'jdk9-compiler'. Thanks to Gary Gregory.
Changes:
o Use Checkstyle 9.x on Java less than 11 and Checkstyle 10.x on Java 11 and up. Thanks to Gary Gregory.
Removed:
o Remove 'javasvn' profile. Thanks to Gary Gregory.
o Remove '.svn'-activated profile. Thanks to Gary Gregory.
o Remove 'jdk9-compiler.' profile. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
-----------------------------------------------------------------------------
Apache Commons Parent 63
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 63.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 63: Maintenance and update dependencies.
Changes in this version include:
New features:
o Add commons.conf.dir property defaulting to src/conf. Thanks to Dependabot.
Changes:
o Bump GitHub actions. Thanks to Dependabot.
o Bump com.github.siom79.japicmp:japicmp-maven-plugin from 0.17.2 to 0.18.1 #302, #313. Thanks to Dependabot, Gary Gregory.
o Bump maven-javadoc-plugin from 3.5.0 to 3.6.0. Thanks to Gary Gregory.
o Bump org.codehaus.mojo:versions-maven-plugin from 2.16.0 to 2.16.1 #309. Thanks to Dependabot.
o Bump com.github.spotbugs:spotbugs-maven-plugin from 4.7.3.5 to 4.7.3.6 #312. Thanks to Dependabot.
Removed:
o Remove obsolete Travis CI profiles. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
-----------------------------------------------------------------------------
Apache Commons Parent 62
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 62.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 62: Maintenance and update dependencies.
Changes in this version include:
Fixed Bugs:
o Use addServiceUses when generating JPMS module info. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
-----------------------------------------------------------------------------
Apache Commons Parent 61
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 61.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 61: Maintenance and update dependencies.
Changes in this version include:
Fixed Bugs:
o Always use version.maven-source-plugin 3.2.1 (workaround MSOURCES-143). Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
-----------------------------------------------------------------------------
Apache Commons Parent 60
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 60.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 60: Maintenance and update dependencies.
Changes in this version include:
New features:
o Add SPDX SBOM in the package phase. Thanks to Gary Gregory.
Fixed Bugs:
o Reuse the parent POM's maven-enforcer-plugin configuration Thanks to Slawomir Jaranowski.
o Workaround MSOURCES-143 by using version.maven-source-plugin 3.2.1 on Java 8. Thanks to Gary Gregory.
o Remove property commons.source-plugin.version and reuse the parent POM's version.maven-source-plugin. Thanks to Gary Gregory.
Changes:
o Bump JUnit from 5.9.3 to 5.10.0. Thanks to Dependabot.
o Bump maven-assembly-plugin from 3.5.0 to 3.6.0. Thanks to Dependabot.
o Bump maven-checkstyle-plugin from 3.2.2 to 3.3.0. Thanks to Dependabot.
o Bump maven-failsafe-plugin from 3.0.0 to 3.1.2. Thanks to Dependabot.
o Bump maven-surefire-plugin from 3.0.0 to 3.1.2. Thanks to Dependabot.
o Bump maven-pmd-plugin from 3.20.0 to 3.21.0. Thanks to Dependabot.
o Bump maven-project-info-reports-plugin from 3.4.3 to 3.4.5. Thanks to Dependabot.
o Bump maven-source-plugin from 3.2.1 to 3.3.0. Thanks to Dependabot.
o Bump org.apache.felix:maven-bundle-plugin from 5.1.8 to 5.1.9. Thanks to Dependabot.
o Bump org.spdx:spdx-maven-plugin from 0.6.5 to 0.7.0. Thanks to Dependabot.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
-----------------------------------------------------------------------------
Apache Commons Parent 59
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 59.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 59: Maintenance and update dependencies.
Changes in this version include:
New features:
o Add moditect profile for JPMS on Java >= 9. Thanks to Gary Gregory.
o Add POM property commons.javadoc.javaee8.link. Thanks to Gary Gregory.
o Add POM property commons.javadoc.javaee9.link. Thanks to Gary Gregory.
o Add POM property commons.javadoc.javaee9.1.link. Thanks to Gary Gregory.
o Add POM property commons.javadoc.javaee10.link. Thanks to Gary Gregory.
o Don't use the animal sniffer plugin on Java >=9, use the release flag instead. Thanks to Gary Gregory.
Changes:
o Bump GitHub actions in .github. Thanks to Dependabot.
o Bump versions-maven-plugin from 2.15.0 to 2.16.0 #276. Thanks to Dependabot.
o Bump buildnumber-maven-plugin from 3.1.0 to 3.2.0 #277. Thanks to Dependabot.
o Bump biz.aQute.bndlib from 6.4.0 to 6.4.1 #279. Thanks to Dependabot.
o Bump spotbugs-maven-plugin from 4.7.3.4 to 4.7.3.5 #284. Thanks to Dependabot.
o Bump org:apache:apache (parent POM) from 29 to 30. Thanks to Dependabot.
o Bump commons-release-plugin from 1.8.0 to 1.8.1. Thanks to Dependabot.
o Bump commons-build-plugin from 1.12 to 1.13. Thanks to Dependabot.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
-----------------------------------------------------------------------------
Apache Commons Parent 58
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 58.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 57: Maintenance and update dependencies.
Changes in this version include:
New features:
o Add commons.javadoc20.java.link. Thanks to Gary Gregory.
Changes:
o Bump cyclonedx-maven-plugin from 2.7.7 to 2.7.9 #266, #272. Thanks to Dependabot.
o Bump jacoco-maven-plugin from 0.8.9 to 0.8.10 #265. Thanks to Dependabot.
o Bump junit-bom from 5.9.2 to 5.9.3 #263. Thanks to Dependabot.
o Bump build-helper-maven-plugin from 3.3.0 to 3.4.0 #270. Thanks to Dependabot.
o Bump buildnumber-maven-plugin from 3.0.0 to 3.1.0 #271. Thanks to Dependabot.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
-----------------------------------------------------------------------------
Apache Commons Parent 57
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 57.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 57: Maintenance and update dependencies.
Changes in this version include:
Fixed Bugs:
o Fix cyclonedx-maven-plugin configuration for multi-module projects. Thanks to Hervé Boutemy.
o Drop non-reproducible Implementation-Build in jar #242. Thanks to Hervé Boutemy.
o Use Java compiler release flag when compiling with Java >= 9.]. Thanks to Gary Gregory.
Changes:
o Bump github/codeql-action from 2.1.37 to 2.1.38 #201. Thanks to Dependabot.
o Bump cyclonedx-maven-plugin from 2.7.3 to 2.7.7 #195, #220, #253, #262. Thanks to Dependabot.
o Bump junit-bom from 5.9.1 to 5.9.2 #198. Thanks to Dependabot.
o Bump maven-pmd-plugin from 3.19.0 to 3.20.0 #206. Thanks to Dependabot.
o Bump commons.pmd-impl.version from 6.54.0 to 6.55.0 #227. Thanks to Dependabot.
o Bump maven-failsafe-plugin from 3.0.0-M7 to 3.0.0 #202, #222, #235. Thanks to Dependabot.
o Bump maven-surefire-plugin from 3.0.0-M8 to 3.0.0 #219, #236. Thanks to Dependabot.
o Bump maven-surefire-report-plugin from 3.0.0-M7 to 3.0.0 #205, #207, #221, #237. Thanks to Dependabot.
o Bump maven-checkstyle-plugin from 3.2.0 to 3.2.2 #204, #260. Thanks to Dependabot.
o Bump maven-project-info-reports-plugin from 3.4.1 to 3.4.3 #203, @262. Thanks to Dependabot.
o Bump maven-enforcer-plugin from 3.1.0 to 3.3.0 #212, #255. Thanks to Dependabot.
o Bump spdx-maven-plugin from 0.6.3 to 0.6.5 #213, #259. Thanks to Dependabot.
o Bump maven-javadoc-plugin from 3.4.1 to 3.5.0 #218. Thanks to Dependabot.
o Bump versions-maven-plugin from 2.14.2 to 2.15.0 #224. Thanks to Dependabot.
o Bump maven-assembly-plugin from 3.4.2 to 3.5.0 #226. Thanks to Dependabot.
o Bump spotbugs-maven-plugin from 4.7.3.0 to 4.7.3.4 #225, #231, #243, #254. Thanks to Dependabot.
o Bump maven-compiler-plugin from 3.10.1 to 3.11.0 #229. Thanks to Dependabot.
o Bump japicmp-maven-plugin from 0.17.1 to 0.17.2 #230. Thanks to Dependabot.
o Bump commons.javadoc.java.link from Java 7 to 8. Thanks to Gary Gregory.
o Bump minimum Maven version from 3.3.9 to 3.6.3. Thanks to Gary Gregory.
o Bump jacoco-maven-plugin from 0.8.8 to 0.8.9 #256. Thanks to Dependabot.
o Bump animal-sniffer-maven-plugin from 1.22 to 1.23 #251. Thanks to Dependabot.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
-----------------------------------------------------------------------------
Apache Commons Parent 56
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 56.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 56: Maintenance and update dependencies.
Changes in this version include:
Fixed Bugs:
o Add Privacy link to site.xml
Changes:
o Bump apache from 28 to 29 #182. Thanks to Dependabot.
o Bump versions-maven-plugin from 2.13.0 to 2.14.2 #181, #187, #191. Thanks to Dependabot.
o Bump wagon-ssh from 3.5.2 to 3.5.3 #190. Thanks to Dependabot.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
-----------------------------------------------------------------------------
Apache Commons Parent 55
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 55.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 55: Maintenance and update dependencies.
Changes in this version include:
Changes:
o Make CycloneDX work better with multi-module projects. Thanks to Gary Gregory.
o New interface methods must be default methods to maintain BC. Thanks to Gary Gregory.
o Add property commons.javadoc19.java.link. Thanks to Gary Gregory.
o Bump actions/cache from 3.0.8 to 3.0.11 #152, #155, #160. Thanks to Dependabot.
o Bump actions/checkout from 3.0.2 to 3.1.0 #154. Thanks to Dependabot.
o Bump actions/setup-java from 3.5.1 to 3.6.0 #164. Thanks to Dependabot.
o Bump actions/upload-artifact from 3.1.0 to 3.1.1 #165 Thanks to Dependabot.
o Bump github/codeql-action from 2.1.27 to 2.1.35 #162, #166, #168, #178. Thanks to Dependabot.
o Bump github/codeql-action from 2.1.23 to 2.1.31 #148, #150, #156, #172. Thanks to Gary Gregory, Dependabot.
o Bump ossf/scorecard-action from 1.1.2 to 2.0.6 #163. Thanks to Gary Gregory, Dependabot.
o Bump apache from 27 to 28 #175 Thanks to Dependabot.
o Bump JUnit from 5.9.0 to 5.9.1. Thanks to Gary Gregory.
o Bump spdx-maven-plugin from 0.5.5 to 0.6.3. Version 0.6.2 fixes NPE https://github.com/spdx/spdx-maven-plugin/issues/53 #159 Thanks to Gary Gregory, Dependabot.
o Bump pmd from 6.49.0 to 6.52.0. Thanks to Gary Gregory.
o Bump Apache Commons BCEL from 6.5.0 to 6.7.0. Thanks to Gary Gregory.
o Bump cyclonedx-maven-plugin from 2.7.1 to 2.7.3 #157, #173. Thanks to Dependabot.
o Bump spotbugs-maven-plugin from 4.7.2.0 to 4.7.3.0 #158, #170, #171. Thanks to Dependabot.
o Bump spotbugs from 4.7.2 to 4.7.3 #161. Thanks to Dependabot.
o Bump versions-maven-plugin from 2.12.0 to 2.13.0 #167. Thanks to Dependabot.
o Bump japicmp-maven-plugin from 0.16.0 to 0.17.1 #174. Thanks to Dependabot.
o Bump biz.aQute.bndlib from 6.3.1 to 6.4.0 #176. Thanks to Dependabot.
Historical list of changes: https://commons.apache.org/proper/commons-parent/changes-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/proper/commons-parent/
-----------------------------------------------------------------------------
Apache Commons Parent 54
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 54.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Version 54: SBOMs, drop JDepend, replace FindBugs with SpotBugs, dependency bumps.
Changes in this version include:
New features:
o Add .vscode/* to RAT excludes.
o Add property commons.javadoc18.java.link. Thanks to Dependabot.
o Add JUnit BOM to dependency management.
o Add CycloneDX SBOM generation #122. Thanks to Steve Springett.
o Add SPDX SBOM generation. Thanks to Gary Gregory.
Changes:
o Bump actions/cache from 3 to 3.0.8, #118. Thanks to Gary Gregory, Dependabot.
o Bump actions/checkout from 3 to 3.0.2. Thanks to Gary Gregory.
o Bump actions/setup-java from 2 to 3. Thanks to Gary Gregory.
o Bump apache from 24 to 27 #112, #127. Thanks to Dependabot.
o Bump build-helper-maven-plugin from 3.2.0 to 3.3.0 #105. Thanks to Dependabot.
o Bump jacoco-maven-plugin from 0.8.7 to 0.8.8. Thanks to Gary Gregory.
o Bump spotbugs from 4.5.3 to 4.7.2 #120, #143. Thanks to Gary Gregory, Dependabot.
o Bump spotbugs-maven-plugin from 4.5.3.0 to 4.7.2.0, #129, #142. Thanks to Gary Gregory, Dependabot.
o Bump maven-project-info-reports-plugin from 3.2.2 to 3.4.1 #107, #128. Thanks to Dependabot.
o Bump maven-site-plugin from 3.11.0 to 3.12.1 #108, #132. Fix [WARNING] An issue has occurred with apache-rat-plugin:0.14:rat report, skipping LinkageError org.apache.rat.mp.RatReportMojo.generate(Lorg/codehaus/doxia/sink/Sink;Ljava/util/Locale;)V, Thanks to Dependabot.
o Bump maven-bundle-plugin from 5.1.4 to 5.1.8, #111, #126, #133. Thanks to Gary Gregory, Dependabot.
o Bump net.sourceforge.pmd:pmd-* from 6.44.0 to 6.49.0, #138. Thanks to Gary Gregory, Dependabot.
o Bump maven-jxr-plugin from 3.1.1 to 3.3.0 #110, #136. Thanks to Dependabot.
o Bump maven-javadoc-plugin from 3.3.2 to 3.4.1 #114. Thanks to Dependabot, Gary Gregory.
o Bump apache-rat from 0.13 to 0.15. Thanks to Gary Gregory.
o Bump biz.aQute.bndlib from 6.2.0 to 6.3.1. Thanks to Gary Gregory.
o Bump maven-pmd-plugin from 3.16.0 to 3.19.0 #141. Thanks to Gary Gregory, Dependabot.
o Bump maven-enforcer-plugin from 3.0.0 to 3.1.0. Thanks to Gary Gregory.
o Bump org.apache.maven.wagon:wagon-ssh 3.5.1 to 3.5.2. Thanks to Gary Gregory.
o Bump maven-assembly-plugin from 3.3.0 to 3.4.2 #123. Thanks to Dependabot, Gary Gregory.
o Bump Surefire 2.22.2 to 3.0.0-M7. Thanks to Gary Gregory.
o Bump Failsafe 2.22.2 to 3.0.0-M7. Thanks to Gary Gregory.
o Bump animal-sniffer-maven-plugin from 1.21 to 1.22. Thanks to Gary Gregory.
o Bump maven-checkstyle-plugin from 3.1.2 to 3.2.0. Thanks to Gary Gregory.
o Bump japicmp-maven-plugin from 0.15.7 to 0.16.0 #140. Thanks to Gary Gregory.
o Bump versions-maven-plugin from 2.11.0 to 2.12.0 #144. Thanks to Dependabot.
o Bump maven-jar-plugin from 3.2.2 to 3.3.0 #147. Thanks to Dependabot.
Removed:
o Remove org.codehaus.mojo:jdepend-maven-plugin 2.0; it does not work with current versions of RAT and site plugins. Thanks to Gary Gregory.
o Remove FindBugs properties, use SpotBugs instead. Thanks to Gary Gregory.
o Remove Maven Clirr plugin in favor of JApiCmp. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/commons-parent-pom.htmlchanges-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/commons-parent-pom.html
-----------------------------------------------------------------------------
Apache Commons Parent 53
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 53
The Apache Commons Parent POM provides common settings for all Apache Commons components.
WARNING: checkstyle version has been updated; there are breaking changes which may require updates to checkstyle.xml files
Changes in this version include:
New features:
o Add .asf.yaml to RAT excludes.
o Add versions-maven-plugin run for this build.
o Add maven-checkstyle-plugin to pluginManagement.
o Allow Maven PMD plugin to override PMD implementation jars with property "commons.pmd-impl.version".
o Add property commons.javadoc16.java.link.
o Add and use property commons.enforcer-plugin.version.
o Add SpotBugs to plugin management section.
o Add and use property commons.buildnumber-plugin.version.
o Add property commons.javadoc17.java.link.
Fixed Bugs:
o Use HTTPS for Javadoc links to Oracle.
o Use HTTPS for most links to Apache.
o Rename property biz.aQute.bndlib.version -> commons.biz.aQute.bndlib.version.
Changes:
o Bump versions-maven-plugin from 2.7 to 2.10.0 #97, #101. Thanks to Dependabot, Gary Gregory.
o Bump maven-project-info-reports-plugin from 3.1.0 to 3.2.2 #19, #41, #89, #103. Thanks to Dependabot.
o Bump Jacoco from 0.8.5 to 0.8.7, #42.
o Bump actions/setup-java from v1.4.0 to v2, #18, #22. Thanks to Dependabot, Gary Gregory.
o Bump commons-build-plugin 1.11 -> 1.12
o Bump biz.aQute.bndlib from 5.1.2 to 6.2.0, #23, #31, #64, #76. Thanks to Dependabot.
o Bump actions/checkout from 2.3.1 to 3, #15, #21, #25, #66, #71, #79. Thanks to Dependabot.
o Bump com.github.siom79.japicmp:japicmp-maven-plugin 0.14.3 -> 0.15.7, #34, #68, #93. Thanks to Gary Gregory, Depe
ndabot.
o Bump org.apache.maven.wagon:wagon-ssh 3.4.0 -> 3.4.3, #32
o Bump maven-pmd-plugin 3.13.0 -> 3.16.0 #91. Thanks to Gary Gregory, Dependabot.
o Bump commons.checkstyle-plugin.version 3.1.1 -> 3.1.2.
o Bump actions/cache from 2 to 3 #29, #38, #44, #102. Thanks to Dependabot.
o Bump animal-sniffer-maven-plugin from 1.19 to 1.21 #30. Thanks to Dependabot, Gary Gregory.
o Bump com.puppycrawl.tools:checkstyle from 8.40 to 9.0.2 #33, #45, #48, #54, #55, #38, #77. Thanks to Dependabot,
Gary Gregory.
o Bump maven-bundle-plugin from 5.1.1 to 5.1.4 #35, #82, #87. Thanks to Dependabot.
o Bump maven-jxr-plugin from 3.0.0 to 3.1.1 #39. Thanks to Dependabot.
o Bump maven-javadoc-plugin from 3.2.0 to 3.3.2 #43, #59, #96. Thanks to Dependabot.
o Bump commons.pmd-impl.version from 6.29.0 to 6.44.0 #46, #47, #53, #57, #62, #80, #90, #99. Thanks to Dependabot,
Gary Gregory.
o Bump spotbugs-maven-plugin from 4.0.4 to 4.5.3.0 #50, #60, #83, #100. Thanks to Dependabot.
o Bump spotbugs from 4.0.6 to 4.5.3.
o Bump maven-enforcer-plugin from 3.0.0-M3 to 3.0.0 #52. Thanks to Dependabot.
o Bump buildnumber-maven-plugin from 1.4 to 3.0.0 #81. Thanks to Dependabot.
o Bump maven-site-plugin from 3.9.1 to 3.11.0 #84, #98. Thanks to Dependabot.
o Bump wagon-ssh from 3.4.3 to 3.5.1 #85. Thanks to Dependabot.
o Bump checkstyle from 9.2 to 9.3 #86. Thanks to Dependabot, Gary Gregory.
o Bump maven-compiler-plugin from 3.8.1 to 3.10.1 #88. Thanks to Dependabot, Gary Gregory.
o Bump maven-jar-plugin from 3.2.0 to 3.2.2 #92. Thanks to Dependabot.
o Bump commons-release-plugin from 1.7 to 1.8.0. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/commons-parent-pom.htmlchanges-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/commons-parent-pom.html
-----------------------------------------------------------------------------
Apache Commons Parent 52
RELEASE NOTES
The Apache Commons Parent team is pleased to announce the release of Apache Commons Parent 52.
The Apache Commons Parent POM provides common settings for all Apache Commons components.
Add support for Java 15.
Changes in this version include:
New features:
o Align Javadoc version with java override profile
Changes:
o Update maven-site-plugin version 3.8.2 -> 3.9.1.
o Update biz.aQute.bndlib version 5.1.0 -> 5.1.2, Java 15 support.
o Update maven-bundle-plugin from 4.2.1 to 5.1.1, Java 15 support.
o Update animal-sniffer-maven-plugin from 1.18 to 1.19.
o Update build-helper-maven-plugin from 3.1.0 to 3.2.0.
o Update commons.checkstyle-plugin.version from 3.1.0 to 3.1.1.
Historical list of changes: https://commons.apache.org/commons-parent-pom.htmlchanges-report.html
For complete information on Apache Commons Parent, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons Parent website:
https://commons.apache.org/commons-parent-pom.html