Skip to content
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
7201d70
Render nested generic type arguments in the AST-to-source transpiler
leonard84 Jul 9, 2026
52bb1ae
Add release notes entry for nested generic transpiler fix
leonard84 Jul 9, 2026
ddbbfbd
Render the elvis operator in its short form in the AST-to-source tran…
leonard84 Jul 9, 2026
dd021f1
Render attribute access with the at sign in the AST-to-source transpiler
leonard84 Jul 9, 2026
858817a
Render implicit-it closures without an arrow in the AST-to-source tra…
leonard84 Jul 9, 2026
05bb3e3
Render safe index access faithfully in the AST-to-source transpiler
leonard84 Jul 9, 2026
eb6fcfd
Keep numeric literal type suffixes in the AST-to-source transpiler
leonard84 Jul 9, 2026
625aa71
Render left-open ranges in the AST-to-source transpiler
leonard84 Jul 9, 2026
96d88d4
Render explicit type arguments of method calls in the AST-to-source t…
leonard84 Jul 9, 2026
6a03dcc
Add release notes entry for the additional transpiler rendering fixes
leonard84 Jul 9, 2026
e957171
Skip the default label for switches without one in the AST-to-source …
leonard84 Jul 9, 2026
d2d1ddc
Skip the finally block for try statements without one in the AST-to-s…
leonard84 Jul 9, 2026
9415b3b
Render the index variable of for-in loops in the AST-to-source transp…
leonard84 Jul 9, 2026
7f93a6c
Close the classloader created by the AST-to-source transpiler
leonard84 Jul 9, 2026
0892f8c
Mention the adopted upstream transpiler fixes in the release notes
leonard84 Jul 9, 2026
d4bd9e8
Adopt upstream's cosmetic rendering improvements in the AST-to-source…
leonard84 Jul 9, 2026
846e09c
Accept any classloader in the AST-to-source transpiler
leonard84 Jul 9, 2026
a56e2bd
Extract shared helpers in the AST-to-source transpiler
leonard84 Jul 9, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/release_notes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ include::include.adoc[]
* Fix argument mismatch descriptions for varargs methods by expanding varargs instead of reporting `<too few arguments>` spockPull:2315[]
* Fix Pattern flags being dropped when `java.util.regex.Pattern` instances are used in Spock regex conditions spockIssue:2298[]
* Fix `MockitoMockMaker` throws NPE on null object spockIssue:2337[]
* Fix `SourceToAstNodeAndSourceTranspiler` dropping nested generic type arguments, so signatures like `Iterator<Tuple2<Integer, Integer>>` are now rendered faithfully instead of `Iterator<Tuple2>` spockPull:2393[]
* Fix `SourceToAstNodeAndSourceTranspiler` rendering of several other constructs: the elvis operator, attribute access (`.@`), implicit-`it` closures, safe index access (`?[]`), numeric literal type suffixes (`L`, `F`, `D`, `G`), left-open ranges (`<..`), explicit type arguments of method calls, `for (index, value in iterable)` loops, multiple-assignment declarations on Groovy 5, and spurious empty `finally` blocks and `default` labels spockPull:2393[]

=== Breaking Changes

Expand Down
Loading
Loading