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
discard 00d93f0c27 GROOVY-9381: Add native async/await support
add 7d1054c28f refactor `InnerClassVisitor` -- separate out AIC
constructor generation
add 2aa187327c GROOVY-11883: Bump jackson to 2.21.2
add 7abbb00064 bump dependency metadata
add 893227958f bump commons-net to 3.13.0 (performance test)
add bf2d9e806a GROOVY-11882: Bump logback to 1.5.32 (test dependency)
add b9c4135daf bump dependency metadata
new 0b4d67db7b 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 (00d93f0c27)
\
N -- N -- N refs/heads/GROOVY-9381_3 (0b4d67db7b)
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:
build-logic/build.gradle | 2 +-
.../groovy/gradle/PerformanceTestsExtension.groovy | 2 +-
gradle/verification-metadata.xml | 126 ++++++
src/main/java/groovy/concurrent/AsyncChannel.java | 481 ++++++---------------
src/main/java/groovy/concurrent/Awaitable.java | 24 +-
.../apache/groovy/runtime/async/AsyncSupport.java | 13 +-
.../groovy/runtime/async/DefaultAsyncChannel.java} | 259 ++++++-----
.../groovy/classgen/InnerClassVisitor.java | 269 ++++++------
src/spec/doc/core-async-await.adoc | 36 +-
.../groovy/runtime/async}/AsyncApiTest.groovy | 2 +-
.../runtime/async}/AsyncAwaitSyntaxTest.groovy | 2 +-
.../runtime/async}/AsyncBestPracticesTest.groovy | 2 +-
.../runtime/async}/AsyncClosureLambdaTest.groovy | 2 +-
.../runtime/async}/AsyncContextChannelTest.groovy | 452 +++++++++++++++++--
.../runtime/async}/AsyncDeferFlowTest.groovy | 2 +-
.../async}/AsyncExceptionHandlingTest.groovy | 2 +-
.../async}/AsyncFrameworkIntegrationTest.groovy | 2 +-
.../groovy/runtime/async}/AsyncPatternsTest.groovy | 2 +-
.../async}/AsyncRuntimeEnhancementTest.groovy | 2 +-
.../runtime/async}/AsyncTransformTest.groovy | 2 +-
.../runtime/async}/AsyncVirtualThreadTest.groovy | 2 +-
versions.properties | 4 +-
22 files changed, 1008 insertions(+), 682 deletions(-)
copy src/main/java/{groovy/concurrent/AsyncChannel.java =>
org/apache/groovy/runtime/async/DefaultAsyncChannel.java} (58%)
rename src/test/groovy/org/{codehaus/groovy/transform =>
apache/groovy/runtime/async}/AsyncApiTest.groovy (99%)
rename src/test/groovy/org/{codehaus/groovy/transform =>
apache/groovy/runtime/async}/AsyncAwaitSyntaxTest.groovy (99%)
rename src/test/groovy/org/{codehaus/groovy/transform =>
apache/groovy/runtime/async}/AsyncBestPracticesTest.groovy (99%)
rename src/test/groovy/org/{codehaus/groovy/transform =>
apache/groovy/runtime/async}/AsyncClosureLambdaTest.groovy (99%)
rename src/test/groovy/org/{codehaus/groovy/transform =>
apache/groovy/runtime/async}/AsyncContextChannelTest.groovy (78%)
rename src/test/groovy/org/{codehaus/groovy/transform =>
apache/groovy/runtime/async}/AsyncDeferFlowTest.groovy (99%)
rename src/test/groovy/org/{codehaus/groovy/transform =>
apache/groovy/runtime/async}/AsyncExceptionHandlingTest.groovy (99%)
rename src/test/groovy/org/{codehaus/groovy/transform =>
apache/groovy/runtime/async}/AsyncFrameworkIntegrationTest.groovy (99%)
rename src/test/groovy/org/{codehaus/groovy/transform =>
apache/groovy/runtime/async}/AsyncPatternsTest.groovy (99%)
rename src/test/groovy/org/{codehaus/groovy/transform =>
apache/groovy/runtime/async}/AsyncRuntimeEnhancementTest.groovy (99%)
rename src/test/groovy/org/{codehaus/groovy/transform =>
apache/groovy/runtime/async}/AsyncTransformTest.groovy (99%)
rename src/test/groovy/org/{codehaus/groovy/transform =>
apache/groovy/runtime/async}/AsyncVirtualThreadTest.groovy (99%)