blob: c4a4946238a5f28e62951495d6893557ca435ea8 [file] [log] [blame] [view]
matozoidaa79a622016-11-06 14:13:37 +01001Version 3.0.0-alpha.8
2------------------
3* 344 529 turn DumpVisitor into an official PrettyPrinter
4* 532 508 427 530 531 513 528 cleanups
5
matozoidde10e892016-10-26 19:48:54 +02006Version 3.0.0-alpha.7
7------------------
matozoid57a10942016-10-30 21:14:28 +01008* 515 roll back attempt at using Optional
9* 522 504 make NodeList not a Node (restores parent/children behaviour to before alpha.4)
10* 527 526 rename getChildrenNodes to getChildNodes
11* 525 495 520 bug fix
matozoidde10e892016-10-26 19:48:54 +020012
13Version 3.0.0-alpha.6
14------------------
15* 503 modified ImportDeclaration hierarchy to have getters for static and "asterisk" again
16* 506 bug fix
17
matozoid9ac80482016-10-16 22:08:51 +020018Version 3.0.0-alpha.5
19------------------
20* 451 null is no longer allowed in the AST. [See last post in issue](https://github.com/javaparser/javaparser/issues/451)
21* 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)
22
matozoid93c5ac12016-10-09 22:03:29 +020023Version 3.0.0-alpha.4
24------------------
25* 463 471 nodes can now be removed easily
26* 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)
27* 452 355 474 494 various improvements
28* 493 492 485 Simplify the JavaParser interface
29
matozoid6ea2c522016-09-30 18:55:44 +020030Version 3.0.0-alpha.3
31------------------
matozoid93c5ac12016-10-09 22:03:29 +020032* 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 +020033* 472 456 makes the "data" field on every node more structured.
34* 477 468 refactor TypeArguments. You will find that TypeArguments is no longer a type, it is just a list in some nodes.
35* 482 adds the "nodeTypes" packages to the osgi export.
36* 479 476 makes all setters on nodes return this so they become chainable.
37* 473 437 clean up CloneVisitor.
matozoid53d288a2016-07-18 13:32:44 +020038
matozoid6ea2c522016-09-30 18:55:44 +020039Version 3.0.0-alpha.2
40------------------
41* 157 a new parser frontend, check https://github.com/javaparser/javaparser/pull/447 for explanations
42* 435 more builder methods like 400 and 405
43* 111 440 443 444 445 446 bugs & cleanups
matozoid53d288a2016-07-18 13:32:44 +020044
matozoid6ea2c522016-09-30 18:55:44 +020045Version 3.0.0-alpha.1
46------------------
47* 400 405 introduce many "builder" style methods for constructing code. Thanks DeepSnowNeeL!
48* 409 remove ASTHelper (methods are now on specific Node subclasses)
49* 414 JavaParser can now be instantiated and reused. InstanceJavaParser removed
50* 418 417 411 408 bugs
51* 367 420 407 402 various cleanups
52
53Version 2.5.1
matozoid53d288a2016-07-18 13:32:44 +020054-------------
matozoid6ea2c522016-09-30 18:55:44 +020055* 394 OSGi manifest added
56* 391 fix ModifierVisitor NullPointerException bug
57* 385 a few new parse methods
58* 386 fix dumping an empty import (a single ; after the package declaration)
matozoid53d288a2016-07-18 13:32:44 +020059
60Version 2.5.0
61-------------
62API breaking changes:
63
64* 191: moved TreeVisitor to visitor package
65* 368, 162, 303, 302, 360: use correct type in some places.
66* 371: code is now compiled with Java 8
67* 342, 331: ModifierVisitorAdapter detects and removes broken nodes
68* 328, 270: upgrade JavaCC (use TokenMgrException now)
69Other changes:
70
71* 297: enable access to tokens.
72* 341, 361: node positions are now OO
73* 211, 373: escaping of \n \r for string literals
74* 336, 276, 141: JavaDoc support now works
75* 337, 281: reorganize the stream reading code
76* 343, 309, 332, 57: take advantage of common interfaces
77* 329, 326, 327: deal with platform issues
78* 163, 236, 252, 296, 269, 339, 321, 322, 252, 253, 293, 295: various fixes
79* 310, 311, 313, 301, 294: some code clean-ups
Danny van Bruggen5f5c6cc2016-07-20 13:40:30 +020080
matozoid6ea2c522016-09-30 18:55:44 +020081Version 2.4.0
Danny van Bruggen5f5c6cc2016-07-20 13:40:30 +020082-------------
matozoid6ea2c522016-09-30 18:55:44 +020083* several fixes in DumpVisitor for bugs due to lazy initialization
84* make TypeDeclaration implements DocumentableNode directly
85* TypedNode interface introduced
86* introduce MultiBoundType
87* refactored IntersectionType and UnionType
88* refactored CatchClause
89* parsing annotations in throws declarations
90* parse orphan semicolons in import statements
91* added PackageDeclaration.getPackageName
92* solved issue with newlines in string literals
93* fixed handling of UnknownType in EqualsVisitor
94* improvements to CommentsParser
95* removing old grammar
matozoid13818472016-08-23 22:03:06 +020096
matozoid6ea2c522016-09-30 18:55:44 +020097Version 2.3.0
98-------------
99* ClassOrInterfaceType implements NamedNode
100* DumpVisitor can now be extended
101* Improved documentation
102* AST: lists are now lazy initialized
matozoid8669cf42016-09-30 18:39:12 +0200103
matozoideae61572016-09-30 18:57:34 +0200104Version 2.1.0-SNAPSHOT
105-------------
106* Features
107 * [#75 performance improvement for `PositionUtils.sortByBeginPosition`](https://github.com/javaparser/javaparser/issues/75)
108 * [#64 In getDeclarationAsString parameter names should be optional](https://github.com/javaparser/javaparser/issues/64)
109* Bugfixes
110 * [#79 Fix NPE in `ConstructorDeclaration.getDeclarationAsString`](https://github.com/javaparser/javaparser/pull/79)
111 * [#86 Add missing functions to ModifierVisitorAdapter](https://github.com/javaparser/javaparser/pull/86)
112 * [#82 set LambdaExpr as parent of its child nodes](https://github.com/javaparser/javaparser/issues/82)
113 * [#87 implement `setJavadoc` and `getJavadoc` at various classes](https://github.com/javaparser/javaparser/issues/87)
114 * [#96 Fixed encoding issue in `Javaparser.parse`](https://github.com/javaparser/javaparser/pull/96)
115 * [#85 Casting a lambda expression causes a parsing failure](https://github.com/javaparser/javaparser/issues/85)
116 * [#88 `MethodReferenceExpr` and `TypeExpr` don't set themselves as parents](https://github.com/javaparser/javaparser/issues/88)
117* Internal
118 * [#89 CommentsParser.State contains unused fields](https://github.com/javaparser/javaparser/issues/89)
119 * Switched from drone.io to [Travis](https://travis-ci.org/javaparser/javaparser)
120 * [#105 Enforce compiling the library for a certain Java version](https://github.com/javaparser/javaparser/pull/105)
121
122[Code changes](https://github.com/javaparser/javaparser/compare/javaparser-parent-2.0.0...master)
123
124Version 2.0.0
125-------------
126* support Java 8