-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathreleasenotes.html
12336 lines (10088 loc) · 449 KB
/
releasenotes.html
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
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia Site Renderer 2.0.0 from src/site/xdoc/releasenotes.xml at 2025-04-02
| Rendered using Apache Maven Fluido Skin 2.0.1
-->
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="generator" content="Apache Maven Doxia Site Renderer 2.0.0" />
<title>Release Notes – checkstyle</title>
<link rel="stylesheet" href="./css/apache-maven-fluido-2.0.1.min.css" />
<link rel="stylesheet" href="./css/site.css" />
<link rel="stylesheet" href="./css/print.css" media="print" />
<script src="./js/apache-maven-fluido-2.0.1.min.js"></script>
<script type="text/javascript" src="./js/checkstyle.js"></script>
<script type="text/javascript" src="./js/anchors.js"></script>
<script type="text/javascript" src="./js/google-analytics.js"></script>
<script type="text/javascript" src="./js/copy-clipboard.js"></script>
<link rel="icon" href="./images/favicon.png" type="image/x-icon" />
<link rel="shortcut icon" href="./images/favicon.ico" type="image/ico" />
</head>
<body>
<div class="container-fluid container-fluid-top">
<header>
<div id="banner">
<div class="pull-left"><div id="bannerLeft"><h1><a href="./"><img class="class java.lang.Object" src="images/header-checkstyle-logo.png" alt="Checkstyle" /></a></h1></div></div>
<div class="pull-right"><div id="bannerRight"><h1><img class="class java.lang.Object" src="images/header-right-ruller.png" alt="Checkstyle" /></h1></div></div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate" class="pull-right"><span class="divider">|</span> Last Published: 2025-04-02</li>
<li id="projectVersion" class="pull-right"><span class="divider">|</span>Version: 10.23.0</li>
<li class="pull-right"><a>toTop</a></li>
</ul>
</div>
</header>
<div class="row-fluid">
<header id="leftColumn" class="span2">
<nav class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">About</li>
<li><a href="index.html">Checkstyle</a></li>
<li class="active"><a>Release Notes</a></li>
<li><a href="consulting.html">Consulting</a></li>
<li><a href="sponsoring.html">Sponsoring</a></li>
<li class="nav-header">Documentation</li>
<li><a href="config.html"><span class="icon-chevron-down"></span>Configuration</a>
<ul class="nav nav-list">
<li><a href="property_types.html">Property Types</a></li>
<li><a href="config_system_properties.html">System Properties</a></li>
</ul></li>
<li><a href="running.html"><span class="icon-chevron-down"></span>Running</a>
<ul class="nav nav-list">
<li><a href="anttask.html">Ant Task</a></li>
<li><a href="cmdline.html">Command Line</a></li>
</ul></li>
<li><a href="checks.html"><span class="icon-chevron-down"></span>Checks</a>
<ul class="nav nav-list">
<li><a href="checks/annotation/index.html"><span class="icon-chevron-right"></span>Annotations</a></li>
<li><a href="checks/blocks/index.html"><span class="icon-chevron-right"></span>Block Checks</a></li>
<li><a href="checks/design/index.html"><span class="icon-chevron-right"></span>Class Design</a></li>
<li><a href="checks/coding/index.html"><span class="icon-chevron-right"></span>Coding</a></li>
<li><a href="checks/header/index.html"><span class="icon-chevron-right"></span>Headers</a></li>
<li><a href="checks/imports/index.html"><span class="icon-chevron-right"></span>Imports</a></li>
<li><a href="checks/javadoc/index.html"><span class="icon-chevron-right"></span>Javadoc Comments</a></li>
<li><a href="checks/metrics/index.html"><span class="icon-chevron-right"></span>Metrics</a></li>
<li><a href="checks/misc/index.html"><span class="icon-chevron-right"></span>Miscellaneous</a></li>
<li><a href="checks/modifier/index.html"><span class="icon-chevron-right"></span>Modifiers</a></li>
<li><a href="checks/naming/index.html"><span class="icon-chevron-right"></span>Naming Conventions</a></li>
<li><a href="checks/regexp/index.html"><span class="icon-chevron-right"></span>Regexp</a></li>
<li><a href="checks/sizes/index.html"><span class="icon-chevron-right"></span>Size Violations</a></li>
<li><a href="checks/whitespace/index.html"><span class="icon-chevron-right"></span>Whitespace</a></li>
</ul></li>
<li><a href="filters/index.html"><span class="icon-chevron-right"></span>Filters</a></li>
<li><a href="filefilters/index.html"><span class="icon-chevron-right"></span>File Filters</a></li>
<li><a href="style_configs.html"><span class="icon-chevron-down"></span>Style Configurations</a>
<ul class="nav nav-list">
<li><a href="google_style.html">Google's Style</a></li>
<li><a href="sun_style.html">Sun's Style</a></li>
</ul></li>
<li class="nav-header">Developers</li>
<li><a href="extending.html"><span class="icon-chevron-down"></span>Extending Checkstyle</a>
<ul class="nav nav-list">
<li><a href="writingchecks.html">Writing Checks</a></li>
<li><a href="writingjavadocchecks.html">Writing Javadoc Checks</a></li>
<li><a href="writingfilters.html">Writing Filters</a></li>
<li><a href="writingfilefilters.html">Writing File Filters</a></li>
<li><a href="writinglisteners.html">Writing Listeners</a></li>
</ul></li>
<li><a href="contributing.html">Contributing</a></li>
<li><a href="beginning_development.html"><span class="icon-chevron-down"></span>Beginning Development</a>
<ul class="nav nav-list">
<li><a href="eclipse.html">Eclipse IDE</a></li>
<li><a href="netbeans.html">NetBeans IDE</a></li>
<li><a href="idea.html">IntelliJ IDE</a></li>
</ul></li>
<li><a href="apidocs/index.html">Javadoc</a></li>
<li class="nav-header">Project Documentation</li>
<li><a href="project-info.html"><span class="icon-chevron-right"></span>Project Information</a></li>
<li><a href="project-reports.html"><span class="icon-chevron-right"></span>Project Reports</a></li>
</ul>
</nav>
<div class="well sidebar-nav">
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<a href="https://github.com/checkstyle/checkstyle" class="builtBy"><img class="builtBy" src="images/github_logo_social_coding_outlined.png" alt="GitHub" /></a>
<a href="https://twitter.com/checkstyle_java/" class="builtBy"><img class="builtBy" src="images/twitter_button.png" alt="Twitter" /></a>
<a href="https://stackoverflow.com/questions/tagged/checkstyle" class="builtBy"><img class="builtBy" src="images/stackoverflow.jpeg" alt="Stackoverflow" /></a>
<a href="https://groups.google.com/forum/#!forum/checkstyle" class="builtBy"><img class="builtBy" src="images/groups.png" alt="GoogleGroups" /></a>
<a href="https://www.ej-technologies.com/products/jprofiler/overview.html" class="builtBy"><img class="builtBy" src="https://www.ej-technologies.com/images/product_banners/jprofiler_medium.png" alt="JProfiler" /></a>
</div>
</div>
</header>
<main id="bodyColumn" class="span10">
<section><a id="Release_10.23.0"></a>
<h1>Release 10.23.0</h1>
<div class="releaseDate">02.04.2025</div>
<p>New:</p>
<ul>
<li>
JavadocMethod: new property 'allowInlineReturn' to support for Javadoc return
tag as inline.
Author: Konstantinos Koutsilis
<a href="https://github.com/checkstyle/checkstyle/issues/9745" class="externalLink">#9745</a>
</li>
</ul>
<p>Bug fixes:</p>
<ul>
<li>
False negative in UnusedImportCheck.
Author: Ziad Ahmed
<a href="https://github.com/checkstyle/checkstyle/issues/14697" class="externalLink">#14697</a>
</li>
</ul>
<p>Notes:</p>
<ul>
<li>
SuppressionSingleFilterExamplesTest methods should use:
`verifyFilterWithInlineConfigParser`.
Author: Prarthana-Ramesh
<a href="https://github.com/checkstyle/checkstyle/issues/16332" class="externalLink">#16332</a>
</li>
<li>
XMLLoggerTest.java to use verifyWithInlineConfigParserAndXmlLogger.
Author: Priyambada Roul
<a href="https://github.com/checkstyle/checkstyle/issues/16360" class="externalLink">#16360</a>
</li>
<li>
update JavadocTokenTypes.java to new format of AST print.
Author: Simran, Brijeshthummar02, ZaeemSheikh
<a href="https://github.com/checkstyle/checkstyle/issues/14631" class="externalLink">#14631</a>
</li>
<li>
use new nio jdk api instead of all api.
Author: Priyambada Roul
<a href="https://github.com/checkstyle/checkstyle/issues/16155" class="externalLink">#16155</a>
</li>
<li>
CircleCI is failing on xwiki validation..
Author: MD. Zaid
<a href="https://github.com/checkstyle/checkstyle/issues/16671" class="externalLink">#16671</a>
</li>
</ul>
</section>
<section><a id="Release_10.22.0"></a>
<h1>Release 10.22.0</h1>
<div class="releaseDate">30.03.2025</div>
<p>Breaking backward compatibility:</p>
<ul>
<li>
JavadocVariable: new property 'accessModifiers' as substitution of
'scope' and 'excludeScope' .
Author: Konstantinos Koutsilis
<a href="https://github.com/checkstyle/checkstyle/issues/9280" class="externalLink">#9280</a>
</li>
<li>
Change default or IllegalIdentifierName.
Author: SteLeo1602
<a href="https://github.com/checkstyle/checkstyle/issues/15499" class="externalLink">#15499</a>
</li>
</ul>
<p>Bug fixes:</p>
<ul>
<li>
`FileContents.getJavadocBefore()`: Comments should not be skipped if it is not alone in
line.
Author: mahfouz72
<a href="https://github.com/checkstyle/checkstyle/issues/16641" class="externalLink">#16641</a>
</li>
<li>
JavadocTagContinuationIndentation Ignore indentation check when HTML tag break line.
Author: Anmol
<a href="https://github.com/checkstyle/checkstyle/issues/16385" class="externalLink">#16385</a>
</li>
<li>
use SLL prediction mode for fast javadoc parsing to improve performance.
Author: mahfouz72
<a href="https://github.com/checkstyle/checkstyle/issues/16628" class="externalLink">#16628</a>
</li>
<li>
JavadocMethod: Javadoc Not Detected Above Multiline Comments.
Author: mahfouz72
<a href="https://github.com/checkstyle/checkstyle/issues/43" class="externalLink">#43</a>
</li>
<li>
Incorrect Indentation errors for expression switches with google_checks.xml.
Author: Mohit Attry
<a href="https://github.com/checkstyle/checkstyle/issues/12817" class="externalLink">#12817</a>
</li>
<li>
SuppressWarningsHolder aliasList members don't act like aliases.
Author: SteLeo1602
<a href="https://github.com/checkstyle/checkstyle/issues/6637" class="externalLink">#6637</a>
</li>
<li>
Make references optional for link and linkplain tags.
Author: mahfouz72
<a href="https://github.com/checkstyle/checkstyle/issues/13043" class="externalLink">#13043</a>
</li>
<li>
Parse errors if `@see` spans multiple lines.
Author: Mohit Attry
<a href="https://github.com/checkstyle/checkstyle/issues/16005" class="externalLink">#16005</a>
</li>
<li>
Parse error when Javadoc contains @snippet with code example that uses Java annotation.
Author: mahfouz72
<a href="https://github.com/checkstyle/checkstyle/issues/14446" class="externalLink">#14446</a>
</li>
</ul>
<p>Notes:</p>
<ul>
<li>
update JavadocTokenTypes.java to new format of AST print.
Author: MD. Zaid, Prarthana-Ramesh, Sambhav Jain, Mohammad Soleh, Simran, Mahmoud Ayman,
YuktiNandwana, Ziad Abd El-Fatah, sushanthraiurwa, kapishyadav, abdelrhmansersawy,
kornilov-mr, Abhishek Bansode, Brijeshthummar02
<a href="https://github.com/checkstyle/checkstyle/issues/14631" class="externalLink">#14631</a>
</li>
<li>
Broken Link - Javadoc OpenJDK 8 Report in website, 404 Error.
Author: Brijeshthummar02
<a href="https://github.com/checkstyle/checkstyle/issues/16666" class="externalLink">#16666</a>
</li>
<li>
Github generate site fails to generate links with anchors..
Author: smita_1078
<a href="https://github.com/checkstyle/checkstyle/issues/14857" class="externalLink">#14857</a>
</li>
<li>
Enforce file size on Java inputs.
Author: Atharv Chavan, Mahmoud Ayman, MD. Zaid, vishakha-mali, Ziad Abd El-Fatah,
kapishyadav, abdelrhmansersawy, bishoy, ZaeemSheikh
<a href="https://github.com/checkstyle/checkstyle/issues/11163" class="externalLink">#11163</a>
</li>
<li>
Badges in the README are missing.
Author: Amit Kumar Deohoria
<a href="https://github.com/checkstyle/checkstyle/issues/12742" class="externalLink">#12742</a>
</li>
<li>
Fix existing cases of `getFileContents()` usage.
Author: Priyambada Roul
<a href="https://github.com/checkstyle/checkstyle/issues/11166" class="externalLink">#11166</a>
</li>
<li>
Cover pitest survivals with tests.
Author: Mahmoud Ayman, SteLeo1602, Rohanraj123, Harsh-Agrawal96, abdelrhmansersawy
<a href="https://github.com/checkstyle/checkstyle/issues/14019" class="externalLink">#14019</a>
</li>
<li>
doc: Clarified the description of SummaryJavadoc check.
Author: SteLeo1602
</li>
<li>
align xmx args.
Author: Vincent Potucek
<a href="https://github.com/checkstyle/checkstyle/issues/16608" class="externalLink">#16608</a>
</li>
<li>
There is nothing in few column in Active tool .
Author: Amit Kumar Deohoria
<a href="https://github.com/checkstyle/checkstyle/issues/16157" class="externalLink">#16157</a>
</li>
<li>
Resolve Pitest Suppression in Pitest-Javadoc Profile.
Author: atharv, Mohit Attry
<a href="https://github.com/checkstyle/checkstyle/issues/13999" class="externalLink">#13999</a>
</li>
<li>
Define violation messages for all violations.
Author: Atharv Chavan, jerryyummy, MD. Zaid, Mahmoud Ayman, kapishyadav,
abdelrhmansersawy, Abhishek Bansode, Prarthana-Ramesh, kornilov-mr, ZaeemSheikh
<a href="https://github.com/checkstyle/checkstyle/issues/15456" class="externalLink">#15456</a>
</li>
<li>
SarifLoggerTest.java to use verifyWithInlineConfigParserAndLogger.
Author: ElinaZoldnere
<a href="https://github.com/checkstyle/checkstyle/issues/16361" class="externalLink">#16361</a>
</li>
<li>
Create integration tests in CI to alarm on breaking compatibility.
Author: Amit Kumar Deohoria
<a href="https://github.com/checkstyle/checkstyle/issues/6784" class="externalLink">#6784</a>
</li>
<li>
improve logging.
Author: Vincent Potucek
<a href="https://github.com/checkstyle/checkstyle/issues/16560" class="externalLink">#16560</a>
</li>
<li>
Reminder bot for issues.
Author: Priyambada Roul
<a href="https://github.com/checkstyle/checkstyle/issues/15770" class="externalLink">#15770</a>
</li>
<li>
check-performance-regression workflow does not check Javadoc grammar performance.
Author: mahfouz72
<a href="https://github.com/checkstyle/checkstyle/issues/16482" class="externalLink">#16482</a>
</li>
<li>
Update RegexpHeaderCheckTest to use verifyWithInlineConfigParser method.
Author: Kushagra-Sedwal
<a href="https://github.com/checkstyle/checkstyle/issues/16359" class="externalLink">#16359</a>
</li>
<li>
Links for examples of CLI page.
Author: Abhishek Bansode
<a href="https://github.com/checkstyle/checkstyle/issues/16466" class="externalLink">#16466</a>
</li>
<li>
Copy to clipboard image button for all sources .
Author: smita_1078
<a href="https://github.com/checkstyle/checkstyle/issues/16072" class="externalLink">#16072</a>
</li>
<li>
Static html for syntax highlight in web site.
Author: ZaeemSheikh
<a href="https://github.com/checkstyle/checkstyle/issues/16300" class="externalLink">#16300</a>
</li>
<li>
Update all non java Inputs of SuppressWithNearbyTextFilter to have txt extension .
Author: Harsh-Agrawal96
<a href="https://github.com/checkstyle/checkstyle/issues/13267" class="externalLink">#13267</a>
</li>
<li>
test execution is failing on non EN locales.
Author: Amit Kumar Deohoria
<a href="https://github.com/checkstyle/checkstyle/issues/16233" class="externalLink">#16233</a>
</li>
<li>
Update HeaderCheckTest to use verifyWithInlineConfigParser method.
Author: kornilov-mr
<a href="https://github.com/checkstyle/checkstyle/issues/16358" class="externalLink">#16358</a>
</li>
<li>
Nothing in remark table in additional checks.
Author: Suyash
<a href="https://github.com/checkstyle/checkstyle/issues/16149" class="externalLink">#16149</a>
</li>
<li>
Use bom artifact for junit version management.
Author: Amit Kumar Deohoria
<a href="https://github.com/checkstyle/checkstyle/issues/16396" class="externalLink">#16396</a>
</li>
</ul>
</section>
<section><a id="Release_10.21.4"></a>
<h1>Release 10.21.4</h1>
<div class="releaseDate">04.03.2025</div>
<p>Bug fixes:</p>
<ul>
<li>
AnnotationOnSameLine: FalseNegative when the annotation is on the same line of the
modifer of the target class.
Author: Anmol
<a href="https://github.com/checkstyle/checkstyle/issues/15161" class="externalLink">#15161</a>
</li>
<li>
PARAMETER_DEF in FinalLocalVariable doesn't seem to work in interfaces.
Author: Anmol
<a href="https://github.com/checkstyle/checkstyle/issues/16081" class="externalLink">#16081</a>
</li>
<li>
Regression: CyclomaticComplexity.switchBlockAsSingleDecisionPoint does not work
properly anymore (10.21.1).
Author: Mohit Attry
<a href="https://github.com/checkstyle/checkstyle/issues/16165" class="externalLink">#16165</a>
</li>
</ul>
<p>Notes:</p>
<ul>
<li>
update JavadocTokenTypes.java to new format of AST print.
Author: Atharv Chavan, jerryyummy, bishoy
<a href="https://github.com/checkstyle/checkstyle/issues/14631" class="externalLink">#14631</a>
</li>
<li>
Resolve Pitest Suppression in Pitest-Javadoc Profile.
Author: Amit Kumar Deohoria, Harsh-Agrawal96
<a href="https://github.com/checkstyle/checkstyle/issues/13999" class="externalLink">#13999</a>
</li>
<li>
Define violation messages for all violations.
Author: Usman Shaikh
<a href="https://github.com/checkstyle/checkstyle/issues/15456" class="externalLink">#15456</a>
</li>
<li>
Improve documentation - how to add usage of `var` to check `IllegalType`? .
Author: Priyambada Roul
<a href="https://github.com/checkstyle/checkstyle/issues/14775" class="externalLink">#14775</a>
</li>
<li>
Enforce file size on Java inputs.
Author: Amit Kumar Deohoria, abc
<a href="https://github.com/checkstyle/checkstyle/issues/11163" class="externalLink">#11163</a>
</li>
<li>
Strange echo failure for static message in github action execution.
Author: Roman Ivanov
<a href="https://github.com/checkstyle/checkstyle/issues/16414" class="externalLink">#16414</a>
</li>
<li>
Remove '//ok' comments from Input files .
Author: vishakha-mali, Tahanima Chowdhury
<a href="https://github.com/checkstyle/checkstyle/issues/13213" class="externalLink">#13213</a>
</li>
<li>
Cover pitest survivals with tests.
Author: Ziad Ahmed
<a href="https://github.com/checkstyle/checkstyle/issues/14019" class="externalLink">#14019</a>
</li>
</ul>
</section>
<section><a id="Release_10.21.3"></a>
<h1>Release 10.21.3</h1>
<div class="releaseDate">23.02.2025</div>
<p>Bug fixes:</p>
<ul>
<li>
The SarifLogger creates invalid JSON on Windows with unescaped paths.
Author: Kai Moschcau, Roman Ivanov
<a href="https://github.com/checkstyle/checkstyle/issues/16127" class="externalLink">#16127</a>
</li>
<li>
False Negative of ClassFanOutCheck with "new" Keyword.
Author: Anmol
<a href="https://github.com/checkstyle/checkstyle/issues/14787" class="externalLink">#14787</a>
</li>
<li>
JavadocMethod: false positive on compact constructors for nested record classes.
Author: Anmol
<a href="https://github.com/checkstyle/checkstyle/issues/15683" class="externalLink">#15683</a>
</li>
<li>
`yield` fails Indentation check in switch expressions.
Author: Mohit Attry
<a href="https://github.com/checkstyle/checkstyle/issues/15967" class="externalLink">#15967</a>
</li>
</ul>
<p>Notes:</p>
<ul>
<li>
Remove '//ok' comments from Input files .
Author: MohamedMetwalli5, vishakha-mali, Maximpaxim, Tahanima Chowdhury
<a href="https://github.com/checkstyle/checkstyle/issues/13213" class="externalLink">#13213</a>
</li>
<li>
Clarification: no violation for preceding whitespaces for paragraph tag content.
Author: Anmol
<a href="https://github.com/checkstyle/checkstyle/issues/15762" class="externalLink">#15762</a>
</li>
<li>
Cover pitest survivals with tests.
Author: Ziad Ahmed, Harsh-Agrawal96
<a href="https://github.com/checkstyle/checkstyle/issues/14019" class="externalLink">#14019</a>
</li>
<li>
Provide examples of commands and examples of output for most CLI parameters..
Author: smita_1078
<a href="https://github.com/checkstyle/checkstyle/issues/16294" class="externalLink">#16294</a>
</li>
<li>
Link redirection is not working for VariableDeclarationUsageDistance.
Author: pranavbavdhankar
<a href="https://github.com/checkstyle/checkstyle/issues/16290" class="externalLink">#16290</a>
</li>
<li>
Define violation messages for all violations.
Author: Ziad Ahmed, Usman Shaikh, andrey Ivanov, Oyster-zx, aboro-code, sreekarsai193
<a href="https://github.com/checkstyle/checkstyle/issues/15456" class="externalLink">#15456</a>
</li>
<li>
update JavadocTokenTypes.java to new format of AST print.
Author: Priyambada Roul, Huthaifa, Ziad Ahmed, Zhila Shariat, vishakha-mali,
MohamedMetwalli5, Maximpaxim, Oyster-zx
<a href="https://github.com/checkstyle/checkstyle/issues/14631" class="externalLink">#14631</a>
</li>
<li>
Resolve Pitest Suppression in Pitest-Javadoc Profile.
Author: ahmedyoussefg, Mohit Attry
<a href="https://github.com/checkstyle/checkstyle/issues/13999" class="externalLink">#13999</a>
</li>
<li>
AvoidSynchronizedStatement reported usage of synchronized.
Author: Mohit Attry
<a href="https://github.com/checkstyle/checkstyle/issues/15821" class="externalLink">#15821</a>
</li>
<li>
Enforce file size on Java inputs.
Author: Amit Kumar Deohoria, Ziad Ahmed, smita_1078, ahmedyoussefg, Aryan Sankar,
Harsh-Agrawal96
<a href="https://github.com/checkstyle/checkstyle/issues/11163" class="externalLink">#11163</a>
</li>
<li>
Enable examples tests.
Author: Broilzzz, ahmedyoussefg, ElinaZoldnere, aboro-code
<a href="https://github.com/checkstyle/checkstyle/issues/13345" class="externalLink">#13345</a>
</li>
<li>
Update doc for MissingSwitchDefault.
Author: Huthaifa
<a href="https://github.com/checkstyle/checkstyle/issues/16262" class="externalLink">#16262</a>
</li>
<li>
Inprove website rendering.
Author: Mauryan Kansara, Harsh-Agrawal96, ZaeemSheikh
<a href="https://github.com/checkstyle/checkstyle/issues/16243" class="externalLink">#16243</a>
</li>
<li>
UI Overlap Issue in Checkstyle Documentation Sidebar.
Author: ZaeemSheikh
<a href="https://github.com/checkstyle/checkstyle/issues/16291" class="externalLink">#16291</a>
</li>
<li>
Source code syntax highlights in web pages.
Author: smita_1078
<a href="https://github.com/checkstyle/checkstyle/issues/16073" class="externalLink">#16073</a>
</li>
<li>
put validation for "(default)" in Inputs.
Author: Anmol
<a href="https://github.com/checkstyle/checkstyle/issues/15983" class="externalLink">#15983</a>
</li>
<li>
Add support of filtered violation messages to BDD Inputs.
Author: Harsh-Agrawal96
<a href="https://github.com/checkstyle/checkstyle/issues/15534" class="externalLink">#15534</a>
</li>
<li>
Expand XPath IT Regression Testing.
Author: Mostafahassen1
<a href="https://github.com/checkstyle/checkstyle/issues/6207" class="externalLink">#6207</a>
</li>
<li>
Workflow `regression-report.yml` should support of config bundles with extra
configuration files (Header check).
Author: piyush kumar sadangi
<a href="https://github.com/checkstyle/checkstyle/issues/16121" class="externalLink">#16121</a>
</li>
<li>
FileTabCharacter: update doc to mention that only first violation is reported for
default configuration.
Author: ElinaZoldnere
<a href="https://github.com/checkstyle/checkstyle/issues/16225" class="externalLink">#16225</a>
</li>
</ul>
</section>
<section><a id="Release_10.21.2"></a>
<h1>Release 10.21.2</h1>
<div class="releaseDate">26.01.2025</div>
<p>Bug fixes:</p>
<ul>
<li>
`lineWrappingIndentation` falsely detects incorrect indentation for text blocks.
Author: Mohit Attry
<a href="https://github.com/checkstyle/checkstyle/issues/15939" class="externalLink">#15939</a>
</li>
<li>
`ignoreFieldDeclaration` property should have the highest priority in MagicNumberCheck.
Author: Anmol
<a href="https://github.com/checkstyle/checkstyle/issues/16101" class="externalLink">#16101</a>
</li>
</ul>
<p>Notes:</p>
<ul>
<li>
dependency: bump org.apache.maven.plugins:maven-site-plugin from 3.12.1 to 3.21.0.
Author: Mauryan Kansara, Roman Ivanov
<a href="https://github.com/checkstyle/checkstyle/issues/16077" class="externalLink">#16077</a>
</li>
<li>
Enable examples tests.
Author: Amit Kumar Deohoria, Usman Shaikh, ElinaZoldnere, Anmol, Harsh-Agrawal96
<a href="https://github.com/checkstyle/checkstyle/issues/13345" class="externalLink">#13345</a>
</li>
<li>
Remove '//ok' comments from Input files .
Author: smita_1078, Harsh-Agrawal96, aboro-code, Vignesh Mudhiraj
<a href="https://github.com/checkstyle/checkstyle/issues/13213" class="externalLink">#13213</a>
</li>
<li>
update JavadocTokenTypes.java to new format of AST print.
Author: Ahil Ahmed, Devang Gupta, smita_1078, Aryan Rana, Velavan5, ElinaZoldnere,
Palash Chitnavis, andrey Ivanov, souvikrajsingh, aboro-code, Harsh-Agrawal96,
Praveen Yadahalli, malakelbanna
<a href="https://github.com/checkstyle/checkstyle/issues/14631" class="externalLink">#14631</a>
</li>
<li>
Issue #16077: Removed text under banner images in menu.
Author: Roman Ivanov
<a href="https://github.com/checkstyle/checkstyle/issues/16213" class="externalLink">#16213</a>
</li>
<li>
Define violation messages for all violations.
Author: sumiyak96, smita_1078, Alka Kumari, Aryan Rana, ElinaZoldnere, Harsh-Agrawal96
<a href="https://github.com/checkstyle/checkstyle/issues/15456" class="externalLink">#15456</a>
</li>
<li>
Website: Open External Links in New Tabs for Better User Experience.
Author: Mauryan Kansara
<a href="https://github.com/checkstyle/checkstyle/issues/16178" class="externalLink">#16178</a>
</li>
<li>
Enforce file size on Java inputs.
Author: Broilzzz, Aryan Sankar, Vignesh Mudhiraj
<a href="https://github.com/checkstyle/checkstyle/issues/11163" class="externalLink">#11163</a>
</li>
<li>
use new nio jdk api instead of all api.
Author: Roman Ivanov
<a href="https://github.com/checkstyle/checkstyle/issues/16155" class="externalLink">#16155</a>
</li>
<li>
Expand XPath IT Regression Testing.
Author: Anmol
<a href="https://github.com/checkstyle/checkstyle/issues/6207" class="externalLink">#6207</a>
</li>
<li>
Test to ensure website checks/filters are in alphabetical order at summary pages.
Author: Mohit Attry
<a href="https://github.com/checkstyle/checkstyle/issues/16013" class="externalLink">#16013</a>
</li>
<li>
Expandable menu for mobile website.
Author: Mauryan Kansara
<a href="https://github.com/checkstyle/checkstyle/issues/8244" class="externalLink">#8244</a>
</li>
</ul>
</section>
<section><a id="Release_10.21.1"></a>
<h1>Release 10.21.1</h1>
<div class="releaseDate">28.12.2024</div>
<p>Bug fixes:</p>
<ul>
<li>
UnusedLocalVariable: False Positive when inner class has same field as variable .
Author: Konstantinos Koutsilis
<a href="https://github.com/checkstyle/checkstyle/issues/11374" class="externalLink">#11374</a>
</li>
</ul>
<p>Notes:</p>
<ul>
<li>
Refactor SummaryJavadoc to avoid null usage .
Author: Mohit Attry
<a href="https://github.com/checkstyle/checkstyle/issues/14881" class="externalLink">#14881</a>
</li>
<li>
Enable examples tests.
Author: Mostafahassen1, Amit Kumar Deohoria, Anmol
<a href="https://github.com/checkstyle/checkstyle/issues/13345" class="externalLink">#13345</a>
</li>
<li>
update JavadocTokenTypes.java to new format of AST print.
Author: Rohan Gupta, Aryan Sankar, sreekarsai193
<a href="https://github.com/checkstyle/checkstyle/issues/14631" class="externalLink">#14631</a>
</li>
<li>
Remove '//ok' comments from Input files .
Author: sumiyaaax, Anmol
<a href="https://github.com/checkstyle/checkstyle/issues/13213" class="externalLink">#13213</a>
</li>
<li>
Resolve Pitest Suppression in Pitest-Javadoc Profile.
Author: Mohit Attry
<a href="https://github.com/checkstyle/checkstyle/issues/13999" class="externalLink">#13999</a>
</li>
<li>
Expand XPath IT Regression Testing.
Author: ahmedyoussefg
<a href="https://github.com/checkstyle/checkstyle/issues/6207" class="externalLink">#6207</a>
</li>
</ul>
</section>
<section><a id="Release_10.21.0"></a>
<h1>Release 10.21.0</h1>
<div class="releaseDate">12.12.2024</div>
<p>New:</p>
<ul>
<li>
Expand Default Value of `constantWaiverParentToken` in MagicNumberCheck with All
Operators.
Author: mahfouz72
<a href="https://github.com/checkstyle/checkstyle/issues/15985" class="externalLink">#15985</a>
</li>
</ul>
<p>Notes:</p>
<ul>
<li>
Enable examples tests.
Author: Amit Kumar Deohoria, Ivan Babushkin
<a href="https://github.com/checkstyle/checkstyle/issues/13345" class="externalLink">#13345</a>
</li>
<li>
GitHub action to execute latest checkstyle release on provided conf and source .
Author: Roman Ivanov
<a href="https://github.com/checkstyle/checkstyle/issues/15955" class="externalLink">#15955</a>
</li>
<li>
https://checkstyle.org/checks/ Gives a 404.
Author: Mauryan Kansara
<a href="https://github.com/checkstyle/checkstyle/issues/13494" class="externalLink">#13494</a>
</li>
<li>
Refactor SummaryJavadoc to avoid null usage .
Author: Mohit Attry
<a href="https://github.com/checkstyle/checkstyle/issues/14881" class="externalLink">#14881</a>
</li>
<li>
Test to ensure website checks/filters are in alphabetical order.
Author: Mohit Attry
<a href="https://github.com/checkstyle/checkstyle/issues/14840" class="externalLink">#14840</a>
</li>
<li>
Expand XPath IT Regression Testing.
Author: Ivan Babushkin
<a href="https://github.com/checkstyle/checkstyle/issues/6207" class="externalLink">#6207</a>
</li>
<li>
Define violation messages for all violations..
Author: Ivan Babushkin
<a href="https://github.com/checkstyle/checkstyle/issues/15456" class="externalLink">#15456</a>
</li>
<li>
update JavadocTokenTypes.java to new format of AST print.
Author: RawanWgih
<a href="https://github.com/checkstyle/checkstyle/issues/14631" class="externalLink">#14631</a>
</li>
<li>
Remove '//ok' comments from Input files .
Author: malakelbanna
<a href="https://github.com/checkstyle/checkstyle/issues/13213" class="externalLink">#13213</a>
</li>
</ul>
</section>
<section><a id="Release_10.20.2"></a>
<h1>Release 10.20.2</h1>
<div class="releaseDate">30.11.2024</div>
<p>Bug fixes:</p>
<ul>
<li>
ArrayIndexOutOfBoundsException on indentation check of try-with-resources.
Author: nick mancuso
<a href="https://github.com/checkstyle/checkstyle/issues/15943" class="externalLink">#15943</a>
</li>
<li>
Solving parsing errors for missing description in block tags.
Author: Omar Bakry
<a href="https://github.com/checkstyle/checkstyle/issues/13061" class="externalLink">#13061</a>
</li>
<li>
JavadocType: False negative for unknown tag with no description.
Author: Andrei Paikin
<a href="https://github.com/checkstyle/checkstyle/issues/14573" class="externalLink">#14573</a>
</li>
<li>
WriteTag reports violation with confusing message when there is no javadoc.
Author: Mohanad
<a href="https://github.com/checkstyle/checkstyle/issues/11584" class="externalLink">#11584</a>
</li>
</ul>
<p>Notes:</p>
<ul>
<li>
Remove '//ok' comments from Input files .
Author: Ivan Babushkin
<a href="https://github.com/checkstyle/checkstyle/issues/13213" class="externalLink">#13213</a>
</li>
<li>
Enable examples tests.
Author: Amit Kumar Deohoria, SteLeo1602, akanksha, Kushagra-Sedwal
<a href="https://github.com/checkstyle/checkstyle/issues/13345" class="externalLink">#13345</a>
</li>
<li>
doc: Fix Example3 in MagicNumberCheck Docs.
Author: mahfouz72
</li>
<li>
Forbid Files.createTempDirectory in Checkstyle and replace with @TempDir.
Author: Roman Ivanov
<a href="https://github.com/checkstyle/checkstyle/issues/14220" class="externalLink">#14220</a>
</li>
<li>
Expand XPath IT Regression Testing.
Author: akanksha, Kushagra-Sedwal
<a href="https://github.com/checkstyle/checkstyle/issues/6207" class="externalLink">#6207</a>
</li>
<li>
avoid reliance on `File.createTempFile` implementation d….
Author: Stephan Schroevers
<a href="https://github.com/checkstyle/checkstyle/issues/15937" class="externalLink">#15937</a>
</li>
<li>
Cover pitest survivals with tests.
Author: akanksha
<a href="https://github.com/checkstyle/checkstyle/issues/14019" class="externalLink">#14019</a>
</li>
<li>
Fix existing cases of `getFileContents()` usage.
Author: Mohit Attry
<a href="https://github.com/checkstyle/checkstyle/issues/11166" class="externalLink">#11166</a>
</li>