This is an automated email from the ASF dual-hosted git repository.
sunlan pushed a change to branch GROOVY-9381_3
in repository https://gitbox.apache.org/repos/asf/groovy.git
omit 14ae7e79d6 Fix javadoc warning for `AsyncTransformHelper`
omit 7c27fe07e6 GROOVY-9381: Add native async/await support
add e5dc35d750 improve @Parallel to use virtual threads if available
add 2820ce1936 minor refactor: remove a deprecation warning
add bcfcde9538 minor refactor: quieten gradle internal stacktrace
add 3ae57630c5 GROOVY-11886: support JDK platform logging instead of
System.err for errors and warnings (#2409)
add bed59cb7f7 Disable flaky test case `HttpBuilderSpecTest.testHtmlJsoup`
for now
new ab5f773e4e GROOVY-9381: Add native async/await support
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (14ae7e79d6)
\
N -- N -- N refs/heads/GROOVY-9381_3 (ab5f773e4e)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
gradle.properties | 4 +-
src/main/java/groovy/grape/Grape.java | 29 ++++----
src/main/java/groovy/ui/GroovyMain.java | 8 ++-
.../java/org/apache/groovy/antlr/LexerFrame.java | 4 +-
.../groovy/util/concurrent/ThreadHelper.java | 78 ++++++++++++++++++++++
.../codehaus/groovy/classgen/asm/OperandStack.java | 6 +-
.../classgen/asm/util/LoggableTextifier.java | 14 ++--
.../org/codehaus/groovy/control/XStreamUtils.java | 12 ++--
.../reflection/stdclasses/ArrayCachedClass.java | 21 +++++-
.../org/codehaus/groovy/tools/DgmConverter.java | 6 +-
.../codehaus/groovy/tools/FileSystemCompiler.java | 16 +++--
.../org/codehaus/groovy/tools/GroovyStarter.java | 8 ++-
.../groovy/tools/javac/JavacJavaCompiler.java | 6 +-
.../transform/ParallelASTTransformation.java | 7 +-
src/test/groovy/bugs/Groovy10281.groovy | 37 +++++++---
.../main/java/org/codehaus/groovy/ant/Groovyc.java | 6 +-
.../java/org/codehaus/groovy/ant/Groovydoc.java | 7 +-
.../org/codehaus/groovy/ant/GroovycTest.java | 28 ++++++--
.../groovy/console/ui/ConsoleTextEditor.java | 5 +-
.../groovy/tools/groovydoc/FileOutputTool.java | 8 ++-
.../tools/groovydoc/GroovyDocTemplateEngine.java | 21 +++---
.../tools/groovydoc/GroovyRootDocBuilder.java | 4 +-
.../tools/groovydoc/antlr4/GroovyDocParser.java | 17 +++--
.../groovy/tools/groovydoc/GroovyDocToolTest.java | 35 +---------
.../src/spec/test/HttpBuilderSpecTest.groovy | 2 +
.../apache/groovy/json/internal/Exceptions.java | 10 +--
.../java/org/apache/groovy/json/internal/Sys.java | 7 +-
.../main/java/groovy/servlet/GroovyServlet.java | 14 ++--
.../main/java/groovy/swing/table/TableSorter.java | 5 +-
.../java/groovy/junit5/plugin/JUnit5Runner.java | 6 +-
.../src/main/java/groovy/test/GroovyTestSuite.java | 6 +-
31 files changed, 311 insertions(+), 126 deletions(-)
create mode 100644
src/main/java/org/apache/groovy/util/concurrent/ThreadHelper.java