forked from apache/commons-bcel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RELEASE-NOTES.txt
991 lines (716 loc) · 43.7 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
Apache Commons BCEL
Version 6.7.0
RELEASE NOTES
INTRODUCTION:
The Apache Commons BCEL team is pleased to announce the release of
Apache Commons BCEL 6.7.0!
The Byte Code Engineering Library (BCEL) is intended to give users a convenient
way to analyze, create, and manipulate compiled .class files. Classes are
represented by objects containing all the symbolic information of the given
class: methods, fields and byte code instructions.
Maintenance and bug fix release.
NEW FEATURES:
=============
o Add org.apache.bcel.classfile.ClassFormatException.ClassFormatException(Throwable). Thanks to Gary Gregory.
o Add org.apache.bcel.classfile.JavaClass.EXTENSION. Thanks to Gary Gregory.
o Add org.apache.bcel.classfile.Module.EXTENSION. Thanks to Gary Gregory.
o Add org.apache.bcel.util.Args. Thanks to Gary Gregory.
o Add org.apache.bcel.generic.ArrayType.getClassName(). Thanks to Gary Gregory.
o Add org.apache.bcel.generic.Type.getClassName(). Thanks to Gary Gregory.
o Add org.apache.bcel.classfile.Utility.packageToPath(String). Thanks to Gary Gregory.
o org.apache.bcel.classfile.MethodParameter now implements org.apache.bcel.classfile.Node. Thanks to Gary Gregory, Mark Roberts.
o Add org.apache.bcel.classfile.JavaClass.getSourceFilePath(). Thanks to nbauma109, Gary Gregory.
o Add org.apache.bcel.generic.PUSH.PUSH(ConstantPoolGen, ArrayType). Thanks to nbauma109, Gary Gregory.
FIXED BUGS:
===========
o Avoid internal NPE in org.apache.bcel.util.ClassPath.getInputStream(String, String). Thanks to Gary Gregory.
o InstructionConstants.ALOAD_0 value is wrong (regression from 6.6.0). Thanks to Gary Gregory.
o InstructionConstants.DCONST_0 value is wrong (regression from 6.6.0). Thanks to Gary Gregory.
o org.apache.bcel.classfile.Attribute constructors now throw ClassFormatException on invalid name index input. Thanks to Gary Gregory.
o org.apache.bcel.classfile.CodeException constructors now throw ClassFormatException on invalid input. Thanks to Gary Gregory.
o org.apache.bcel.classfile.ConstantInvokeDynamic.ConstantInvokeDynamic(DataInput). Thanks to Gary Gregory.
o org.apache.bcel.classfile.ConstantValue constructors now throw ClassFormatException on invalid length input. Thanks to Gary Gregory.
o org.apache.bcel.classfile.Deprecated constructors now throw ClassFormatException on invalid length input. Thanks to Gary Gregory.
o org.apache.bcel.classfile.EnclosingMethod constructors now throw ClassFormatException on invalid length, class index, or method index input. Thanks to Gary Gregory.
o org.apache.bcel.classfile.ExceptionTable constructors now throw ClassFormatException on invalid input. Thanks to Gary Gregory.
o org.apache.bcel.classfile.InnerClasses constructors now throw ClassFormatException on invalid input. Thanks to Gary Gregory.
o org.apache.bcel.classfile.LineNumber constructors now throw ClassFormatException on invalid input. Thanks to Gary Gregory.
o org.apache.bcel.classfile.LocalVariable constructors now throw ClassFormatException on invalid input. Thanks to Gary Gregory.
o org.apache.bcel.classfile.LocalVariableTable constructors now throw ClassFormatException on invalid input. Thanks to Gary Gregory.
o org.apache.bcel.classfile.LocalVariableTypeTable constructors now throw ClassFormatException on invalid input. Thanks to Gary Gregory.
o org.apache.bcel.classfile.ModuleMainClass constructors now throw ClassFormatException on invalid input. Thanks to Gary Gregory.
o org.apache.bcel.classfile.ModulePackages constructors now throw ClassFormatException on invalid input. Thanks to Gary Gregory.
o org.apache.bcel.classfile.NestHost constructors now throw ClassFormatException on invalid input. Thanks to Gary Gregory.
o org.apache.bcel.classfile.NestMembers constructors now throw ClassFormatException on invalid input. Thanks to Gary Gregory.
o org.apache.bcel.classfile.Signature constructors now throw ClassFormatException on invalid input. Thanks to Gary Gregory.
o org.apache.bcel.classfile.SourceFile constructors now throw ClassFormatException on invalid input. Thanks to Gary Gregory.
o org.apache.bcel.classfile.StackMap constructors now throw ClassFormatException on invalid input. Thanks to Gary Gregory.
o org.apache.bcel.classfile.StackMapEntry.StackMapEntry(DataInput, ConstantPool) reads signed instead of unsigned shorts from its DataInput. Thanks to Gary Gregory.
o org.apache.bcel.classfile.StackMapType.StackMapType(DataInput, ConstantPool) reads signed instead of unsigned shorts from its DataInput. Thanks to Gary Gregory.
o org.apache.bcel.classfile.Synthetic constructors now throw ClassFormatException on invalid length input. Thanks to Gary Gregory.
o org.apache.bcel.util.ClassPath hashCode() and equals() don't match. Thanks to Gary Gregory.
o Fix code duplication in org.apache.bcel.verifier.structurals.ExceptionHandlers.ExceptionHandlers(MethodGen). Thanks to Mark Roberts, Gary Gregory.
o Improve test coverage to bcel/generic and UtilityTest #162. Thanks to Sam Ng, Gary Gregory.
o Code coverage and bug fixes for bcelifier #171. Thanks to nbauma109, Gary Gregory.
o Code coverage and unit tests on the verifier #166. Thanks to nbauma109, Gary Gregory.
o Typo in SimpleElementValue error message #161. Thanks to nbauma109, Gary Gregory.
o org.apache.bcel.classfile.Attribute constructors now throw ClassFormatException on invalid length input. Thanks to Mark Thomas, Gary Gregory.
o References to constant pool entries that are not of the expected type should throw ClassFormatException, not ClassCastException. Thanks to OSS-Fuzz.
o When parsing an invalid class, ensure ClassParser.parse() throws ClassFormatException, not IllegalArgumentException. Thanks to OSS-Fuzz.
o org.apache.bcel.classfile.Code constructors now throw ClassFormatException on invalid input. Thanks to OSS-Fuzz.
o org.apache.bcel.classfile.StackMapType constructors now throw ClassFormatException on invalid input. Thanks to OSS-Fuzz.
o When parsing class files, limit arrays to no more than 255 dimensions as per section 4.4.1 of the JVM specification. Thanks to OSS-Fuzz.
o Tests and coverage for Utility class #175. Thanks to nbauma109.
o Unit tests and coverage for binary operations #174. Thanks to nbauma109.
o Fix possible NullPointerException in org.apache.bcel.classfile.StackMap.setStackMap(StackMapEntry[]). Thanks to Gary Gregory.
CHANGES:
========
o Bump spotbugs-maven-plugin from 4.7.2.2 to 4.7.3.0 #167. Thanks to Gary Gregory.
o Bump jmh.version from 1.35 to 1.36 #170. Thanks to Dependabot.
o Bump pmd from 6.51.0 to 6.52.0. Thanks to Gary Gregory.
o Bump japicmp from 0.16.0 to 0.17.1. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-bcelchanges-report.html
For complete information on Apache Commons BCEL, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons BCEL website:
https://commons.apache.org/proper/commons-bcel
Download it from https://commons.apache.org/proper/commons-bcel/download_bcel.cgi
Have fun!
-Apache Commons BCEL team
Feedback
--------
Open source works best when you give feedback:
https://commons.apache.org/bcel
Please direct all bug reports to JIRA:
https://issues.apache.org/jira/browse/BCEL
Or subscribe to the commons-user mailing list
The Apache Commons Team
-----------------------------------------------------------------------------
Apache Commons BCEL
Version 6.6.1
RELEASE NOTES
INTRODUCTION:
The Apache Commons BCEL team is pleased to announce the release of
Apache Commons BCEL 6.6.1!
The Byte Code Engineering Library (BCEL) is intended to give users a convenient
way to analyze, create, and manipulate compiled .class files. Classes are
represented by objects containing all the symbolic information of the given
class: methods, fields and byte code instructions.
Maintenance and bug fix release.
FIXED BUGS:
===========
o Keep ConstantPool.getConstant(int) backward compatible with 6.5.0 #157. Thanks to Kengo TODA, Gary Gregory.
CHANGES:
========
o Bump actions/setup-java from 3.5.1 to 3.6.0 #159. Thanks to Dependabot.
o Bump spotbugs from 4.7.2 to 4.7.3. Thanks to Gary Gregory.
o Bump pmd from 6.50.0 to 6.51.0. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-bcelchanges-report.html
For complete information on Apache Commons BCEL, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons BCEL website:
https://commons.apache.org/proper/commons-bcel
Download it from https://commons.apache.org/proper/commons-bcel/download_bcel.cgi
Have fun!
-Apache Commons BCEL team
Feedback
--------
Open source works best when you give feedback:
https://commons.apache.org/proper/commons-bcel
Please direct all bug reports to JIRA:
https://issues.apache.org/jira/browse/BCEL
Or subscribe to the commons-user mailing list
The Apache Commons Team
-----------------------------------------------------------------------------
Apache Commons BCEL
Version 6.6.0
RELEASE NOTES
INTRODUCTION:
The Apache Commons BCEL team is pleased to announce the release of
Apache Commons BCEL 6.6.0!
The Byte Code Engineering Library (BCEL) is intended to give users a convenient
way to analyze, create, and manipulate compiled .class files. Classes are
represented by objects containing all the symbolic information of the given
class: methods, fields and byte code instructions.
NEW FEATURES:
=============
o Add github/codeql-action.
o Make Annotations implement Iterable<AnnotationEntry>. Thanks to Gary Gregory.
o Make BootstrapMethods implement Iterable<BootstrapMethod>. Thanks to Gary Gregory.
o Make ConstantPool implement Iterable<Constant>. Thanks to Gary Gregory.
o Make InnerClasses implement Iterable<InnerClass>. Thanks to Gary Gregory.
o Make LineNumberTable implement Iterable<LineNumber>. Thanks to Gary Gregory.
o Make LocalVariableTable implement Iterable<LocalVariable>. Thanks to Gary Gregory.
o Make LocalVariableTypeTable implement Iterable<LocalVariable>. Thanks to Gary Gregory.
o Make MethodParameters implement Iterable<MethodParameter>. Thanks to Gary Gregory.
o Make ParameterAnnotations implement Iterable<ParameterAnnotationEntry>. Thanks to Gary Gregory.
o Add Const.MAJOR_15 Thanks to Gary Gregory.
o Add Const.MAJOR_16 Thanks to Gary Gregory.
o Add Const.MAJOR_17 Thanks to Gary Gregory.
o Add Const.MAJOR_18 Thanks to Gary Gregory.
o Add Const.MAJOR_19 Thanks to Gary Gregory.
o Add Const.MINOR_15 Thanks to Gary Gregory.
o Add Const.MINOR_16 Thanks to Gary Gregory.
o Add Const.MINOR_17 Thanks to Gary Gregory.
o Add Const.MINOR_18 Thanks to Gary Gregory.
o Add Const.MINOR_19 Thanks to Gary Gregory.
FIXED BUGS:
===========
o Improve test case coverage; fix Utility.encode bug #46. Thanks to Mark Roberts, Gary Gregory.
o BCEL-342: Migrate test suite to JUnit Jupiter #68. Thanks to Allon Murienik, Gary Gregory.
o BCEL-343: JUnit Assertion improvement #69. Thanks to Allon Murienik, Gary Gregory.
o Minor improvements to comments and toString() methods #71. Thanks to Mark Roberts.
o Minor Improvements #83. Thanks to Arturo Bernal.
o Inline variable and avoid unnecessary variable. #94. Thanks to Arturo Bernal.
o Formalize PerformanceTest #168. Thanks to Mark Roberts, Gary Gregory.
o Java 8 improvements #95. Thanks to Arturo Bernal.
o BCEL-345: Make documentation wording more inclusive #98. Thanks to Christine Poerschke.
o Force unsigned short for LineNumber.toString() #118. Thanks to Mark Roberts, Gary Gregory.
o Fix IllegalStateException when calling toString(ConstantPool) on a Module or ModuleRequires #125. Thanks to Tim Boudreau, Gary Gregory.
o Generate HTML in UTF-8 instead of whatever happens to be the default platform encoding. Thanks to Gary Gregory.
o BCEL-303: Several fixes to the verifier #117. Thanks to Mark Roberts, Gary Gregory.
o BCEL-307: Several fixes to the verifier #117. Thanks to Mark Roberts, Gary Gregory.
o BCEL-308: Several fixes to the verifier #117. Thanks to Mark Roberts, Gary Gregory.
o BCEL-309: Several fixes to the verifier #117. Thanks to Mark Roberts, Gary Gregory.
o BCEL-311: Several fixes to the verifier #117. Thanks to Mark Roberts, Gary Gregory.
o BCEL-312: Several fixes to the verifier #117. Thanks to Mark Roberts, Gary Gregory.
o BCEL-313: Several fixes to the verifier #117. Thanks to Mark Roberts, Gary Gregory.
o BCEL-337: Several fixes to the verifier #117. Thanks to Mark Roberts, Gary Gregory.
o Close resources #138. Thanks to Michael Ernst, Gary Gregory.
o Improve condy (constant dynamic) support #139. Thanks to Alexander Kriegisch, Gary Gregory.
o Fix typos #140. Thanks to Michael Ernst.
o BCEL-363: Enforce MAX_CP_ENTRIES in ConstantPoolGen and ConstantPool.dump #147. Thanks to Richard Atkins, Gary Gregory.
o Minor Changes #99. Thanks to Arturo Bernal, Gary Gregory.
o Simplify boolean expressions #152. Thanks to Arturo Bernal.
o Use Math.max #151. Thanks to Arturo Bernal.
o org.apache.bcel.classfile.Signature.translate(String) does not detect EOF correctly. Thanks to Gary Gregory.
o Fix SpotBugs [ERROR] High: Found reliance on default encoding in new org.apache.bcel.util.BCELifier(JavaClass, OutputStream): new java.io.PrintWriter(OutputStream) [org.apache.bcel.util.BCELifier] At BCELifier.java:[line 169] DM_DEFAULT_ENCODING. Thanks to Gary Gregory.
o Fix SpotBugs [ERROR] Medium: Unread field: org.apache.bcel.verifier.GraphicalVerifier.packFrame; should this field be static? [org.apache.bcel.verifier.GraphicalVerifier] At GraphicalVerifier.java:[line 43] SS_SHOULD_BE_STATIC. Thanks to Gary Gregory.
o Fix SpotBugs [ERROR] Medium: new org.apache.bcel.util.ModularRuntimeImage(String) creates a java.net.URLClassLoader classloader, which should be performed within a doPrivileged block [org.apache.bcel.util.ModularRuntimeImage] At ModularRuntimeImage.java:[line 68] DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED. Thanks to Gary Gregory.
CHANGES:
========
o Bump actions/cache from 2 to 3.0.10 #88, #93, #110, #119, #149, #154. Thanks to Dependabot, Gary Gregory.
o Bump actions/checkout from 2.3.1 to 3.1.0 #59, #66, #73, #108, #115, #153. Thanks to Dependabot, Gary Gregory.
o Bump actions/setup-java from 1.4.0 to 3.5.1 #62, #67. Thanks to Dependabot, Gary Gregory.
o Bump tests from Apache Commons Lang 3.10 to 3.12.0 Thanks to Gary Gregory.
o Bump commons-parent from 50 to 54. Thanks to Gary Gregory.
o Bump biz.aQute.bndlib from 5.1.0 to 6.3.1, #54, #72, #81, #111. Thanks to Dependabot, Gary Gregory.
o Bump maven-surefire-plugin from 3.0.0-M4 to 3.0.0-M7 #53, #124, #129. Thanks to Dependabot.
o Bump maven-checkstyle-plugin from 3.1.0 to 3.2.0, #77, #141. Thanks to Gary Gregory, Dependabot.
o Bump Jacoco from 0.8.5 to 0.8.8. Thanks to Dependabot, Gary Gregory.
o Bump commons-io from 2.7 to 2.11.0 #65, #96. Thanks to Dependabot, Gary Gregory.
o Bump exec-maven-plugin from 1.6.0 to 3.1.0 #51, #134. Thanks to Dependabot.
o Bump commons.japicmp.version from 0.14.3 to 0.16.0. Thanks to Gary Gregory.
o Bump maven-pmd-plugin from 3.13.0 to 3.19. #74, #103, #116, #130, #142, #144. Thanks to Dependabot.
o Bump pmd from 6.44.0 to 6.50.0. Thanks to Dependabot, Gary Gregory.
o Bump junit-jupiter from 5.7.0 to 5.9.1 #78, #90, #101, #112, #135. Thanks to Dependabot, Gary Gregory.
o Bump jna.version from 5.6.0 to 5.12.1 #84, #102, #109, #120, #131. Thanks to Dependabot.
o Bump jmh.version from 1.19 to 1.35 #92, #100, #122. Thanks to Dependabot.
o Bump maven-javadoc-plugin from 3.2.0 to 3.4.1. Thanks to Gary Gregory.
o Bump maven-bundle-plugin from 5.1.1 to 5.1.8. Thanks to Gary Gregory.
o Bump taglist-maven-plugin from 2.4 to 3.0.0 #114. Thanks to Dependabot.
o Bump spotbugs-maven-plugin from 4.5.3.0 to 4.7.2.1 #128, #132, #136, #144, #155. Thanks to Gary Gregory, Dependabot.
o Bump spotbugs from 4.5.3 to 4.7.1. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-bcelchanges-report.html
For complete information on Apache Commons BCEL, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons BCEL website:
https://commons.apache.org/proper/commons-bcel
Download it from https://commons.apache.org/proper/commons-bcel/download_bcel.cgi
Have fun!
-Apache Commons BCEL team
Feedback
--------
Open source works best when you give feedback:
https://commons.apache.org/bcel
Please direct all bug reports to JIRA:
https://issues.apache.org/jira/browse/BCEL
Or subscribe to the commons-user mailing list
The Apache Commons Team
-----------------------------------------------------------------------------
Apache Commons BCEL
Version 6.5.0
RELEASE NOTES
INTRODUCTION:
The Apache Commons BCEL team is pleased to announce the release of
Apache Commons BCEL 6.5.0!
The Byte Code Engineering Library (BCEL) is intended to give users a convenient
way to analyze, create, and manipulate compiled .class files. Classes are
represented by objects containing all the symbolic information of the given
class: methods, fields and byte code instructions.
Minor feature and bug fix release.
FIXED BUGS:
===========
o BCEL-329: MethodGen duplicates some attributes. Thanks to Gary Gregory, Mark Roberts.
CHANGES:
========
o BCEL-330: Remove unnecessary references to Constants. Thanks to Mark Roberts.
o BCEL-336: MethodGen throws NullPointerException upon Invalid Class File Missing Constructor Body. Thanks to Tomo Suzuki, Gary Gregory.
o Improve documentation of Pass3bVerifier (#37). Thanks to Michael Ernst.
o Replaced deprecated constants in examples (#38). Thanks to Arthur Kupriyanov.
o Update tests from JNA 5.4.0 to 5.5.0. Thanks to Gary Gregory.
o Update tests JUnit from 4.12 to 4.13. Thanks to Gary Gregory.
o Update tests from Apache Commons Lang 3.9 to 3.10. Thanks to Gary Gregory.
o Update build maven-pmd-plugin 3.12.0 -> 3.13.0. Thanks to Gary Gregory.
o Update tests maven-surefire-plugin 3.0.0-M3 -> 3.0.0-M4. Thanks to Gary Gregory.
o Update build japicmp-maven-plugin 0.14.1 -> 0.14.3. Thanks to Gary Gregory.
o Update build jacoco-maven-plugin 0.8.4 -> 0.8.5. Thanks to Gary Gregory.
o Update tests from commons-io:commons-io 2.6 to 2.7. Thanks to Gary Gregory.
o Add support for invokestatic of an InterfaceMethodref #39. Thanks to Mark Roberts.
o Add attribute name(s) to Code.toString() #40. Thanks to Mark Roberts.
o BCEL-338: org.apache.bcel.generic.InstructionFactory.createInvoke() populates its internal ConstantPoolGen on bad input, then throws exception. Thanks to Gary Gregory.
o BCEL-339: Throw IllegalArgumentException, IllegalStateException, UnsupportedOperationException instead of RuntimeException. Thanks to Gary Gregory.
o Make some annotation methods public (#45). Thanks to Mark Roberts.
o Fix ConcurrentModificationException in the maven-bundle-plugin:4.2.1:manifest on Java 15-ea. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-bcel/changes-report.html
For complete information on Apache Commons BCEL, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons BCEL website:
https://commons.apache.org/proper/commons-bcel
Download it from https://commons.apache.org/proper/commons-bcel/download_bcel.cgi
Have fun!
-Apache Commons Team
Feedback
--------
Open source works best when you give feedback:
https://commons.apache.org/bcel
Please direct all bug reports to JIRA:
https://issues.apache.org/jira/browse/BCEL
Or subscribe to the commons-user mailing list
The Apache Commons Team
-----------------------------------------------------------------------------
Apache Commons BCEL
Version 6.4.1
RELEASE NOTES
INTRODUCTION:
The Apache Commons BCEL team is pleased to announce the release of
Apache Commons BCEL 6.4.1!
The Byte Code Engineering Library (BCEL) is intended to give users a convenient
way to analyze, create, and manipulate compiled .class files. Classes are
represented by objects containing all the symbolic information of the given
class: methods, fields and byte code instructions.
Bug fix release.
FIXED BUGS:
===========
o BCEL-328: java.util.EmptyStackException at org.apache.bcel.classfile.DescendingVisitor.visitModule (DescendingVisitor.java:592). Thanks to Gary Gregory, Mark Roberts.
CHANGES:
========
o Update build from Checkstyle Maven Plugin 3.0.0 to 3.1.0. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-bcelchanges-report.html
For complete information on Apache Commons BCEL, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons BCEL website:
https://commons.apache.org/proper/commons-bcel
Download it from https://commons.apache.org/proper/commons-bcel/download_bcel.cgi
Have fun!
-Apache Commons Team
Feedback
--------
Open source works best when you give feedback:
https://commons.apache.org/bcel
Please direct all bug reports to JIRA:
https://issues.apache.org/jira/browse/BCEL
Or subscribe to the commons-user mailing list
The Apache Commons Team
-----------------------------------------------------------------------------
Apache Commons BCEL
Version 6.4.0
RELEASE NOTES
INTRODUCTION:
The Apache Commons BCEL team is pleased to announce the release of
Apache Commons BCEL 6.4.0!
The Byte Code Engineering Library (BCEL) is intended to give users a convenient
way to analyze, create, and manipulate compiled .class files. Classes are
represented by objects containing all the symbolic information of the given
class: methods, fields and byte code instructions.
Feature and bug fix release.
NEW FEATURES:
=============
o BCEL-318: Add method org.apache.bcel.classfile.ConstantUtf8.clearCache(). Thanks to Gary Gregory.
o BCEL-320: Add LruCacheClassPathRepository that can scan many JAR files without OutOfMemoryError. Thanks to Tomo Suzuki, Gary Gregory.
o BCEL-322: Add constants to org.apache.bcel.Const for Java 14. Thanks to Gary Gregory.
o BCEL-321: Refactor subclasses of ClassPathRepository for differences in underlying cache. Thanks to Tomo Suzuki.
FIXED BUGS:
===========
o BCEL-316: org.apache.bcel.classfile.Attribute class and subclasses should NOT log to the console by default. Thanks to Gary Gregory.
o BCEL-278: InvokeInstruction.toString(final ConstantPool cp) throws NoSuchElementException #11. Thanks to Valery Barysoky.
o BCEL-270: Calling toString(ConstantPool) on InvokeInstruction throws NullPointerException. Thanks to Alexandru-Constantin Bledea.
o BCEL-323: org.apache.bcel.util.BCELifier to set major and minor versions. Thanks to Tomo Suzuki.
o BCEL-326: Add missing Java 9 and Java 11 class file attributes. #33 Thanks to Mark Roberts.
o BCEL-325: ClassDumper crashes on a module-info.class. #33 Thanks to Mark Roberts.
o BCEL-327: Update signature scanning in Utility to support TypeParameters. #32 Thanks to Mark Roberts.
CHANGES:
========
o BCEL-317: Pluggable cache for ConstantUtf8. Thanks to Tomo Suzuki, Gary Gregory.
o BCEL-299: Fix example src/examples/ClassDumper.java ClassDumper.processID(). Thanks to Gary Gregory, zhangminglei.
o Update tests from JNA 4.5.0 to 5.3.1. Thanks to Gary Gregory.
o Update tests from JNA 5.3.1. to 5.4.0. Thanks to Gary Gregory.
Historical list of changes: https://commons.apache.org/proper/commons-bcelchanges-report.html
For complete information on Apache Commons BCEL, including instructions on how to submit bug reports,
patches, or suggestions for improvement, see the Apache Commons BCEL website:
https://commons.apache.org/proper/commons-bcel
Download it from https://commons.apache.org/proper/commons-bcel/download_bcel.cgi
Have fun!
-Apache Commons Team
Feedback
--------
Open source works best when you give feedback:
https://commons.apache.org/bcel
Please direct all bug reports to JIRA:
https://issues.apache.org/jira/browse/BCEL
Or subscribe to the commons-user mailing list
The Apache Commons Team
-----------------------------------------------------------------------------
Apache Commons BCEL
Version 6.3.1
RELEASE NOTES
INTRODUCTION:
The Apache Commons BCEL team is pleased to announce the release of
Apache Commons BCEL 6.3.1!
The Byte Code Engineering Library (BCEL) is intended to give users a convenient
way to analyze, create, and manipulate compiled .class files. Classes are
represented by objects containing all the symbolic information of the given
class: methods, fields and byte code instructions.
Bug fix release
FIXED BUGS:
===========
o BCEL-267: Race conditions on static fields in BranchHandle and InstructionHandle. Thanks to Stephan Herrmann, Sebb, Gary Gregory, Torsten Curdt.
o BCEL-297: Possible NPE in override implementation of Object.equals (#20) Thanks to Mark Roberts, mingleizhang.
o BCEL-315: NullPointerException at org.apache.bcel.classfile.FieldOrMethod.dump(). Thanks to Gary Gregory.
CHANGES:
========
o BCEL-298: Add some files to .gitignore (#19) Thanks to mingleizhang.
Have fun!
-Apache Commons Team
Feedback
--------
Open source works best when you give feedback:
https://commons.apache.org/bcel
Please direct all bug reports to JIRA:
https://issues.apache.org/jira/browse/BCEL
Or subscribe to the commons-user mailing list
The Apache Commons Team
-----------------------------------------------------------------------------
Apache Commons BCEL
Version 6.3
RELEASE NOTES
INTRODUCTION:
The Apache Commons BCEL team is pleased to announce the release of
Apache Commons BCEL 6.3!
The Byte Code Engineering Library (BCEL) is intended to give users a convenient
way to analyze, create, and manipulate compiled .class files. Classes are
represented by objects containing all the symbolic information of the given
class: methods, fields and byte code instructions.
NEW FEATURES:
=============
o Added org.apache.bcel.classfile.Visitor.visitConstantDynamic(ConstantDynamic) Thanks to Mark Thomas.
o Added org.apache.bcel.classfile.ConstantDynamic Thanks to Mark Thomas.
o Added fields in org.apache.bcel.Const for Java 9, 10, and 11. Thanks to Mark Thomas.
o Added fields in org.apache.bcel.Const for Java 12 and 13 based on Java Early Access releases. Thanks to Mark Thomas.
FIXED BUGS:
===========
o BCEL-304: ClassPath.getClassFile() and friends do not work with JDK 9 and higher (PR #22.) Thanks to Gary Gregory, Ed Pavlak.
o BCEL-305: ClassPath.getClassFile() and friends do not work with JRE 9 and higher Thanks to Gary Gregory.
CHANGES:
========
o Initial support for Java 11 Thanks to Mark Thomas, Gary Gregory.
o Update Java requirement from Java 7 to Java 8. Thanks to Gary Gregory.
Have fun!
-Apache Commons Team
Feedback
--------
Open source works best when you give feedback:
https://commons.apache.org/bcel
Please direct all bug reports to JIRA:
https://issues.apache.org/jira/browse/BCEL
Or subscribe to the commons-user mailing list
The Apache Commons Team
-----------------------------------------------------------------------------
Apache Commons BCEL
Version 6.2
RELEASE NOTES
INTRODUCTION:
The Apache Commons BCEL team is pleased to announce the release of
Apache Commons BCEL 6.2!
The Byte Code Engineering Library (BCEL) is intended to give users a convenient
way to analyze, create, and manipulate compiled .class files. Classes are
represented by objects containing all the symbolic information of the given
class: methods, fields and byte code instructions.
Experimental Java 9 Support
FIXED BUGS:
===========
o BCEL-294: Incorrect comment in StackMap.java Thanks to Mark Roberts.
o BCEL-296: Incorrect comment in several classes. Thanks to Mark Roberts.
o BCEL-295: Fix local variable live range length; add test case. Thanks to Mark Roberts.
o BCEL-300: org.apache.bcel.classfile.ClassFormatException: Invalid byte tag in constant pool: 19.
o BCEL-301: org.apache.bcel.classfile.ClassFormatException: Invalid byte tag in constant pool: 20.
Have fun!
-Apache Commons Team
Feedback
--------
Open source works best when you give feedback:
https://commons.apache.org/bcel
Please direct all bug reports to JIRA:
https://issues.apache.org/jira/browse/BCEL
Or subscribe to the commons-user mailing list
The Apache Commons Team
-----------------------------------------------------------------------------
Apache Commons BCEL
Version 6.1
RELEASE NOTES
INTRODUCTION:
The Apache Commons BCEL team is pleased to announce the release of
Apache Commons BCEL 6.1!
The Byte Code Engineering Library (BCEL) is intended to give users a convenient
way to analyze, create, and manipulate compiled .class files. Classes are
represented by objects containing all the symbolic information of the given
class: methods, fields and byte code instructions.
Apache Commons BCEL 6.1 is a bugfix and feature release supporting bringing
experimental support for Java 9.
It requires Java 7 or higher to run.
COMPATIBILITY with 6.1
======================
Binary compatible - Yes
Source compatible - Yes, sort of;
- The org.apache.bcel.classfile.Visitor interface has been enhanced with
additional methods. If you implemented it directly instead of extending
the EmptyVisitor class you'll have to implement the new methods.
- The org.apache.bcel.generic.Visitor interface has been enhanced with an
additional method. If you implemented it directly instead of extending
the EmptyVisitor class you'll have to implement the new methods.
Semantic compatible - Yes
For full information about API changes please see the extended Clirr report:
https://commons.apache.org/bcel/clirr-report.html
COMPATIBILITY with Java 9
=========================
The MANIFEST.MF now contains an additional entry:
Automatic-Module-Name: org.apache.bcel
This should make it possible to use Commons BCEL 6.1 as a module in the Java 9
module system. For more information see the corresponding issue and the
referenced mailing list discussions:
https://issues.apache.org/jira/browse/BCEL-293
The build currently on Java 9 fails with test failures related to Locales. We
are still working on this. For more information see:
https://issues.apache.org/jira/browse/BCEL-275
NEW FEATURES:
=============
o BCEL-293: Add Automatic-Module-Name MANIFEST entry for Java 9 compatibility.
o BCEL-292: Add minimal Java 9 support.
FIXED BUGS:
===========
o BCEL-286: Utility.signatureToString fails if a method has multiple type
arguments. Thanks to Mark Roberts.
o BCEL-287: IINC does not handle -128 properly. Thanks to Mark Roberts.
o BCEL-283: Support for StackMap should be different from StackMapTable.
Thanks to Mark Roberts.
o BCEL-289: Crash when parsing constructor of inner classes with parameters
annotated.
o BCEL-276: LocalVariableTypeTable is not updated.
Thanks to Sam Yoon, Mark Roberts.
o BCEL-277: Resolving the String representation of a constant throws
NoSuchElementException in case of CONSTANT_NameAndType constant.
Thanks to Sam Yoon.
Have fun!
-Apache Commons Team
-----------------------------------------------------------------------------
Release Notes for 6.0
INTRODUCTION:
The Apache Commons BCEL team is pleased to announce the release of
Apache Commons BCEL 6.0!
The Byte Code Engineering Library (BCEL) is intended to give users a convenient
way to analyze, create, and manipulate compiled .class files. Classes are
represented by objects containing all the symbolic information of the given
class: methods, fields and byte code instructions.
Apache Commons BCEL 6.0 is a major release supporting the new features
introduced in Java 6, 7 and 8.
It requires Java 7 or higher to run.
COMPATIBILITY with 5.2
======================
Binary compatible - not strictly compatible
- The constant interface org.apache.bcel.Constants has been deprecated. Classes
which implemented this interface in 5.2 now use the constants defined in the
org.apache.bcel.Const class.
- The constant interface org.apache.bcel.generic.InstructionConstants has been
deprecated. Classes which implemented this interface in 5.2 now use the
constants defined in the org.apache.bcel.generic.InstructionConsts class.
- Return type of method 'public java.lang.Object getElementAt(int)' in
org.apache.bcel.verifier.VerifierFactoryListModel has been changed to
java.lang.String.
- The BCEL classes do no longer implement java.io.Serializable.
Source compatible - Yes, sort of;
- The org.apache.bcel.classfile.Visitor interface has been enhanced with
additional methods. If you implemented it directly instead of extending
the EmptyVisitor class you'll have to implement the new methods.
- The org.apache.bcel.generic.Visitor interface has been enhanced with an
additional method. If you implemented it directly instead of extending
the EmptyVisitor class you'll have to implement the new methods.
Semantic compatible - Yes, except:
- BCEL 6.0 handles new attributes such as code annotations that could only
be processed by implementing a custom AttributeReader in the previous
versions. Code relying on this behavior will have to be adjusted since
the AttributeReader will no longer be called in these cases.
For full information about API changes please see the extended Clirr report:
https://commons.apache.org/bcel/clirr-report.html
NEW FEATURES:
=============
o BCEL-272: Add constants for Java 9 class file version 53.
FIXED BUGS:
===========
o BCEL-237: non-empty final arrays should be private as they are mutable.
o BCEL-243: Type.getType() needs to understand TypeVariableSignature(s).
o BCEL-271: FCONST pattern does not include FCONST_2.
o BCEL-264: Add missing Node.accept() implementations (ConstantMethodHandle,
ConstantMethodType, ParameterAnnotationEntry).
o BCEL-221: BCELifier is not working for Java8Example (incomplete).
o BCEL-195: Addition of hashCode() to generic/Instruction.java breaks Targeters.
Never make distinct BranchInstructions compare equal.
o BCEL-261: Select constructor allows partially constructed instance to escape.
Re-ordered code to delay the escape.
o BCEL-259: Minor doc error in BranchInstruction.java.
o BCEL-260: ClassDumper example duplicates field attribute types.
o BCEL-258: No tests to check the output of dump methods.
o BCEL-257: INVOKESPECIAL, INVOKESTATIC, INVOKEVIRTUAL need to define dump()
methods.
o BCEL-254: Two more methods that would be nice to be public.
o BCEL-245: Type class includes constants that reference subclasses.
o BCEL-253: Pass 3b verifier is too strict.
o BCEL-248: StackMapTable[Entry] should be removed and improvements merged into
StackMap[Entry].
o BCEL-202: StackMap[Table]Entry.copy() needs to be deep; Improved support for
StackMaps.
o BCEL-251: Pass3aVerifier visitANEWARRAY() does not allow 255 array dimensions.
o BCEL-249: Check for max Short seems wrong.
o BCEL-208: Need to check for an empty InstructionList.
o BCEL-217: long type instructions are not searched by InstructionFinder using
regular expression.
o BCEL-239: Interfaces should not be used to define constants.
o BCEL-234: Code must not swallow Throwable.
o BCEL-209: Bug fixes and improvements to InvokeDynamic and BootStrapMethods
implementation. Thanks to Mark Roberts.
o BCEL-187: Verification error when an invoke references a method defined in
superclass. Thanks to Jérôme Leroux.
o BCEL-218: Remove ObjectType cache. Thanks to chas.
o BCEL-184: The verifier now checks if methods with a void return type attempt
to return an object. Thanks to Jérôme Leroux.
o BCEL-207: MethodGen.removeLocalVariable now properly unreference the removed
variable from the targetters of the instruction handlers delimiting
the scope of the variable. Thanks to Mark Roberts.
o BCEL-197: Utility.signatureToString() no longer throws a ClassFormatException
on TypeVariables found in generic signatures. Thanks to Mark Roberts.
o BCEL-194: Removed the 'index' variable from the LocalVariableGen's hash code. Thanks to Mark Roberts.
o BCEL-193: The verifier should not check for run time compatibility of objects
assigned to arrays. Thanks to Jérôme Leroux.
o BCEL-188: Correct verification of the return value of a method. Thanks to Jérôme Leroux.
o BCEL-186: Performance degradation with the UTF8 cache. getInstance no longer
uses cache.
o BCEL-181: org.apache.bcel.util.ClassLoaderRepository.loadClass(String) leaks
input streams.
o BCEL-28: Mistake in "Peephole optimizer" example
at https://commons.apache.org/bcel/manual.html
o BCEL-74: BCEL cannot be used as java.system.class.loader.
o BCEL-77: XSLT transforms broken in Turkish Locale.
o BCEL-79: java.lang.ClassFormatError: LVTT entry for 'local' in class file
org/shiftone/jrat/test/dummy/CrashTestDummy does not match any LVT
entry
o BCEL-81: ClassParser.parse() throws NullPointerException if class does not
exist and ClassParser(String) constructor is used.
o BCEL-85: ArrayOutOfBoundsException in InstructionFinder.
o BCEL-87: Website: Incorrect URL for source; version 5.2 is not in the bug
page
o BCEL-88: bcelified method doesn't pass verification.
o BCEL-89: return type not verified by JustIce.
o BCEL-94: @since tag incorrect for Annotation classes in BCEL trunk.
o BCEL-95: InstructionFactory missing % operator for Float, Double.
o BCEL-96: Fields in Annotations and AnnotationEntry are inaccessible to
subclasses
o BCEL-97: Add support for getResources to ClassPath.
o BCEL-98: Two source files in repository are empty.
o BCEL-99: Maven POM file calls in apache regex but code does not use it.
o BCEL-100: ClassParser throws unintelligible Exception.
o BCEL-101: verifier raises an AssertionViolatedException when done against
Java 5 files with generics/annotations.
o BCEL-102: Verifier fails in pass 2 with "Number of LocalVariableTable
attributes of Code attribute" on static methods.
o BCEL-107: ParameterAnnotationEntries are read not dumped.
o BCEL-108: RuntimeVisible Annotations duplicated.
o BCEL-112: ARRAYLENGTH incorrectly not StackConsumer.
o BCEL-114: Error in method search() defined in
org.apache.bcel.util.InstructionFinder
o BCEL-115: Deleting all instructions of a list shows wrong behavior.
o BCEL-120: Make BCEL JAR OSGi compatible.
o BCEL-122: ArrayIndexOutOfBoundsException thrown from TABLESWITCH.initFromFile.
o BCEL-124: tableswitch/lookupswitch invalid alignment of 4-byte operands.
o BCEL-125: Incorrect size calculation in InstructionFinder.
o BCEL-130: Class files containing "ParameterAnnotations" are dumped
incorrectly.
o BCEL-131: Class files containing "StackMapTable" attributes (on method code)
are dumped incorrectly.
o BCEL-132: org.apache.bcel.classfile.ClassParser: NullPointerException caused
by fileopen failed.
o BCEL-133: org.apache.bcel.classfile.ClassParser: NullPointerException caused
by invalid filename.
o BCEL-134: ExecutionVisitor doesn't support Class constant type for LDC and
LDC_W.
o BCEL-135: BCELifier issue: BCELFactory fails to handle float and long
constants.
o BCEL-137: "Invalid method signature: TT;" when using MethodGen for a method
having a generic parameter.
o BCEL-138: FieldInstruction.getFieldSize() doesn't decode Type.getTypeSize()
output.
o BCEL-140: org.apache.bcel.generic.Instruction.equals(Object) does not follow
Object.equals(Object) rules.
o BCEL-141: Select instructions should implement StackConsumer instead of
StackProducer.
o BCEL-143: Fix CPL License issues with EnclosingMethod.java and
LocalVariableTypeTable.java.
o BCEL-145: Type.getReturnTypeSize() doesn't decode Type.getTypeSize() output.
o BCEL-146: SyntheticRepository.loadClass() fails to close the inputStream.
o BCEL-148: BCELifier produces incorrect code for methods containing loads of
class literals from constant pool.
o BCEL-151: Code attribute size not updated.
o BCEL-152: Incorrect link for Jasmin assembler language.
o BCEL-153: Examples not present in source or binary downloads.
o BCEL-154: ClassParser.parse() generates NPE if it cannot open the file.
o BCEL-155: InstConstraintVisitor does not handle class constants.
o BCEL-156: Pass3bVerifier crashes on empty methods.
o BCEL-159: LocalVariableGen.getLocalVariable() computes incorrect length.
o BCEL-164: Method does not have a method to access parameter annotations.
o BCEL-167: ClassPath.getResource does not correctly perform URL escaping.
o BCEL-173: ClassParser fails to parse JDK classes in Java 8:
ClassFormatException: Invalid byte tag in constant pool.
o BCEL-174: Verification of interfaces with default methods fails with Java 8.
o BCEL-177: When reading the number of parameters in a MethodParameters
structure only read a single byte as per the JVM specification.
CHANGES:
========
o BCEL-262: InvokeInstruction.getClassName(ConstantPoolGen) should not throw
an exception when it detects an array. Thanks to Mark Roberts.
o BCEL-230: Document the Java platform requirement clearly and early.
o BCEL-211: Some additional clone methods should be public.
o BCEL-127: Document that Instruction Factory returns singleton instances.
o BCEL-198: better support for clone/copy methods.
o BCEL-201: modify several toString methods to make output similar to "javap".
o BCEL-205: add javadoc comments to LineNumber.java and LineNumberTable.java.
o BCEL-212: Inconsistent toString() results.
o BCEL-244: Update Java requirement from 5 to 7.
o BCEL-219: Make org.apache.bcel.classfile.ConstantPool.ConstantPool(DataInput)
public. Thanks to Maxim Degtyarev.
o BCEL-76: Add parent type processing for ClassPath class.
o BCEL-83: Add support for getResource and getResourceAsStream to ClassPath.
o BCEL-92: Properly parse StackMapTable attributes in Java 6 classfiles.
o BCEL-104: Javadoc overhaul.
o BCEL-119: BCEL is unnecessarily slow.
o BCEL-157: Add support for INVOKEDYNAMIC and MethodHandles.
o BCEL-160: Why using unstable sort at MethodGen.getLocalVariables() ?
o BCEL-163: Incorporate patch file from Findbugs.
o BCEL-175: Implement the MethodParameters attribute.
REMOVED:
========
o BCEL-242: Remove Serializable.
o BCEL-110: Problem with JAXB if the bcel classloader is used; remove the broken
ClassLoader class.
Have fun!
-Apache Commons Team
Feedback
--------
Open source works best when you give feedback:
https://commons.apache.org/bcel
Please direct all bug reports to JIRA:
https://issues.apache.org/jira/browse/BCEL
Or subscribe to the commons-user mailing list
The Apache Commons Team