blob: 35fed5d0176a56bd47ac65598f8c990a04523d1a [file] [log] [blame] [view]
Danny van Bruggendf3995f2017-09-24 21:40:17 +02001Version 3.4.1
2------------------
3[issues resolved](https://github.com/javaparser/javaparser/milestone/59?closed=1)
4* Two visitors were added: `NoCommentEqualsVisitor` and `NoCommentHashCodeVisitor` -
5as the name implies you can use these to compare nodes without considering comments.
6Thanks Ryan Beckett!
7* `isSomeType()` methods have been added for many types that help avoid `instanceof`.
8* `asSomeType()` methods have been added for many types that help avoid casting to that type.
9* `ifSomeType()` methods have been added for many types, giving a nice functional way of doing if-is-type-then-cast-to-type-then-use.
10* The `LexicalPreservingPrinter` had its API changed a little: setup and printing are now separate things,
11so you don't have to drag an instance of `LexicalPreservingPrinter` through your code anymore.
12* `traverseScope` was added to all nodes with a scope, so you can travel through the scope without tripping over (non-)optionality.
13
14
Danny van Bruggen0ea4d492017-09-17 19:56:00 +020015Version 3.4.0
16------------------
17[issues resolved](https://github.com/javaparser/javaparser/milestone/58?closed=1)
18* BREAKING: We missed a Java 9 feature which is now on board: try with resources can now refer to a resource declared outside of the statement.
19This means that the node type you get for those resources is now `Expression` instead of `VariableDeclarationExpr`.
20For Java 8 and below you can simply cast it to `VariableDeclarationExpr` again.
21See also the Javadoc for `TryStmt`.
22* You can now inspect the AST by exporting it to XML, JSON, YAML, or a Graphviz's dot diagram, thanks to Ryan Beckett!
23* `GenericVisitorWithDefaults` and `VoidVisitorWithDefaults` were added which function like empty visitors,
24but all the visit methods call a default method by default.
25* Annotation support was cleaned up, adding some obscure locations where you can have annotations.
26* `EnumDeclaration` regained its constructor builder methods. They were accidentally lost around 3.2.2.
Danny van Bruggen06ccb382017-09-17 20:18:26 +020027* `ArrayType` now has an `origin` field which indicates in which position the array brackets were found.
Danny van Bruggen0ea4d492017-09-17 19:56:00 +020028
Danny van Bruggenac425492017-09-10 22:46:41 +020029Version 3.3.5
30------------------
31[issues resolved](https://github.com/javaparser/javaparser/milestone/57?closed=1)
32
Danny van Bruggenc2f83d12017-09-03 19:24:49 +020033Version 3.3.4
34------------------
35[issues resolved](https://github.com/javaparser/javaparser/milestone/56?closed=1)
36* `SourceZip` has been added.
37Use it to read source code from jars or zip files.
38Thank you @ryan-beckett !
39* JavaCC was upgraded to 7.0.2
40* A new option for the pretty printer was added.
41You can now wrap-and-column-align parameters of method calls.
42Thank you @tarilabs !
43
Danny van Bruggen0962cf82017-08-27 20:20:12 +020044Version 3.3.3
45------------------
46[issues resolved](https://github.com/javaparser/javaparser/milestone/55?closed=1)
47* Parsing a partial java file (like an expression or statement) no longer ignores trailing code.
48* New memory saving option: turn off token list.
49
Danny van Bruggenb20badc2017-08-20 23:08:26 +020050Version 3.3.2
51------------------
52[issues resolved](https://github.com/javaparser/javaparser/milestone/54?closed=1)
Sebastian Kürtena6cbccd2017-08-25 11:14:35 +020053* `VisitorMap` lets you override hashcode/equals for nodes when used as a key for a map.
Danny van Bruggenb20badc2017-08-20 23:08:26 +020054
Danny van Bruggene40e4e22017-08-13 22:26:18 +020055Version 3.3.1
56------------------
57[issues resolved](https://github.com/javaparser/javaparser/milestone/53?closed=1)
58* The token list is now mutable - see methods on `JavaToken`.
59This caused mild breakage - some fields have become `Optional`.
60
Danny van Bruggen3cd1be02017-07-26 19:31:35 +020061Version 3.3.0
62------------------
63[issues resolved](https://github.com/javaparser/javaparser/milestone/52?closed=1)
64* Breaking: `TryStmt::tryBlock` and `EnclosedExpr::inner` were optional for no good reason. Now they are required.
65* You can now ask a `JavaToken` for its category, which is useful for examining the token list or doing syntax highlighting or so.
66* `enum` and `strictfp` can now be used as identifiers on lower Java versions.
67
Danny van Bruggen5e6d7292017-07-16 22:19:10 +020068Version 3.2.12
69------------------
70[issues resolved](https://github.com/javaparser/javaparser/milestone/51?closed=1)
71
Danny van Bruggen969b7f62017-07-10 21:03:41 +020072Version 3.2.11
73------------------
74[issues resolved](https://github.com/javaparser/javaparser/milestone/50?closed=1)
75* We're up to date with the latest Java 9 module system again.
76
Danny van Bruggen3d195982017-07-05 12:02:09 +020077Version 3.2.10
Danny van Bruggenb5b70ee2017-07-02 20:36:42 +020078------------------
79[issues resolved](https://github.com/javaparser/javaparser/milestone/49?closed=1)
80* `Node.replace(old, new)` was added, including property-specific `X.replaceY(newY)` methods
81
Danny van Bruggen3d195982017-07-05 12:02:09 +020082Version 3.2.9
83------------------
84Scrapped due to release problem.
85
Danny van Bruggen1fb7c9d2017-06-18 18:10:59 +020086Version 3.2.8
87------------------
88[issues resolved](https://github.com/javaparser/javaparser/milestone/48?closed=1)
89* Added `isInnerClass()` that checks if a `ClassOrInterfaceDeclaration` is an inner class (note: this is different from a nested class!)
90* @ryan-beckett contributed a huge [Eclipse setup guide](https://github.com/javaparser/javaparser/wiki/Eclipse-Project-Setup-Guide)
91
Danny van Bruggenc7f87802017-06-11 15:57:27 +020092Version 3.2.7
93------------------
94[issues resolved](https://github.com/javaparser/javaparser/milestone/47?closed=1)
95* We now recover from some parse errors! [Here is an article](https://matozoid.github.io/2017/06/11/parse-error-recovery.html)
96
Danny van Bruggen9250ffa2017-06-04 20:50:37 +020097Version 3.2.6
98------------------
99[issues resolved](https://github.com/javaparser/javaparser/milestone/46?closed=1)
100* `EmptyMemberDeclaration` is gone!
101It was deprecated for a while because it it was in the AST, but doesn't have any meaning in a Java program.
102`EmptyStmt` was also deprecated, but that has been reverted.
103This node *does* have meaning.
104
Danny van Bruggenee5691c2017-05-22 19:47:13 +0200105Version 3.2.5
106------------------
107[issues resolved](https://github.com/javaparser/javaparser/milestone/45?closed=1)
108* `NodeWithCondition` was added on all nodes containing a condition.
109* Lots of work on improving lexical preservation.
110* If a file was parsed from a file system, you can now get path information etc. from `CompilationUnit`
111* API BREAKING: every node now points to its start and end token.
112Some of the API has started returning `TokenRange` instead of `Range` - you can call `toRange` to get the old object type.
113We may still change the naming of some of this code in the following month.
114
Danny van Bruggen5201adc2017-05-14 14:00:56 +0200115Version 3.2.4
116------------------
117New style changelog, no more issue numbers, but a link:
118[issues resolved](https://github.com/javaparser/javaparser/milestone/44?closed=1)
119and any notable changes:
120* the new method `Node.removeForced()` by removing it, or removing the first parent that is optional.
121This is different from `Node.remove()`, `remove()` only tries to remove the node from the parent and fails if it can't.
122* `FieldAccessExpr.scope` is now a required property.
123You might find some `get()`s in your code that are no longer necessary.
124* `ReferenceType` no longer has a type parameter, so every `ReferenceType<?>` can be replaced by `ReferenceType` now.
125
Danny van Bruggen9c513212017-04-30 22:15:44 +0200126Version 3.2.3
127------------------
128* 907 906 905 903 911 910 909 908 smaller improvements and fixes
129
Danny van Bruggendc8077a2017-04-23 12:04:03 +0200130Version 3.2.2
131------------------
132Beta: `TreeStructureVisitor`.
133
134* 770 902 904 901 smaller improvements and fixes
135
Danny van Bruggen28cf0be2017-04-16 15:05:10 +0200136Version 3.2.1
137------------------
138Beta: `TreeStructureVisitor`.
139
140* Maven dependencies were updated to their latest versions
141* 890 the concept of "method signature" now exists in JavaParser
142* 896 891 889 887 882 789 smaller improvements and fixes
143
Danny van Bruggen7a3b9602017-04-02 21:39:40 +0200144Version 3.2.0
145------------------
146The lexical preservation code is stable!
147
148Beta: `TreeStructureVisitor`.
149
150* 885 884 879 878 smaller improvements and fixes
151
Danny van Bruggencadeeb52017-03-26 20:40:56 +0200152Version 3.1.4
153------------------
154This is the first version to parse Java 9.
155
156Beta: `TreeStructureVisitor`, and `LexicalPreservingPrinter`.
157
158* 872 873 874 787 Remaining Java 9 work.
159
Danny van Bruggen64dd2802017-03-19 13:52:35 +0100160Version 3.1.3
161------------------
162Beta: `TreeStructureVisitor`, and `LexicalPreservingPrinter`.
163
164A start has been made on source level support. The default level is Java 8.
165It can be set to Java 9 like this for a parser *instance*:
166```java
167private final JavaParser parser = new JavaParser(new ParserConfiguration().setValidator(new Java9Validator()));
168```
169and like this for the static parse methods:
170```java
171JavaParser.getStaticConfiguration().setValidator(new Java9Validator());
172```
173
174* 862 552 "_" is an illegal identifier on source level 9.
175* 869 867 109 855 857 smaller improvements and fixes
176
Danny van Bruggen79776b72017-03-11 15:07:40 +0100177Version 3.1.2
178------------------
179Beta: `TreeStructureVisitor`, `ConcreteSyntaxModel`, and `LexicalPreservingPrinter`.
180
181* 594 849 831 a validation framework was introduced to inform about problems in the AST without needing to change the grammar,
182and without requiring parsing code.
183It is open for extension by users.
184* 852 853 826 832 846 839 smaller improvements and fixes
185
Danny van Bruggenf50a5512017-03-04 18:14:46 +0100186Version 3.1.1
187------------------
188Beta: `TreeStructureVisitor`, `ConcreteSyntaxModel`, and `LexicalPreservingPrinter`.
189
190* 654 124 lexical preservation (printing source code with the same formatting it had when parsing) has been added.
191 Thank you @ftomassetti for a lot of work!
192* 554 800 first (big) step towards Java 9 support: JavaParser can read project Jigsaw module definitions.
193* 795 786 751 extend the TreeVisitor with more traversal options. Thanks @ryan-beckett!
194* 791 `GenericListVisitorAdapter` has been added which collects its results in a list. Thanks @Gottox!
195* 815 798 797 813 clean up Problem text
196* 819 818 817 816 441 809 808 807 fix various absurd annotation related issues.
197* 777 805 802 796 790 792 793 781 784 785 783 782 779 357 799 763 smaller improvements and fixes
198
Danny van Bruggen076d3ee2017-02-19 22:56:24 +0100199Version 3.1.0
200------------------
Danny van Bruggenf50a5512017-03-04 18:14:46 +0100201Beta: `TreeStructureVisitor` and `ConcreteSyntaxModel`.
Danny van Bruggen076d3ee2017-02-19 22:56:24 +0100202
203* 705 755 Add the concrete syntax model, which will give you information about the exact syntax a certain nodes matches.
204
205* 777 smaller improvements and fixes
206
Danny van Bruggenadae33f2017-02-14 19:59:50 +0100207Version 3.1.0-beta.2
208------------------
209This version is a beta because `TreeStructureVisitor` is not in its definite state yet.
210
211* 762 761 772 merge `javaparser-metamodel` and `javaparser-generator-utils` into `javaparser-core`.
212* 766 the `ModifierVisitor` is now created by a code generator. Its behaviour has been made logical, and may give different results than before.
213* 755 `ConstructorDeclaration` and `MethodDeclaration` now share a parent: `CallableDeclaration`
214* 687 759 773 769 768 767 765 759 smaller improvements and fixes
215
Danny van Bruggen23d54772017-02-05 16:21:16 +0100216Version 3.1.0-beta.1
Danny van Bruggen70f343e2017-01-28 14:07:25 +0100217------------------
Danny van Bruggen23d54772017-02-05 16:21:16 +0100218This version is a beta because there are a lot of new features that may still change.
219
220This version needs a minor version increase because of a backwards compatability issue:
221* 719 `getJavadoc`, `getJavadocComment` and `getComment` could return null. Our promise was to return `Optional`, so that is what they do now.
Danny van Bruggen70f343e2017-01-28 14:07:25 +0100222
223New:
Danny van Bruggene6079d82017-02-05 16:50:01 +0100224* 658 718 736 737 we have created a metamodel.
Danny van Bruggen23d54772017-02-05 16:21:16 +0100225It gives information about the structure of the various AST nodes, as if you are introspecting them.
226You can find it in `javaparser-metamodel`, the main class is `JavaParserMetaModel`
Danny van Bruggene6079d82017-02-05 16:50:01 +0100227* 353 365 visitors are no longer hand made, they are now generated from the metamodel. This should make them 100% reliable.
Danny van Bruggen23d54772017-02-05 16:21:16 +0100228Affected visitors are: `GenericVisitorAdapter`, `EqualsVisitor`, `VoidVisitorAdapter`, `VoidVisitor`, `GenericVisitor`, `HashCodeVisitor`, `CloneVisitor`.
229
230If you want to generate your own visitors, you can use the `VisitorGenerator` class from `javaparser-core-generators`
231
232If you want to reuse the code generation utilities, look at module `javaparser-generator-utils` - there is a very useful `SourceRoot` class in there that takes away a lot of file management troubles.
Danny van Bruggene6079d82017-02-05 16:50:01 +0100233* 538 735 `TreeStructureVisitor` has been added, which should be considered beta.
234* 220 733 717 749 745 750 743 748 666 732 746 734 733 smaller improvements and fixes
Danny van Bruggen70f343e2017-01-28 14:07:25 +0100235
Danny van Bruggenc5f6e9b2017-01-15 20:58:52 +0100236Version 3.0.1
237------------------
238* 699 433 325 Javadoc can now be parsed
239* 703 696 added NodeWithOptionalScope
240* 702 FieldAccessExpr now implements NodeWithSimpleName, *which means that "field" has been renamed to "name"*
241* 707 706 improve range of array types and levels
242* 709 smaller improvements and fixes
243
Danny van Bruggen1804ea22017-01-07 23:06:22 +0100244Version 3.0.0
245------------------
246* 695 697 689 680 693 691 682 690 677 679 688 684 683 smaller improvements and fixes
247
Danny van Bruggene11ed222016-12-24 22:25:49 +0100248Version 3.0.0-RC.4
249------------------
250* 668 669 TypeDeclarationStmt became LocalClassDeclarationStmt
251* 347 665 every node now has some documentation
252* 660 670 673 four types of import declaration have been merged back into the old ImportDeclaration
253* 659 The pretty printer can now take customized visitors
254* 650 671 672 674 524 smaller improvements and fixes
255
Danny van Bruggenfc9c4a92016-12-18 23:13:10 +0100256Version 3.0.0-RC.3
257------------------
258* 639 622 632 657 656 652 653 647 648 645 194 643 630 624 628 627 626 625 623 cleanups, small fixes, and general housekeeping
259
Danny van Bruggendd5d4d02016-12-09 16:40:59 +0100260Version 3.0.0-RC.2
261------------------
262* 593 EmptyImportDeclaration and NonEmptyImportDeclaration have been removed
263* 612 VariableDeclaratorId has been removed. It has been substituted by "SimpleName name"
264* 614 617 the list of tokens has been linearized and simplified
265* 615 support for arrays has once more been changed. See [the issue](https://github.com/javaparser/javaparser/issues/592)
266* 580 453 380 618 580 611 610 424 608 smaller improvements and fixes
267
Danny van Bruggen61aaeaf2016-12-01 18:37:11 +0100268Version 3.0.0-RC.1
269------------------
270* 499 601 renames many fields to be more consistent
271* 596 605 602 604 smaller improvements and fixes
272
Danny van Bruggen47379542016-11-27 16:54:33 +0100273Version 3.0.0-alpha.11
274------------------
275* 547 595 Node.range is now using Optional instead of Range.UNKNOWN
Danny van Bruggen6738e1c2016-11-28 19:46:45 +0100276* 584 588 548 585 bug fixes and improvements
Danny van Bruggen47379542016-11-27 16:54:33 +0100277
matozoidf52d1ad2016-11-20 16:36:22 +0100278Version 3.0.0-alpha.10
279------------------
280* 578 579 577 575 290 570 568 567 562 564 551 bug fixes and improvements
281
Danny van Bruggen02b3c5e2016-11-10 10:33:44 +0100282Version 3.0.0-alpha.9
283------------------
284* 403 358 549 Make all names nodes: either SimpleName or Name. This makes every name in the AST visitable. NameExpr is now a wrapper to use SimpleName in an expression.
matozoidd2c9f432016-11-13 17:29:38 +0100285* 516 536 use Optional<> for return values.
matozoid789ddfe2016-11-13 17:33:43 +0100286* 556 557 558 550 small improvements and fixes.
287* 560 559 make nodes observable.
Danny van Bruggen02b3c5e2016-11-10 10:33:44 +0100288
matozoidaa79a622016-11-06 14:13:37 +0100289Version 3.0.0-alpha.8
290------------------
291* 344 529 turn DumpVisitor into an official PrettyPrinter
292* 532 508 427 530 531 513 528 cleanups
293
matozoidde10e892016-10-26 19:48:54 +0200294Version 3.0.0-alpha.7
295------------------
matozoid57a10942016-10-30 21:14:28 +0100296* 515 roll back attempt at using Optional
297* 522 504 make NodeList not a Node (restores parent/children behaviour to before alpha.4)
298* 527 526 rename getChildrenNodes to getChildNodes
299* 525 495 520 bug fix
matozoidde10e892016-10-26 19:48:54 +0200300
301Version 3.0.0-alpha.6
302------------------
303* 503 modified ImportDeclaration hierarchy to have getters for static and "asterisk" again
304* 506 bug fix
305
matozoid9ac80482016-10-16 22:08:51 +0200306Version 3.0.0-alpha.5
307------------------
308* 451 null is no longer allowed in the AST. [See last post in issue](https://github.com/javaparser/javaparser/issues/451)
309* 501 421 420 316 use a special type of list for nodes: NodeList. [See last post in issue](https://github.com/javaparser/javaparser/issues/421)
310
matozoid93c5ac12016-10-09 22:03:29 +0200311Version 3.0.0-alpha.4
312------------------
313* 463 471 nodes can now be removed easily
314* 491 import handling changed. Instead of "ImportDeclaration", we now have the four types of import as described in the JLS. [See issue](https://github.com/javaparser/javaparser/pull/491)
315* 452 355 474 494 various improvements
316* 493 492 485 Simplify the JavaParser interface
317
matozoid6ea2c522016-09-30 18:55:44 +0200318Version 3.0.0-alpha.3
319------------------
matozoid93c5ac12016-10-09 22:03:29 +0200320* 112 237 466 465 461 460 458 457 fundamentally changes how we deal with arrays. [It is explained in the last post here](https://github.com/javaparser/javaparser/issues/237)
matozoid6ea2c522016-09-30 18:55:44 +0200321* 472 456 makes the "data" field on every node more structured.
322* 477 468 refactor TypeArguments. You will find that TypeArguments is no longer a type, it is just a list in some nodes.
323* 482 adds the "nodeTypes" packages to the osgi export.
324* 479 476 makes all setters on nodes return this so they become chainable.
325* 473 437 clean up CloneVisitor.
matozoid53d288a2016-07-18 13:32:44 +0200326
matozoid6ea2c522016-09-30 18:55:44 +0200327Version 3.0.0-alpha.2
328------------------
329* 157 a new parser frontend, check https://github.com/javaparser/javaparser/pull/447 for explanations
330* 435 more builder methods like 400 and 405
331* 111 440 443 444 445 446 bugs & cleanups
matozoid53d288a2016-07-18 13:32:44 +0200332
matozoid6ea2c522016-09-30 18:55:44 +0200333Version 3.0.0-alpha.1
334------------------
335* 400 405 introduce many "builder" style methods for constructing code. Thanks DeepSnowNeeL!
336* 409 remove ASTHelper (methods are now on specific Node subclasses)
337* 414 JavaParser can now be instantiated and reused. InstanceJavaParser removed
338* 418 417 411 408 bugs
339* 367 420 407 402 various cleanups
340
341Version 2.5.1
matozoid53d288a2016-07-18 13:32:44 +0200342-------------
matozoid6ea2c522016-09-30 18:55:44 +0200343* 394 OSGi manifest added
344* 391 fix ModifierVisitor NullPointerException bug
345* 385 a few new parse methods
346* 386 fix dumping an empty import (a single ; after the package declaration)
matozoid53d288a2016-07-18 13:32:44 +0200347
348Version 2.5.0
349-------------
350API breaking changes:
351
352* 191: moved TreeVisitor to visitor package
353* 368, 162, 303, 302, 360: use correct type in some places.
354* 371: code is now compiled with Java 8
355* 342, 331: ModifierVisitorAdapter detects and removes broken nodes
356* 328, 270: upgrade JavaCC (use TokenMgrException now)
357Other changes:
358
359* 297: enable access to tokens.
360* 341, 361: node positions are now OO
361* 211, 373: escaping of \n \r for string literals
362* 336, 276, 141: JavaDoc support now works
363* 337, 281: reorganize the stream reading code
364* 343, 309, 332, 57: take advantage of common interfaces
365* 329, 326, 327: deal with platform issues
366* 163, 236, 252, 296, 269, 339, 321, 322, 252, 253, 293, 295: various fixes
367* 310, 311, 313, 301, 294: some code clean-ups
Danny van Bruggen5f5c6cc2016-07-20 13:40:30 +0200368
matozoid6ea2c522016-09-30 18:55:44 +0200369Version 2.4.0
Danny van Bruggen5f5c6cc2016-07-20 13:40:30 +0200370-------------
matozoid6ea2c522016-09-30 18:55:44 +0200371* several fixes in DumpVisitor for bugs due to lazy initialization
372* make TypeDeclaration implements DocumentableNode directly
373* TypedNode interface introduced
374* introduce MultiBoundType
375* refactored IntersectionType and UnionType
376* refactored CatchClause
377* parsing annotations in throws declarations
378* parse orphan semicolons in import statements
379* added PackageDeclaration.getPackageName
380* solved issue with newlines in string literals
381* fixed handling of UnknownType in EqualsVisitor
382* improvements to CommentsParser
383* removing old grammar
matozoid13818472016-08-23 22:03:06 +0200384
matozoid6ea2c522016-09-30 18:55:44 +0200385Version 2.3.0
386-------------
387* ClassOrInterfaceType implements NamedNode
388* DumpVisitor can now be extended
389* Improved documentation
390* AST: lists are now lazy initialized
matozoid8669cf42016-09-30 18:39:12 +0200391
Danny van Bruggen27b32072017-02-19 23:27:37 +0100392Version 2.1.0
matozoideae61572016-09-30 18:57:34 +0200393-------------
394* Features
395 * [#75 performance improvement for `PositionUtils.sortByBeginPosition`](https://github.com/javaparser/javaparser/issues/75)
396 * [#64 In getDeclarationAsString parameter names should be optional](https://github.com/javaparser/javaparser/issues/64)
397* Bugfixes
398 * [#79 Fix NPE in `ConstructorDeclaration.getDeclarationAsString`](https://github.com/javaparser/javaparser/pull/79)
399 * [#86 Add missing functions to ModifierVisitorAdapter](https://github.com/javaparser/javaparser/pull/86)
400 * [#82 set LambdaExpr as parent of its child nodes](https://github.com/javaparser/javaparser/issues/82)
401 * [#87 implement `setJavadoc` and `getJavadoc` at various classes](https://github.com/javaparser/javaparser/issues/87)
402 * [#96 Fixed encoding issue in `Javaparser.parse`](https://github.com/javaparser/javaparser/pull/96)
403 * [#85 Casting a lambda expression causes a parsing failure](https://github.com/javaparser/javaparser/issues/85)
404 * [#88 `MethodReferenceExpr` and `TypeExpr` don't set themselves as parents](https://github.com/javaparser/javaparser/issues/88)
405* Internal
406 * [#89 CommentsParser.State contains unused fields](https://github.com/javaparser/javaparser/issues/89)
407 * Switched from drone.io to [Travis](https://travis-ci.org/javaparser/javaparser)
408 * [#105 Enforce compiling the library for a certain Java version](https://github.com/javaparser/javaparser/pull/105)
409
410[Code changes](https://github.com/javaparser/javaparser/compare/javaparser-parent-2.0.0...master)
411
412Version 2.0.0
413-------------
414* support Java 8
Danny van Bruggen27b32072017-02-19 23:27:37 +0100415
416Version 1.0.8 (2010-01-17)
417-------------
418* Fixed issues:
419 * Issue 17: A refactor suggestion for AnnotationExpr and its subclasses
420 * Issue 21: Java 5 JavaParser compiled JARs
421 * Issue 22: Please use java.lang.reflect.Modifier constants in japa.parser.ast.body.ModifierSet
422 * Issue 27: Implement the "equal" method
423 * Issue 30: equals and hashCode methods
424
425Version 1.0.7 (2009-04-12)
426-------------
427* Issue 19 fixed:
428* Tests changed to run with junit 4
429
430Version 1.0.6 (2009-01-11)
431-------------
432* Issue 11 fixed: changed method get/setPakage to get/setPackage in the class CompilationUnit
433* Created new visitor adapter to help AST modification: ModifierVisitorAdapter
434* Changed visitor adapters to abstract
435
436Version 1.0.5 (2008-10-26)
437-------------
438* Created simplified constructors in the nodes of the AST (without positional arguments)
439* Created ASTHelper class with some helpful methods (more methods are still needed)
440
441Version 1.0.4 (2008-10-07)
442-------------
443* Moved to javacc 4.1.
444* The java_1_5.jj can be build alone without compilation errors
445
446Version 1.0.3 (2008-09-06)
447-------------
448* Removed SuperMemberAccessExpr class, it was no longer used
449* Removed the methods get/setTypeArgs() from ArrayCreationExpr, this node shouldn't have these methods.
450* Fixed the bug with start/end position of the nodes IntegerLiteralMinValueExpr and LongLiteralMinValueExpr
451* The methods get/setAnnotations() from all BodyDeclaration subclasses were pushed down to BodyDeclaration class
452
453Version 1.0.2 (2008-07-20)
454-------------
455* Issue fixed: Issue 1: Add support for editing AST nodes or create new ones
456
457Version 1.0.1 (2008-07-01)
458-------------
459* Issue fixed: Issue 5: end line and end column equal to begin line and begin column
460
461Version 1.0.0 (2008-06-25)
462-------------
463* Changed version numbering, starting version 1.0.0
464* Javadoc done for packages:
465 * japa.parser
466 * japa.parser.ast
467* Corrected bug when parsing in multithread:
468 * JavaParser.setCacheParser(false) must be called before to use the parser concurrent
469
4702008-06-19
471-------------
472* No code changes, added binary distribution to download page
473
4742008-06-11
475-------------
476* Bug corrected: NPE in VoidVisitorAdapter
477 * http://code.google.com/p/javaparser/issues/detail?id=2
478
4792008-06-09
480-------------
481* Added Adapters for de visitors
482
4832008-05-28
484-------------
485* This project now is published at Google Code:
486 * http://code.google.com/p/javaparser/
487
4882008-05-25
489-------------
490* Added support for comments and javadoc to the tree.
491 * Javadocs are stored directly to members (BodyDeclaration and all deriveds (classes, methods, fields, etc.)), accessible by the method getJavadoc().
492 * All comments are stored in the CompilationUnit, accessible by the method getComments().
493
4942008-04-01
495-------------
496* Changed all nodes public attributes to be private and created getters to access them
497* Changed the methods of the Node getLine e getColumn to getBeginLine and getBeginColumn
498* Added the methods getEndLine and getEndColumn to the Node class (works only in the BlockNode)
499
5002007-12-22
501-------------
502* Corrected ConditionalExpression bug
503
5042007-10-21
505-------------
506* Added LGPL License
507
5082007-10-21
509-------------
510* Bugs corrected:
511 * Created PackageDeclaration member of CompilationUnit to add suport for annotations in the package declaration
512 * Parameterized anonymous constructor invocation
513 * Explicit constructor invotation Type Arguments
514 * ctrl+z ("\u001A") ar end of compilation unit
515
5162007-10-09
517-------------
518* EnumConstantDeclaration annotation support corrected
519* Parssing Java Unicode escape characters suport added
520
5212007-10-03
522-------------
523* Bug corrected: "MotifComboPopup.this.super()" statement was generating parser error
524
5252007-10-01
526-------------
527* Bug corrected: Casting signed primitive values
528```
529 double d = (double) -1;
530 ^
531```
5322007-08-06
533-------------
534* Bug with the single line comments in the final of the unit corrected
535
5362007-07-31
537-------------
538* Fixed the bug with the following expression: `Class c = (int.class);`
539
5402007-06-26
541-------------
542* Bug fixes from Leon Poyyayil work
543 * suport for hex floating point
544 * unicode digits in indentifier
545 * MemberValueArrayInitializer
546
5472007-03-09
548-------------
549* Long and Integer literal MIN_VALUE bug
550
5512007-02-24
552-------------
553* '\0' bug fixed
554
5552007-02-01
556-------------
557* Many bug fixes
558* Added line/column to nodes