-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathreleasenotes_old_8-35_10-26.html
More file actions
13049 lines (10667 loc) · 455 KB
/
releasenotes_old_8-35_10-26.html
File metadata and controls
13049 lines (10667 loc) · 455 KB
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_old_8-35_10-26.xml at 2026-05-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>Old 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" defer async></script>
<script type="text/javascript" src="./js/anchors.js" defer async></script>
<script type="text/javascript"
src="./js/google-analytics.js" defer async></script>
<script type="text/javascript"
src="./js/copy-clipboard.js" defer async></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-ruler.png" /></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: 2026-05-02</li>
<li id="projectVersion" class="pull-right"><span class="divider">|</span>Version: 13.4.2</li>
<li class="pull-right"><a>toTop</a></li>
</ul>
</div>
</header>
<div class="row-fluid">
<header id="leftColumn" class="span4">
<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><a href="releasenotes.html">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>
<li><a href="xpath.html">XPath</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>
<li><a href="result_reports.html">Result Reports</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="openjdk_style.html">OpenJDK'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="span8">
<section><a id="Release_10.26.1"></a>
<h1>Release 10.26.1</h1>
<div class="releaseDate">29.06.2025</div>
<p>Bug fixes:</p>
<ul>
<li>
NewlineAtEndOfFileCheck and empty files (size 0).
Author: Eduard-Cristian Stefan
<a href="https://github.com/checkstyle/checkstyle/issues/17250" class="externalLink">#17250</a>
</li>
</ul>
<p>Notes:</p>
<ul>
<li>
Preparation for Migration of Checkstyle Codebase to Java 17.
Author: Amit Kumar Deohoria
<a href="https://github.com/checkstyle/checkstyle/issues/17168" class="externalLink">#17168</a>
</li>
<li>
Add data to javadoc of Check to indicate true version of module properties inherited
from the abstract parent class.
Author: SteLeo1602
<a href="https://github.com/checkstyle/checkstyle/issues/17225" class="externalLink">#17225</a>
</li>
</ul>
</section>
<section><a id="Release_10.26.0"></a>
<h1>Release 10.26.0</h1>
<div class="releaseDate">24.06.2025</div>
<p>New:</p>
<ul>
<li>
Add Check Support for Java 21 Record Pattern : New Check PatternVariableAssignment.
Author: SteLeo1602
<a href="https://github.com/checkstyle/checkstyle/issues/14949" class="externalLink">#14949</a>
</li>
</ul>
<p>Bug fixes:</p>
<ul>
<li>
Indentation check doesn't give violation when google formatter does.
Author: Mohit Attry
<a href="https://github.com/checkstyle/checkstyle/issues/8965" class="externalLink">#8965</a>
</li>
<li>
False positive on indentation for Annotation Arrays.
Author: Mohit Attry
<a href="https://github.com/checkstyle/checkstyle/issues/17122" class="externalLink">#17122</a>
</li>
</ul>
<p>Notes:</p>
<ul>
<li>
Add data to javadoc of Check to indicate true version of module properties inherited
from the abstract parent class.
Author: SteLeo1602
<a href="https://github.com/checkstyle/checkstyle/issues/17225" class="externalLink">#17225</a>
</li>
<li>
Preparation for Migration of Checkstyle Codebase to Java 17.
Author: Amit Kumar Deohoria
<a href="https://github.com/checkstyle/checkstyle/issues/17168" class="externalLink">#17168</a>
</li>
<li>
PropertyCacheFileTest.testPathToCacheContainsOnlyFileName is failing.
Author: Harsh-Agrawal96
<a href="https://github.com/checkstyle/checkstyle/issues/13746" class="externalLink">#13746</a>
</li>
<li>
update JavadocTokenTypes.java to new format of AST print.
Author: saloni-tkhule8
<a href="https://github.com/checkstyle/checkstyle/issues/14631" class="externalLink">#14631</a>
</li>
</ul>
</section>
<section><a id="Release_10.25.1"></a>
<h1>Release 10.25.1</h1>
<div class="releaseDate">21.06.2025</div>
<p>Bug fixes:</p>
<ul>
<li>
checkstyle expects different indentation for switch cases..
Author: Aziz-755
<a href="https://github.com/checkstyle/checkstyle/issues/17167" class="externalLink">#17167</a>
</li>
</ul>
<p>Notes:</p>
<ul>
<li>
Fix the problem when property of module has older version than the module's.
Author: SteLeo1602
<a href="https://github.com/checkstyle/checkstyle/issues/17237" class="externalLink">#17237</a>
</li>
<li>
Preparation for Migration of Checkstyle Codebase to Java 17.
Author: Amit Kumar Deohoria, Roman Ivanov
<a href="https://github.com/checkstyle/checkstyle/issues/17168" class="externalLink">#17168</a>
</li>
<li>
Updating properties in Input files to mention all default properties,.
Author: atharv
<a href="https://github.com/checkstyle/checkstyle/issues/16807" class="externalLink">#16807</a>
</li>
<li>
use new nio jdk api instead of all api.
Author: atharv
<a href="https://github.com/checkstyle/checkstyle/issues/16155" class="externalLink">#16155</a>
</li>
<li>
Validattion of xdoc files to have separtor between examples.
Author: smita_1078
<a href="https://github.com/checkstyle/checkstyle/issues/17186" class="externalLink">#17186</a>
</li>
<li>
Review latest changes at Google style guide.
Author: Mohit Attry
<a href="https://github.com/checkstyle/checkstyle/issues/17162" class="externalLink">#17162</a>
</li>
<li>
CI is failing on 'validation.sh no-violation-test-josm'.
Author: Amit Kumar Deohoria
<a href="https://github.com/checkstyle/checkstyle/issues/9807" class="externalLink">#9807</a>
</li>
<li>
Typo in check name in 10.25.0 release notes.
Author: Brijeshthummar02
<a href="https://github.com/checkstyle/checkstyle/issues/17160" class="externalLink">#17160</a>
</li>
</ul>
</section>
<section><a id="Release_10.25.0"></a>
<h1>Release 10.25.0</h1>
<div class="releaseDate">31.05.2025</div>
<p>New:</p>
<ul>
<li>
Add Check Support for Java 21 Record Pattern : New Check
UnnecessaryNullCheckWithInstanceOf.
Author: Anmol
<a href="https://github.com/checkstyle/checkstyle/issues/14945" class="externalLink">#14945</a>
</li>
</ul>
<p>Bug fixes:</p>
<ul>
<li>
False positives for google_checks when using switch expression in lambda.
Author: Aziz-755
<a href="https://github.com/checkstyle/checkstyle/issues/17120" class="externalLink">#17120</a>
</li>
</ul>
<p>Notes:</p>
<ul>
<li>
infra: allow cirrus to run on PR from its own repository.
Author: Roman Ivanov
<a href="https://github.com/checkstyle/checkstyle/issues/17146" class="externalLink">#17146</a>
</li>
<li>
CI Failure in Check no broken links.
Author: Brijeshthummar02
<a href="https://github.com/checkstyle/checkstyle/issues/17142" class="externalLink">#17142</a>
</li>
<li>
cirrus CI is faililng with java.exe is not recognized.
Author: Brijeshthummar02
<a href="https://github.com/checkstyle/checkstyle/issues/17139" class="externalLink">#17139</a>
</li>
<li>
Add hazelcast project to no-error CI job.
Author: Amit Kumar Deohoria
<a href="https://github.com/checkstyle/checkstyle/issues/17127" class="externalLink">#17127</a>
</li>
<li>
Add JUnit Validation to Ensure New Checks Are Listed in `index.xml` Categories.
Author: Sersawy
<a href="https://github.com/checkstyle/checkstyle/issues/17125" class="externalLink">#17125</a>
</li>
<li>
Missing MultiFileRegexpHeader into Header index.html.
Author: Sersawy
<a href="https://github.com/checkstyle/checkstyle/issues/17123" class="externalLink">#17123</a>
</li>
<li>
Fix code blocks formatting in cmdline.html#Download_and_Run.
Author: Brijeshthummar02
<a href="https://github.com/checkstyle/checkstyle/issues/17113" class="externalLink">#17113</a>
</li>
<li>
update JavadocTokenTypes.java to new format of AST print.
Author: yukti-nandwana
<a href="https://github.com/checkstyle/checkstyle/issues/14631" class="externalLink">#14631</a>
</li>
<li>
Fix existing cases of `getFileContents()` usage.
Author: Rohanraj123
<a href="https://github.com/checkstyle/checkstyle/issues/11166" class="externalLink">#11166</a>
</li>
</ul>
</section>
<section><a id="Release_10.24.0"></a>
<h1>Release 10.24.0</h1>
<div class="releaseDate">21.05.2025</div>
<p>New:</p>
<ul>
<li>
CLI: generate suppresion xml content (SuppressionFilter) for certain Checks but whole
file with violation.
Author: Harsh-Agrawal96
<a href="https://github.com/checkstyle/checkstyle/issues/5983" class="externalLink">#5983</a>
</li>
<li>
New Check: MultiFileRegexpHeader to allow specify few header file to validate.
Author: abdelrhmansersawy
<a href="https://github.com/checkstyle/checkstyle/issues/16174" class="externalLink">#16174</a>
</li>
</ul>
<p>Bug fixes:</p>
<ul>
<li>
`private` enums being treated as public in `JavadocVariableCheck`.
Author: Jack
<a href="https://github.com/checkstyle/checkstyle/issues/16786" class="externalLink">#16786</a>
</li>
<li>
EmptyLineSeparator check does not validate newlines before comments in Interfaces.
Author: SteLeo1602
<a href="https://github.com/checkstyle/checkstyle/issues/16564" class="externalLink">#16564</a>
</li>
<li>
SuppressWithPlainTextCommentFilter is slow on files with multiple errors.
Author: Harsh-Agrawal96
<a href="https://github.com/checkstyle/checkstyle/issues/8807" class="externalLink">#8807</a>
</li>
<li>
incompatibility with google-java-format: CatchFormalParameter is indented by 4 spaces
instead of 2.
Author: Mohit Attry
<a href="https://github.com/checkstyle/checkstyle/issues/14654" class="externalLink">#14654</a>
</li>
<li>
Indentation of the Block child of switch rule is not validated when no braces.
Author: MedAzizFrigui
<a href="https://github.com/checkstyle/checkstyle/issues/15098" class="externalLink">#15098</a>
</li>
</ul>
<p>Notes:</p>
<ul>
<li>
fix log typo.
Author: Vincent Potucek
<a href="https://github.com/checkstyle/checkstyle/issues/17110" class="externalLink">#17110</a>
</li>
<li>
Resolve Pitest Suppression in Pitest-Javadoc Profile.
Author: abdelrhmansersawy
<a href="https://github.com/checkstyle/checkstyle/issues/13999" class="externalLink">#13999</a>
</li>
<li>
update JavadocTokenTypes.java to new format of AST print.
Author: yukti-nandwana
<a href="https://github.com/checkstyle/checkstyle/issues/14631" class="externalLink">#14631</a>
</li>
<li>
doc: Add GSoC guide tip on learning beyond code, link article on code review sentiment.
Author: Sersawy
</li>
<li>
Validate that all Inputs mentioned all default properties in config.
Author: Anmol
<a href="https://github.com/checkstyle/checkstyle/issues/16378" class="externalLink">#16378</a>
</li>
<li>
Fix indentation of generated content cli for mode '-g'.
Author: Brijeshthummar02
<a href="https://github.com/checkstyle/checkstyle/issues/17106" class="externalLink">#17106</a>
</li>
<li>
Adopt Maven Wrapper and Update CI to Fully Use It.
Author: Brijeshthummar02
<a href="https://github.com/checkstyle/checkstyle/issues/16850" class="externalLink">#16850</a>
</li>
<li>
doc: update AuditListener image format and dimensions.
Author: Brijeshthummar02
</li>
<li>
include PMD `UnusedPrivateMethod`.
Author: Vincent Potucek
<a href="https://github.com/checkstyle/checkstyle/issues/16961" class="externalLink">#16961</a>
</li>
<li>
include PMD `GuardLogStatement`.
Author: Vincent Potucek
<a href="https://github.com/checkstyle/checkstyle/issues/16962" class="externalLink">#16962</a>
</li>
<li>
Add example to MatchXpatch on how to validate Constructor Count in classes .
Author: atharv
<a href="https://github.com/checkstyle/checkstyle/issues/17059" class="externalLink">#17059</a>
</li>
<li>
Resolve CheckerFramework violations.
Author: Rohanraj123
<a href="https://github.com/checkstyle/checkstyle/issues/14084" class="externalLink">#14084</a>
</li>
<li>
Infra: Replace REPOSITORY_OWNER CI ENV var with built-in GITHUB_REPOSITORY_OWNER.
Author: Jack Green
<a href="https://github.com/checkstyle/checkstyle/issues/17061" class="externalLink">#17061</a>
</li>
<li>
Update Filters Exampes to use verifyFilterWithInlineConfigParser.
Author: Usman Shaikh, Ziad Abd El-Fatah
<a href="https://github.com/checkstyle/checkstyle/issues/16738" class="externalLink">#16738</a>
</li>
<li>
Update vim plugin details.
Author: Brijeshthummar02
<a href="https://github.com/checkstyle/checkstyle/issues/6173" class="externalLink">#6173</a>
</li>
<li>
doc: Add UML diagram for Filter and update image reference in documentation.
Author: Brijeshthummar02
</li>
<li>
Rename all 'ex' varaibles to 'exc' and forrbit by cheksttyle check
'ex'.
Author: Praveen Kumar
<a href="https://github.com/checkstyle/checkstyle/issues/17017" class="externalLink">#17017</a>
</li>
<li>
migrate pgjdbc no-error execution to jdk21.
Author: MD. Zaid
<a href="https://github.com/checkstyle/checkstyle/issues/17001" class="externalLink">#17001</a>
</li>
<li>
SarifLoggerTest.java to use verifyWithInlineConfigParserAndLogger.
Author: Praveen Kumar
<a href="https://github.com/checkstyle/checkstyle/issues/16361" class="externalLink">#16361</a>
</li>
<li>
Enforce formatting of `// violation` and `// ok` comments.
Author: smita_1078
<a href="https://github.com/checkstyle/checkstyle/issues/11249" class="externalLink">#11249</a>
</li>
<li>
inconsistent linkcheck errors.
Author: Roman Ivanov
<a href="https://github.com/checkstyle/checkstyle/issues/17015" class="externalLink">#17015</a>
</li>
<li>
Incorrect language class assigned to code blocks in documentation (e.g., logs getting
language-xml, Java code getting language-xml).
Author: Brijeshthummar02
<a href="https://github.com/checkstyle/checkstyle/issues/16790" class="externalLink">#16790</a>
</li>
<li>
update documentation: VariableDeclarationUsageDistance on block of initialization
methods.
Author: Praveen Kumar
<a href="https://github.com/checkstyle/checkstyle/issues/13155" class="externalLink">#13155</a>
</li>
<li>
Update IndentationCheckTest to use verifyWarns.
Author: Praveen Kumar, Prarthana-Ramesh
<a href="https://github.com/checkstyle/checkstyle/issues/16880" class="externalLink">#16880</a>
</li>
<li>
Remove config_ conditions from xdocs tests.
Author: MD. Zaid
<a href="https://github.com/checkstyle/checkstyle/issues/13132" class="externalLink">#13132</a>
</li>
<li>
XMLLoggerTest.java to use verifyWithInlineConfigParserAndXmlLogger.
Author: Praveen Kumar
<a href="https://github.com/checkstyle/checkstyle/issues/16360" class="externalLink">#16360</a>
</li>
<li>
use new nio jdk api instead of all api.
Author: Amit Kumar Deohoria, atharv
<a href="https://github.com/checkstyle/checkstyle/issues/16155" class="externalLink">#16155</a>
</li>
<li>
Cover pitest survivals with tests.
Author: atharv
<a href="https://github.com/checkstyle/checkstyle/issues/14019" class="externalLink">#14019</a>
</li>
</ul>
</section>
<section><a id="Release_10.23.1"></a>
<h1>Release 10.23.1</h1>
<div class="releaseDate">27.04.2025</div>
<p>Bug fixes:</p>
<ul>
<li>
JavadocParagraph false violation when <p> is inside of
<div></div>.
Author: MedAzizFrigui
<a href="https://github.com/checkstyle/checkstyle/issues/16630" class="externalLink">#16630</a>
</li>
<li>
google_checks.xml: remove xpath suppression and false-positive indentation violations
for block codes.
Author: Mohit Attry
<a href="https://github.com/checkstyle/checkstyle/issues/15769" class="externalLink">#15769</a>
</li>
<li>
Fix false-negatives regarding LITERAL_CATCH to detect K&R Blocks in
google_checks.xml.
Author: Anmol
<a href="https://github.com/checkstyle/checkstyle/issues/15792" class="externalLink">#15792</a>
</li>
<li>
SuppressWarningsHolder should allow usage of simple name of Checks in aliasList.
Author: Harsh-Agrawal96
<a href="https://github.com/checkstyle/checkstyle/issues/11641" class="externalLink">#11641</a>
</li>
</ul>
<p>Notes:</p>
<ul>
<li>
doc: remove outdated note about ANTLR versions in Javadoc vs Java grammar explanation.
Author: mahfouz72
</li>
<li>
Define violation messages for all violations.
Author: Praveen Kumar, Brijeshthummar02
<a href="https://github.com/checkstyle/checkstyle/issues/15456" class="externalLink">#15456</a>
</li>
<li>
Missing test for InputIndentationInvalidArrayInitIndent.java with
forceStrictCondition=false.
Author: Praveen Kumar
<a href="https://github.com/checkstyle/checkstyle/issues/16869" class="externalLink">#16869</a>
</li>
<li>
Update Filters Exampes to use verifyFilterWithInlineConfigParser.
Author: Usman Shaikh
<a href="https://github.com/checkstyle/checkstyle/issues/16738" class="externalLink">#16738</a>
</li>
<li>
Cover pitest survivals with tests.
Author: Priyambada Roul, atharv, abdelrhmansersawy, Brijeshthummar02
<a href="https://github.com/checkstyle/checkstyle/issues/14019" class="externalLink">#14019</a>
</li>
<li>
disallow import of `java.util.concurrent.atomic.AtomicInteger` yet, it is still used in
`api\SeverityLevelCounter.java` and `checks\UniquePropertiesCheck.java`.
Author: Vincent Potucek
<a href="https://github.com/checkstyle/checkstyle/issues/16903" class="externalLink">#16903</a>
</li>
<li>
Update CLI help to mention that folder also can be used .
Author: smita_1078
<a href="https://github.com/checkstyle/checkstyle/issues/12910" class="externalLink">#12910</a>
</li>
<li>
Extend documentation on no lombok support.
Author: Praveen Kumar
<a href="https://github.com/checkstyle/checkstyle/issues/13538" class="externalLink">#13538</a>
</li>
<li>
separate examples by horizontal line.
Author: smita_1078
<a href="https://github.com/checkstyle/checkstyle/issues/16333" class="externalLink">#16333</a>
</li>
<li>
Configuration website does not allow linking to Examples.
Author: smita_1078
<a href="https://github.com/checkstyle/checkstyle/issues/14879" class="externalLink">#14879</a>
</li>
<li>
Remove usage of AtomicInteger from NPathComplexityCheck.
Author: atharv, Muratcan Yeldan
<a href="https://github.com/checkstyle/checkstyle/issues/16882" class="externalLink">#16882</a>
</li>
<li>
update JavadocTokenTypes.java to new format of AST print.
Author: yukti-nandwana, Praveen Kumar, Brijeshthummar02, ZaeemSheikh
<a href="https://github.com/checkstyle/checkstyle/issues/14631" class="externalLink">#14631</a>
</li>
<li>
chore: use span classes for layout .
Author: Seth Falco
<a href="https://github.com/checkstyle/checkstyle/issues/16839" class="externalLink">#16839</a>
</li>
<li>
Website layout breaks at viewport width >= 1999px.
Author: Seth Falco
<a href="https://github.com/checkstyle/checkstyle/issues/16825" class="externalLink">#16825</a>
</li>
<li>
fix `OSX build` when `.DS_Store` is present.
Author: Vincent Potucek
<a href="https://github.com/checkstyle/checkstyle/issues/16559" class="externalLink">#16559</a>
</li>
<li>
doc: remove SonarCloud badge from README.md.
Author: Brijeshthummar02
</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>
Enforce file size on Java inputs.
Author: Praveen Kumar
<a href="https://github.com/checkstyle/checkstyle/issues/11163" class="externalLink">#11163</a>
</li>
<li>
infra: verify-no-exception-configs is in semaphore ci.
Author: Vincent Potucek
<a href="https://github.com/checkstyle/checkstyle/issues/16841" class="externalLink">#16841</a>
</li>
<li>
align ubuntu image version `ubuntu-22.04` -> `ubuntu-24.04`.
Author: Vincent Potucek
<a href="https://github.com/checkstyle/checkstyle/issues/16829" class="externalLink">#16829</a>
</li>
<li>
doc: improve variableDeclarationUsage...Check's docs to avoid confusion on
calculation of distance.
Author: Mohit Attry
</li>
<li>
Resolve CheckerFramework violations.
Author: Rohanraj123
<a href="https://github.com/checkstyle/checkstyle/issues/14084" class="externalLink">#14084</a>
</li>
<li>
fix whitespace typo in `Note : ` -> `Note: `.
Author: Vincent Potucek
<a href="https://github.com/checkstyle/checkstyle/issues/16811" class="externalLink">#16811</a>
</li>
<li>
Bad links on Sponsoring page.
Author: Brijeshthummar02
<a href="https://github.com/checkstyle/checkstyle/issues/16753" class="externalLink">#16753</a>
</li>
<li>
add Content section to config.xml and writinglisteners.xml.vm.
Author: Brijeshthummar02
<a href="https://github.com/checkstyle/checkstyle/issues/1241" class="externalLink">#1241</a>
</li>
<li>
Broken Backport Links on Website.
Author: Brijeshthummar02
<a href="https://github.com/checkstyle/checkstyle/issues/16816" class="externalLink">#16816</a>
</li>
<li>
Fix existing cases of `getFileContents()` usage.
Author: atharv
<a href="https://github.com/checkstyle/checkstyle/issues/11166" class="externalLink">#11166</a>
</li>
<li>
Broken Flattr Link and Image on Sponsoring Page.
Author: Brijeshthummar02
<a href="https://github.com/checkstyle/checkstyle/issues/16759" class="externalLink">#16759</a>
</li>
<li>
Resolve Pitest Suppression in Pitest-Javadoc Profile.
Author: Prarthana-Ramesh
<a href="https://github.com/checkstyle/checkstyle/issues/13999" class="externalLink">#13999</a>
</li>
<li>
SarifLoggerTest.java to use verifyWithInlineConfigParserAndLogger.
Author: sersawy
<a href="https://github.com/checkstyle/checkstyle/issues/16361" class="externalLink">#16361</a>
</li>
</ul>
</section>
<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>